Open dberma15 opened 1 year ago
I'm using the code as is on Othello in tensoeflow and I'm finding it to be an order of magnitude slower on GPU compared to cpu. Is there a reason for this?
GPU isn't used when self play
The time might be wasted when copying the data from CPU memory to GPU and then copy it back.
The NN forward uses GPU, other operations use CPU in the selfplay.
I'm using the code as is on Othello in tensoeflow and I'm finding it to be an order of magnitude slower on GPU compared to cpu. Is there a reason for this?