You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm unable to build this crate without changes for old GPU (Tesla M40, capability level 5.2, driver 462). Most of the problems are related to FP16 and the fact that FP16 functions are disabled only in Rust code, but no changes are made to CUDA code. Also there was a minor issue with Nvidia-SMI's --query-gpu=compute_cap, so I have to comment out that code and specify capability level manually.
I've made few dirty patches to make it work, in particular that's comment out Nvidia-SMI query, #define __half float, then comment out FP16 functions with compilation failures.
The text was updated successfully, but these errors were encountered:
Hi, I'm unable to build this crate without changes for old GPU (Tesla M40, capability level 5.2, driver 462). Most of the problems are related to FP16 and the fact that FP16 functions are disabled only in Rust code, but no changes are made to CUDA code. Also there was a minor issue with Nvidia-SMI's
--query-gpu=compute_cap
, so I have to comment out that code and specify capability level manually.I've made few dirty patches to make it work, in particular that's comment out Nvidia-SMI query,
#define __half float
, then comment out FP16 functions with compilation failures.The text was updated successfully, but these errors were encountered: