-
Notifications
You must be signed in to change notification settings - Fork 87
Description
Hi there,
I just new to here. So I typed by following the tutorial:
benchmarking/run_bench.py -b specifications/models/caffe2/shufflenet/shufflenet.json --platforms android
After a long time compiling, all of compile and link tasks are finished in the build_android folder in my pytorch repo. But it throws an error:
cmake unknown rule to install xxxx
It looks the caffe2_benchmark executable has been generated by failed to copied to the install folder, so I manually copied to the folder, namely:
/home/new/.aibench/git/exec/caffe2/android/2019/4/5/fefa6d305ea3e820afe64cec015d2f6746d9ca88
Then I modified repo_driver.py to avoid compiling again and run function _runBenchmarkSuites
But failed :
In file included from ../third_party/zstd/lib/common/pool.h:20:0,
from ../third_party/zstd/lib/common/pool.c:14:
../third_party/zstd/lib/common/zstd_internal.h:382:37: error: unknown type name ‘ZSTD_dictMode_e’; did you mean ‘FSE_decode_t’?
ZSTD_dictMode_e dictMode,
^~~~~~~~~~~~~~~
FSE_decode_t
Questions:
- Any suggestions on how to run the tutorial correctly?
- How to avoid the long time compiling for each time running
benchmarking/run_bench.py -b specifications/models/caffe2/shufflenet/shufflenet.json --platforms android
thanks!