I am trying to train my first NN using keras from tensorflow 1.14 on nvidia cuda 10.1 but I am getting the following error:
tensorflow.python.framework.errors_impl.UnknownError: 2 root error(s) found.
(0) Unknown: Failed to get convolution algorithm. This is probably because cuDNN failed to initialize, so try looking to see if a warning log message was printed above.
[[{{node conv2d/Conv2D}}]]
(1) Unknown: Failed to get convolution algorithm. This is probably because cuDNN failed to initialize, so try looking to see if a warning log message was printed above.
[[{{node conv2d/Conv2D}}]]
[[metrics/acc/Identity/_113]
I have seen that for keras 2 there are some workaround removing the limit of the memory growth for the gpu, is there something similar for tensorflow 1.14?
If not, how can be solved without changing cuda installation?