In order to better understand the code, I tested it with plain pytorch without CUDA but it failed with AssertionError: Torch not compiled with CUDA enabled from File trainer.py, line 83, in train boards = boards.contiguous().cuda(). Is it sufficient to simply comment out the three lines with ending in .cuda() starting from boards = boards.contiguous().cuda()?
Hi Josh,
In order to better understand the code, I tested it with plain pytorch without CUDA but it failed with
AssertionError: Torch not compiled with CUDA enabled
fromFile trainer.py, line 83, in train boards = boards.contiguous().cuda()
. Is it sufficient to simply comment out the three lines with ending in.cuda()
starting from boards = boards.contiguous().cuda()?