-
when I use mxnet engine,it is loaded by class which name is LibUtils.But the fuction which name is "supported" prevented me from using the GPU and show error: "no matching cuda flavor for linux found:cu112mkl/sm_86".source code like this:
Why does this function tell me that djl does not support GPUs with 86 hashrate?What should I do?
pom:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You can try to use PyTorch, it should work on Ampere GPU. I just created a PR to allow MXNet run on sm_86 GPU: #2313. To reduce the MXNet binary files size, it only compiles with selected CUDA architecture. If you load the MXNet with unsupported sm arch (eg. sm_52), the performance is really bad. We added that check to prevent this happen. |
Beta Was this translation helpful? Give feedback.
You can try to use PyTorch, it should work on Ampere GPU.
I just created a PR to allow MXNet run on sm_86 GPU: #2313.
To reduce the MXNet binary files size, it only compiles with selected CUDA architecture. If you load the MXNet with unsupported sm arch (eg. sm_52), the performance is really bad. We added that check to prevent this happen.