When I run sess.run(train_step, feed_dict={x: batch_xs, y_: batch_ys}) I get InternalError: Blas SGEMM launch failed. Here is the full error and st
sess.run(train_step, feed_dict={x: batch_xs, y_: batch_ys})
InternalError: Blas SGEMM launch failed
I encountered this error when running Keras CuDNN tests in parallel with pytest-xdist. The solution was to run them serially.