Kai (Kazuya Ito)
Kai (Kazuya Ito)
I deleted `two_factor/migrations/0001_squashed_0008_delete_phonedevice.py` because the file causes the error below: > django.db.utils.OperationalError: no such table: two_factor_phonedevice
Thanks @spzala. I upgraded PyTorch from `2.2.1+cu121` to `2.3.0`, then [torch.get_default_device()](https://pytorch.org/docs/stable/generated/torch.get_default_device.html) works as shown below: ```python import torch torch.set_default_device(device='cuda:0') torch.get_default_device() # device(type='cuda', index=0) torch.__version__ # 2.3.0 ```