当前位置: 代码迷 >> 综合 >> 【TVM学习七】Reproduce Benchmark
  详细解决方案

【TVM学习七】Reproduce Benchmark

热度:81   发布时间:2023-11-21 01:11:27.0

参考链接:Benchmark results

                  How to Reproduce


一. 基于RK3399/ARM-CPU的测试

1. 在本地PC上开启RPC Tracker

    python3 -m tvm.exec.rpc_tracker

    运行完显示如下:

    INFO:root:If you are running ROCM/Metal, fork will cause compiler internal error. Try to launch with arg ```--no-fork```
    INFO:RPCTracker:bind to 0.0.0.0:9190

2. 在RK3399上Register devices to the tracker

    python3 -m tvm.exec.rpc_server --tracker=172.20.15.184:9190 --key&

  相关解决方案