Skip to content

[BE] [float8] Run test_everything.sh in float8 test CI using linux.aws.h100.4 #2541

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 16, 2025
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