File size: 385 Bytes
5ba1de3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#!/bin/bash
# === Fame Kit Test Script ===
set -e
echo "🧪 Importing torch and checking ROCm support..."
python3 -c "
import torch
print('Torch Version:', torch.__version__)
print('CUDA available:', torch.cuda.is_available())
print('HIP version (ROCm):', getattr(torch.version, 'hip', 'N/A'))
print('Built with ROCm:', torch.version.hip is not None)
"
echo "✅ Test completed!"
|