TensorFlow: Blas GEMM launch failed

后端 未结 15 1130
攒了一身酷
攒了一身酷 2020-12-05 05:11

When I\'m trying to use TensorFlow with Keras using the gpu, I\'m getting this error message:

C:\\Users\\nicol\\Anaconda3\\envs\\tensorflow\\lib\\site-packag         


        
15条回答
  •  鱼传尺愫
    2020-12-05 05:37

    I have got the same error,lucky,I have got it fixed. my error is: the last time,I open the tensorflow sess = tf.Session(),but I forgot close the session.

    so I open the terminal, type command:

    ps -aux | grep program_name
    

    find the PID,and type command kill the PID:

    kill -9 PID
    

    Ok,the GPU is realase.

提交回复
热议问题