-
-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libcublas
on aarch64 requires glibc 2.27
#13
Comments
|
Am curious why we didn't see an issue in the ARM build here? Would think this would have detected a new version of GLIBC is needed and not provided for (as seen elsewhere) |
@jakirkham I think only the libraries in |
I think what happens is that conda-build correctly found the dependency on libm.so
but it didn't check if the found DSO also satisfies the glibc requirement (i.e. containing all the versioned symbols needed by libcublasLt.so). |
Cross-linking to CUDA Toolkit CentOS 7 deprecation issue ( conda-forge/cuda-feedstock#28 ), which this depends on |
Note the two lines
and
Essentially, we are once again hitting the same issue as in cuSPARSELt v0.4.0 (conda-forge/cusparselt-feedstock#23 (comment)) and cuDNN v8.8.0 (conda-forge/cudnn-feedstock#58), but this went totally unnoticed until now when I work on conda-forge/cupy-feedstock#199, because we haven't added the dlopen test to all new CUDA packages.
cc: @jakirkham
The text was updated successfully, but these errors were encountered: