This repository has been archived on 2026-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ROCm-Research-Archive/Claude Test Scripts/arch_check.py
T
2026-08-20 00:45:43 +02:00

5 lines
263 B
Python

import torch
print("Device props:", torch.cuda.get_device_properties(0))
print("Arch list:", torch.cuda.get_arch_list())
print("GCN arch:", torch.cuda.get_device_properties(0).gcnArchName if hasattr(torch.cuda.get_device_properties(0), 'gcnArchName') else 'N/A')