Jiarui She

Results 2 issues of Jiarui She

### Subject of the issue I've tried to print the OP_CODE for debugging, and I found that when print the same variable with different prefix string, the OP_CODE sequences are...

我使用emcc将基于NCNN框架的Resnet18代码编译成wasm文件,该代码从一个文件(`dog.jpg`)中读取输入并进行分类。在执行该文件时,我希望用**WAMR([WASM Micro Runtime](https://github.com/bytecodealliance/wasm-micro-runtime/tree/main))**,但显示找不到该文件。我尝试了以下方法传递文件路径: 1. 使用`--preload-file`: ```shell ### 编译命令,指定--preload-file参数 emcc -g -s STANDALONE_WASM=1 \ -o build/resnet.wasm resnet_nocv.cpp \ -s FORCE_FILESYSTEM=1 \ -s INITIAL_MEMORY=256MB \ -Incnn/include/ncnn \ -I. \ -L ncnn/lib -lncnn...