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
fix(build): update CUDA linking strategy for Windows.
This build script is modified to properly handle platform-specific CUDA linking:
On Windows:
NVIDIA’s CUDA SDK does not ship culibos.lib, and static libraries like cublas_static.lib are typically unavailable.
Attempting to statically link cudart_static on Windows will fail due to missing symbols provided by culibos.
Therefore, on Windows, dynamic linking is preferred. The .lib files (like cudart.lib) act as import libraries for corresponding .dll files (e.g., cudart64_*.dll).
0 commit comments