📌  相关文章
📜  cudnn 错误:cudnn_status_not_initialized - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:27.582000             🧑  作者: Mango

代码示例1
Finally, I solved the problem.

1.Somewhere in my code I use a CrossEntropyLoss function with ignore_index parameter as ignore_index = my_ignore_index. By mistake, I had my_ignore_index = -1 which as value, it is not a valid value for my data; -1 never appears in my data values. Updating correctly solved the problem. This solved the "... an illegal memory access was encou..." error.

2.The other thing that I did and helped to solve the problem was to use a newer version of anaconda3. This solved the CUDNN_STATUS_NOT_INITIALIZED error.