pytorch 不支持在forward里更新和注册 register_buffer
解决办法是吧register放在init里
但是有时会遇到forward后更新buffer的操作,用上边的方法会出错
Expected all tensors to be on the same device, but found at least two devices, cuda:0 and cpu!
内部原理不清楚 但是分析一下 pytroch的cuda 和cpu类型是不同的类型 所以直接tensor赋值 会导致‘test’变量变回cpu,解决办法如下
self.test = torch.tensor(hexa.mask.square_axial(ny, nx)[None, None, None, ...]).type_as(self.test)
也就是更新的时候把type设置为一致即可
参考
- https://github.com/pytorch/pytorch/issues/57740
- https://stackoverflow.com/questions/67909883/updating-a-register-buffer-in-pytorch