We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am following the build instructions as it is, but I only get libnccl-net.la file in my src/ folder and not libnccl-net.so.
libnccl-net.la
src/
libnccl-net.so
I tried --enable-shared also but doesn't seem to work. I have sharp and cuda installed and giving both the paths with --with-cuda and --with-sharp,
--enable-shared
--with-sharp
any suggestions?
The text was updated successfully, but these errors were encountered:
It seems that you should use --libdir=(DIR) in the ./configure phase. For example:
--libdir=(DIR)
./configure
./autogen.sh ./configure --libdir=$(pwd)/build --with-sharp=no --with-cuda=/usr/local/cuda make make install
Then you can find libnccl-net.so in ./build directory.
./build
Sorry, something went wrong.
No branches or pull requests
I am following the build instructions as it is, but I only get
libnccl-net.la
file in mysrc/
folder and notlibnccl-net.so
.I tried
--enable-shared
also but doesn't seem to work. I have sharp and cuda installed and giving both the paths with --with-cuda and--with-sharp
,any suggestions?
The text was updated successfully, but these errors were encountered: