Questions tagged [cudnn]

The NVIDIA CUDA Deep Neural Network library (cuDNN) is a GPU-accelerated library of primitives for deep neural networks.

The NVIDIA CUDA Deep Neural Network library (cuDNN) is a GPU-accelerated library of primitives for deep neural networks. cuDNN provides highly tuned GPU implementations of standard routines such as forward and backward convolution, pooling, normalization, and activation layers, exposed by a C++ API.

Please use this tag only if you are writing or building code which uses the cuDNN APIs. If you are having problems with installing or running frameworks or libraries which use cuDNN internally, please tag those questions with the library or framework in question, and refrain from tagging them with this tag.

385 questions
0
votes
1 answer

Static libraries in the way when updating CuDNN minor version

It seems the CuDNN installer looks for the wrong version of CUDA. What am I doing wrong? The story in full: Ubuntu 16.04 Two versions of CUDA installed, 9.0 and 9.1. /usr/lib/cuda links to the 9.1 installation, and LD_LIBRARY_PATH seems to point to…
Emil Fredrik
  • 117
  • 1
  • 8
0
votes
2 answers

Tensorflow-gpu not installed properly in windows machine

I am trying to install tensorflow-gpu in my new windows system. But am encountering this error >>> import tensorflow as tf Traceback (most recent call last): File…
Sashaank
  • 880
  • 2
  • 20
  • 54
0
votes
0 answers

Which versions of TensorFlow work with which versions of CUDA

Is there any documentation about what versions of TensorFlow work with which versions of CUDA Toolkit? From their GPU Support page, I see that the latest stable version of TensorFlow (1.10 at the time of writing) requires CUDA 9.0. I need to…
Jan Eglinger
  • 3,995
  • 1
  • 25
  • 51
0
votes
1 answer

bazel build tensorflow on windows 10 getting cudnn.h- system cannot find the file specified

I keep getting this error when trying to build the tensorflow-gpu using bazel and python in Windows 10: Cuda Configuration Error: Error reading C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v9.2/cuda/include/cudnn.h: ja va.io.IOException:…
Robert Corvus
  • 2,054
  • 23
  • 30
0
votes
1 answer

Modifying RNN CuDNN example code to use CUDNN_DATA_INT8

The RNN example (RNN_example.cu) that is in cudnn_samples_v7 is set up to use CUDNN_DATA_FLOAT. I'd like to modify it to use CUDNN_DATA_INT8. When I globally made this change, compiled and run, I get the following runtime errors: $ ./RNN_int8 20 2…
aneccodeal
  • 8,531
  • 7
  • 45
  • 74
0
votes
0 answers

CuDNN crashing under valgrind

My program works fine on my standard Ubuntu x64 box, but if I run under valgrind I see the following error: ==22246== Conditional jump or move depends on uninitialised value(s) ==22246== at 0x9854DCBC: ??? (in…
Ken Y-N
  • 14,644
  • 21
  • 71
  • 114
0
votes
3 answers

pytorch Rnn.py RuntimeError: CUDNN_STATUS_INTERNAL_ERROR

I'm getting an CUDNN_STATUS_INTERNAL_ERROR error like below. python train_v2.py Traceback (most recent call last): File "train_v2.py", line 113, in main() File "train_v2.py", line 74, in main model.cuda() File…
aerin
  • 20,607
  • 28
  • 102
  • 140
0
votes
1 answer

CUDNN_STATUS_INTERNAL_ERROR after upgarde to tensorflow-gpu 1.9

I am on Ubuntu 16.04 and am using python 2.7 and tensorflow-gpu 1.6 which works fine. After upgrading to tensorflow-gpu 1.9 with pip I get the following error message: could not create cudnn handle: CUDNN_STATUS_INTERNAL_ERROR I have CUDA 9.0 and…
Andreas Pasternak
  • 1,250
  • 10
  • 18
0
votes
1 answer

How to build caffe2 with specified cuda and cudnn?

In the server,there are cudnn 7.0 and cuda 9.1 at /usr/local/cuda. I need to use detectron but it do not support cuda 9.1, so I need to install cuda 8.0. I am using the server so I do not have root privilege.I tried to install cuda 8.0 and cudnn as…
qimeng wang
  • 83
  • 2
  • 6
0
votes
1 answer

Error when running torch prediction model on GPU

I have been trying to use a specific pretrained machine learning model for captioning pictures. I have been using https://github.com/unnonouno/densecap . It comes with a Dockerfile setting up a whole cuda/torch/cudnn environement. Predictions on a…
Learning is a mess
  • 7,479
  • 7
  • 35
  • 71
0
votes
1 answer

cuDNN path not resolving

I'm trying to run the this theano test and I'm having problems with my cudnn path. I remember passing the tests after installing cudnn but it seems that theano cannot find the path to cudnn. Is this an enviroment variable problem? Does anyone have a…
Lucas Azevedo
  • 1,867
  • 22
  • 39
0
votes
1 answer

Convert a model trained in CUDNNLSTM so that the trained model can be run on CPU also

I have a model trained in CUDNNLSTM, how can I use this in CPU? How can we export CUDNNLSTM variables to CPU bases weights so that the trained model can be run on CPU also.
Deepak Banka
  • 591
  • 1
  • 6
  • 24
0
votes
1 answer

can't accept the right GNU compiler

I want to make the faster rcnn, I have a VM with UBUNTU 17.10 64bit. I install CUDA8 and CuDNN 6 then CUDNN 5. However, when I want to build the lib folder in faster project, I got this error: /usr/local/cuda/include/host_config.h:119:2: error:…
Hana90
  • 943
  • 5
  • 17
  • 37
0
votes
1 answer

Tensorflow CUBLAS_STATUS_ALLOC_FAILED error

Tf version: 1.6.0 GPU Os: Windows 10 64bit CUDA: 9.0 CUDNN: 7.0.5 for CUDA 9.0 GPU: GeForce GTX 1070 GPU version: 385.54 RAM: 23.95GB CPU: Intel i7-3770k @3.50GHz Python version: 3.6.4 The code I'm working on worked last week, but…
Adrian
  • 13
  • 1
  • 8
0
votes
2 answers

Tensorflow-gpu 1.5 with cuda 8.0 and cudnn v7.1 for cuda 8.0

I first installed cuda 9.0 and cudnn for cuda 9.0 and the latest tensorflow-gpu 1.6. But I noticed my nvidia-driver 384.111 doesn't support cuda 9.0. SO I uninstalled cuda 9.0, cudnn and tensorflow-gpu 1.5 and reinstalled tensorflow-gpu 1.5, cuda8.0…
tuming1990
  • 89
  • 3
  • 8