[w indexingutils.h:30] warning: indexing with dtype torch.uint8 is now deprecated, please use a dtype torch.bool instead. (function expandtensors)
나의 경우 to(device) 하고나서 torch.bool로 타입 변경을 안해줘서 이런 오류가 생겼다.
그래서 torch.bool로 변경해주니 warning 사라짐
이 답변을 참고해서 해결했다.