TADBot / cuda_test.py
ryefoxlime's picture
updated readme and required libs
dca99f4
raw
history blame
144 Bytes
def main():
import torch
print(torch.cuda.is_available())
print(torch.cuda.get_device_name())
if __name__ == '__main__':
main()