我在运行卷积神经网络训练代码的时候,报错:
Process finished with exit code 134 (interrupted by signal 6: SIGABRT)
百度的解决方案都是配置pycharm的Run > Edit Configurations:如 https://blog.csdn.net/jizhidexiaoming/article/details/80918868 ,但我试过后完全没效果。
后来,我发现有这么一行话:7600 (compatibility version 7600) but source was compiled with 7102 (compatibility version 7100),猜想可能是cudnn版本过高了,降低版本到7.1.2就好了,步骤如下:
file-settings-project interpreter-找到package里的cudnn,然后双击选择Specify version为7.1.2,等待安装就好了。
安装好后再运行就没有错误了。