libNVVM cannot be found
up vote
2
down vote
favorite
I am trying to @vectorize some python through CUDA. I'm running Python3 in atom with Cuda9.1, Anaconda3, and have a similar problem to this:
Cuda: library nvvm not found
but that solution is for linux and I'm on windows.
I gather from that solution above I need to add an Environment Variable. I tried to do just that by searching from the nvvm file which i found in:
C:UsersMEAppDataLocalProgramsPythonPython36Libsite-packagesnumbacudatestscudadrv__pycache__
but adding that didn't help.
I tried 'conda install cudatoolkit' as well as updating it.
Is my problem that the OS doesn't know where this library is? How to I point python to the library that it needs?
python python-3.x cuda anaconda
add a comment |
up vote
2
down vote
favorite
I am trying to @vectorize some python through CUDA. I'm running Python3 in atom with Cuda9.1, Anaconda3, and have a similar problem to this:
Cuda: library nvvm not found
but that solution is for linux and I'm on windows.
I gather from that solution above I need to add an Environment Variable. I tried to do just that by searching from the nvvm file which i found in:
C:UsersMEAppDataLocalProgramsPythonPython36Libsite-packagesnumbacudatestscudadrv__pycache__
but adding that didn't help.
I tried 'conda install cudatoolkit' as well as updating it.
Is my problem that the OS doesn't know where this library is? How to I point python to the library that it needs?
python python-3.x cuda anaconda
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I am trying to @vectorize some python through CUDA. I'm running Python3 in atom with Cuda9.1, Anaconda3, and have a similar problem to this:
Cuda: library nvvm not found
but that solution is for linux and I'm on windows.
I gather from that solution above I need to add an Environment Variable. I tried to do just that by searching from the nvvm file which i found in:
C:UsersMEAppDataLocalProgramsPythonPython36Libsite-packagesnumbacudatestscudadrv__pycache__
but adding that didn't help.
I tried 'conda install cudatoolkit' as well as updating it.
Is my problem that the OS doesn't know where this library is? How to I point python to the library that it needs?
python python-3.x cuda anaconda
I am trying to @vectorize some python through CUDA. I'm running Python3 in atom with Cuda9.1, Anaconda3, and have a similar problem to this:
Cuda: library nvvm not found
but that solution is for linux and I'm on windows.
I gather from that solution above I need to add an Environment Variable. I tried to do just that by searching from the nvvm file which i found in:
C:UsersMEAppDataLocalProgramsPythonPython36Libsite-packagesnumbacudatestscudadrv__pycache__
but adding that didn't help.
I tried 'conda install cudatoolkit' as well as updating it.
Is my problem that the OS doesn't know where this library is? How to I point python to the library that it needs?
python python-3.x cuda anaconda
python python-3.x cuda anaconda
asked Feb 28 at 3:19
DaveP
255
255
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
up vote
4
down vote
accepted
These are the environmental variables I set to get some pyCUDA example code running on Windows:
NUMBAPRO_NVVM = C:Program FilesNVIDIA GPU Computing ToolkitCUDAv9.1nvvmbinnvvm64_32_0.dll
NUMBAPRO_LIBDEVICE = C:Program FilesNVIDIA GPU Computing ToolkitCUDAv9.1nvvmlibdevice
did that, then I get Install package by: conda install cudatoolkit=7.5
– DaveP
Mar 2 at 22:40
Weirdly, I have to downgrade from cudatoolkit=8.0, but after a restart, I get an answer. thanks.
– DaveP
Mar 2 at 22:52
add a comment |
up vote
2
down vote
You must remove the bar from the end.
NUMBAPRO_LIBDEVICE = C:Program FilesNVIDIA GPU Computing ToolkitCUDAv9.1nvvmlibdevice
add a comment |
up vote
0
down vote
Python 3.7.0(x64 on AMD) on Windows 10(x64). Cuda 10
pip install --upgrade pip
pip install numba
pip install numpy
pip install six
Also need to set system variable path as:
NUMBAPRO_NVVM=c:Program FilesNVIDIA GPU Computing ToolkitCUDAv10.0nvvmbinnvvm64_33_0.dll
NUMBAPRO_LIBDEVICE=c:Program FilesNVIDIA GPU Computing ToolkitCUDAv10.0nvvmlibdevice
Restart computer! (seems that is important for some reasons).
This Works for me.
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
These are the environmental variables I set to get some pyCUDA example code running on Windows:
NUMBAPRO_NVVM = C:Program FilesNVIDIA GPU Computing ToolkitCUDAv9.1nvvmbinnvvm64_32_0.dll
NUMBAPRO_LIBDEVICE = C:Program FilesNVIDIA GPU Computing ToolkitCUDAv9.1nvvmlibdevice
did that, then I get Install package by: conda install cudatoolkit=7.5
– DaveP
Mar 2 at 22:40
Weirdly, I have to downgrade from cudatoolkit=8.0, but after a restart, I get an answer. thanks.
– DaveP
Mar 2 at 22:52
add a comment |
up vote
4
down vote
accepted
These are the environmental variables I set to get some pyCUDA example code running on Windows:
NUMBAPRO_NVVM = C:Program FilesNVIDIA GPU Computing ToolkitCUDAv9.1nvvmbinnvvm64_32_0.dll
NUMBAPRO_LIBDEVICE = C:Program FilesNVIDIA GPU Computing ToolkitCUDAv9.1nvvmlibdevice
did that, then I get Install package by: conda install cudatoolkit=7.5
– DaveP
Mar 2 at 22:40
Weirdly, I have to downgrade from cudatoolkit=8.0, but after a restart, I get an answer. thanks.
– DaveP
Mar 2 at 22:52
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
These are the environmental variables I set to get some pyCUDA example code running on Windows:
NUMBAPRO_NVVM = C:Program FilesNVIDIA GPU Computing ToolkitCUDAv9.1nvvmbinnvvm64_32_0.dll
NUMBAPRO_LIBDEVICE = C:Program FilesNVIDIA GPU Computing ToolkitCUDAv9.1nvvmlibdevice
These are the environmental variables I set to get some pyCUDA example code running on Windows:
NUMBAPRO_NVVM = C:Program FilesNVIDIA GPU Computing ToolkitCUDAv9.1nvvmbinnvvm64_32_0.dll
NUMBAPRO_LIBDEVICE = C:Program FilesNVIDIA GPU Computing ToolkitCUDAv9.1nvvmlibdevice
answered Mar 2 at 11:01
DavidH
561
561
did that, then I get Install package by: conda install cudatoolkit=7.5
– DaveP
Mar 2 at 22:40
Weirdly, I have to downgrade from cudatoolkit=8.0, but after a restart, I get an answer. thanks.
– DaveP
Mar 2 at 22:52
add a comment |
did that, then I get Install package by: conda install cudatoolkit=7.5
– DaveP
Mar 2 at 22:40
Weirdly, I have to downgrade from cudatoolkit=8.0, but after a restart, I get an answer. thanks.
– DaveP
Mar 2 at 22:52
did that, then I get Install package by: conda install cudatoolkit=7.5
– DaveP
Mar 2 at 22:40
did that, then I get Install package by: conda install cudatoolkit=7.5
– DaveP
Mar 2 at 22:40
Weirdly, I have to downgrade from cudatoolkit=8.0, but after a restart, I get an answer. thanks.
– DaveP
Mar 2 at 22:52
Weirdly, I have to downgrade from cudatoolkit=8.0, but after a restart, I get an answer. thanks.
– DaveP
Mar 2 at 22:52
add a comment |
up vote
2
down vote
You must remove the bar from the end.
NUMBAPRO_LIBDEVICE = C:Program FilesNVIDIA GPU Computing ToolkitCUDAv9.1nvvmlibdevice
add a comment |
up vote
2
down vote
You must remove the bar from the end.
NUMBAPRO_LIBDEVICE = C:Program FilesNVIDIA GPU Computing ToolkitCUDAv9.1nvvmlibdevice
add a comment |
up vote
2
down vote
up vote
2
down vote
You must remove the bar from the end.
NUMBAPRO_LIBDEVICE = C:Program FilesNVIDIA GPU Computing ToolkitCUDAv9.1nvvmlibdevice
You must remove the bar from the end.
NUMBAPRO_LIBDEVICE = C:Program FilesNVIDIA GPU Computing ToolkitCUDAv9.1nvvmlibdevice
edited Mar 11 at 5:48
data_garden
1,34052453
1,34052453
answered Mar 11 at 0:41
user9473682
211
211
add a comment |
add a comment |
up vote
0
down vote
Python 3.7.0(x64 on AMD) on Windows 10(x64). Cuda 10
pip install --upgrade pip
pip install numba
pip install numpy
pip install six
Also need to set system variable path as:
NUMBAPRO_NVVM=c:Program FilesNVIDIA GPU Computing ToolkitCUDAv10.0nvvmbinnvvm64_33_0.dll
NUMBAPRO_LIBDEVICE=c:Program FilesNVIDIA GPU Computing ToolkitCUDAv10.0nvvmlibdevice
Restart computer! (seems that is important for some reasons).
This Works for me.
add a comment |
up vote
0
down vote
Python 3.7.0(x64 on AMD) on Windows 10(x64). Cuda 10
pip install --upgrade pip
pip install numba
pip install numpy
pip install six
Also need to set system variable path as:
NUMBAPRO_NVVM=c:Program FilesNVIDIA GPU Computing ToolkitCUDAv10.0nvvmbinnvvm64_33_0.dll
NUMBAPRO_LIBDEVICE=c:Program FilesNVIDIA GPU Computing ToolkitCUDAv10.0nvvmlibdevice
Restart computer! (seems that is important for some reasons).
This Works for me.
add a comment |
up vote
0
down vote
up vote
0
down vote
Python 3.7.0(x64 on AMD) on Windows 10(x64). Cuda 10
pip install --upgrade pip
pip install numba
pip install numpy
pip install six
Also need to set system variable path as:
NUMBAPRO_NVVM=c:Program FilesNVIDIA GPU Computing ToolkitCUDAv10.0nvvmbinnvvm64_33_0.dll
NUMBAPRO_LIBDEVICE=c:Program FilesNVIDIA GPU Computing ToolkitCUDAv10.0nvvmlibdevice
Restart computer! (seems that is important for some reasons).
This Works for me.
Python 3.7.0(x64 on AMD) on Windows 10(x64). Cuda 10
pip install --upgrade pip
pip install numba
pip install numpy
pip install six
Also need to set system variable path as:
NUMBAPRO_NVVM=c:Program FilesNVIDIA GPU Computing ToolkitCUDAv10.0nvvmbinnvvm64_33_0.dll
NUMBAPRO_LIBDEVICE=c:Program FilesNVIDIA GPU Computing ToolkitCUDAv10.0nvvmlibdevice
Restart computer! (seems that is important for some reasons).
This Works for me.
answered Sep 22 at 19:03
Nik
1
1
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f49021437%2flibnvvm-cannot-be-found%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown