The way you use is for static link for the generated code why the error is for
dynamic link. As @masahi pointed out, you should link your .so to TVM, which
means you may need to add this library to the TVM building process.
---
[Visit
Topic](https://discuss.tvm.apache.org/t/byoc-how-to-li
try add the following line to `CMakeLists.txt`:
```
target_link_libraries(tvm PRIVATE ${PATH_TO_YOUR_SHARED_LIBRARY})
target_link_libraries(tvm_runtime PRIVATE ${PATH_TO_YOUR_SHARED_LIBRARY})
```
and rebuild TVM.
---
[Visit
Topic](https://discuss.tvm.apache.org/t/byoc-how-to-link-extern-s
@ccjoechou Summarizing our discussion a bit:
- Marvell is interested in being able to arbitrarily partition a Relay graph
into hardware-accelerated and non-hardware-acclerated parts
- The boundaries between these parts are to be determined by Marvell
backend; therefore, some additional contr