zhipeng
zhipeng
登陆闪退 助手 2.9.3 微信 3.2.2 OS: 10.14.6
I try update `tvm/_ffi/registry.py` source code like this ``` 62 def register(cls): 63 """internal register function""" 64 if hasattr(cls, "_type_index"): 65 tindex = cls._type_index 66 else: 67 tidx = ctypes.c_uint()...
The issue fixed, do not copy `build/tvm/libtvm.so` to `/usr/local/lib/libtvm.so`. ``` sudo rm /usr/local/lib/libtvm.so # pip install mlc_ai_nightly_vulkan -f https://mlc.ai/wheels pip install mlc_ai_nightly_cu121 -f https://mlc.ai/wheels ``` `ln -s /home/zhipeng/.local/lib/python3.10/site-packages/tvm/libtvm.so /usr/local/lib/libtvm.so` if...
run `sudo cp /home/zhipeng/.local/lib/python3.10/site-packages/tvm/*.so /usr/local/lib/` before `python build.py --hf-path=databricks/dolly-v2-3b --target=cuda` run ` sudo cp build/tvm/*.so /usr/local/lib/` before run cli
https://blog.csdn.net/u012731379/article/details/131153319
> Interesting. Some symbols being missing might mean there's some misconfiguration of the compilation process. Would you mind sharing how you compiled the shared library? Sure, like this ``` git...
@yzh119 I fixed this error on local env, Need copy `libtvm.so` to `/usr/local/lib/libtvm.so`. I uninstalled `mlc_ai_nightly` and `mlc-ai-nightly-cu118` both and reinstall `mlc-ai-nightly-cu118` ,then rebuild its works.
But, Then, uninstalled `mlc_ai_nightly` and `mlc-ai-nightly-cu118` both and reinstall `mlc-ai-nightly-cu118`. Raise a new error like like this ``` python3 -m mlc_chat.rest Traceback (most recent call last): File "/usr/lib/python3.10/runpy.py", line 187,...
@tqchen Thanks you very much.