Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/float8_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
gpu-arch-type: "cuda"
gpu-arch-version: "12.6"
- name: H100
runs-on: linux.aws.h100
runs-on: linux.aws.h100.4
torch-spec: '--pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu126'
gpu-arch-type: "cuda"
gpu-arch-version: "12.4"
Expand All @@ -56,3 +56,11 @@ jobs:
pytest test/float8 --verbose -s
pytest test/integration --verbose -s
pytest test/dtypes/test_affine_quantized_float.py --verbose -s
GPU_COUNT=$(nvidia-smi -L 2>/dev/null | wc -l)
if [ "$GPU_COUNT" -ge 4 ]; then
echo "Found $GPU_COUNT GPUs - running test_everything.sh"
./test/float8/test_everything.sh
else
echo "Only $GPU_COUNT GPUs available. Need at least 4 GPUs to run test_everything.sh"
exit 0
fi
Loading