Skip to content
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

ERROR: No matching distribution found for BAcore #11

Open
stiiff opened this issue Aug 31, 2023 · 1 comment
Open

ERROR: No matching distribution found for BAcore #11

stiiff opened this issue Aug 31, 2023 · 1 comment

Comments

@stiiff
Copy link

stiiff commented Aug 31, 2023

There is no BACore module in pytorch?

@nesi73
Copy link

nesi73 commented Sep 5, 2024

The initial issue was that I was compiling with the wrong version of GCC, version 13, while the correct one was version 10. To ensure this, I verified that gcc --version and g++ --version both returned version 10. Once I fixed this, the BACore error was resolved, but I encountered another issue related to cublasLtHSHMatmulAlgoInit. To address this, I uninstalled cublas from pip using the following command:
pip uninstall nvidia_cublas_cu11
After this, I successfully installed the DeepLM repository without any further issues [[100%] Built target BACore].

Anyway, I made several changes that may have influenced the outcome, as I initially encountered CUDA errors. For this reason, I will provide the complete pipeline I followed to successfully install DeepLM:

  1. Modify the example.sh script, changing the line cmake .. to:
    cmake .. -DCMAKE_BUILD_TYPE=Release -DWITH_CUDA=ON -DCMAKE_CUDA_COMPILER=$(which nvcc)
  2. Add to .bashrc
    export PATH="/usr/local/cuda-11.1/bin:$PATH" export LD_LIBRARY_PATH="/usr/local/cuda-11.1/lib64:$LD_LIBRARY_PATH" export TCNN_CUDA_ARCHITECTURE=86 export CUDA_HOME="/usr/local/cuda-11.1"
  3. Check the GCC version (As I previously mentioned)
  4. Run sh example.sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants