Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 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
16 changes: 15 additions & 1 deletion .github/workflows/integration_test_4gpu_rl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,21 @@ jobs:
sudo mkdir -p "$RUNNER_TEMP/artifacts-to-be-uploaded"
sudo chown -R $(id -u):$(id -g) "$RUNNER_TEMP/artifacts-to-be-uploaded"

# Run E2E RL integration tests (TP=2 on 4 GPUs)
# Disable FlashInfer JIT sampler — CI image lacks nvcc
export VLLM_USE_FLASHINFER_SAMPLER=0

# Run default E2E RL integration tests (TP=2 on 4 GPUs)
python -m torchtitan.experiments.rl.tests.integration_tests \
$RUNNER_TEMP/artifacts-to-be-uploaded --ngpu 4 \
--hf_assets_path "$MODEL_PATH"

# Run bitwise parity tests (TP=2, batch-invariant mode)
HF_ASSETS_PATH="$MODEL_PATH" torchrun --nproc-per-node=2 -m pytest \
torchtitan/experiments/rl/tests/test_bitwise_parity.py -v

# Run batch-invariant E2E RL integration test (TP=2 on 4 GPUs)
python -m torchtitan.experiments.rl.tests.integration_tests \
$RUNNER_TEMP/artifacts-to-be-uploaded --test_suite h100 --ngpu 4 \
--hf_assets_path "$MODEL_PATH"

rm -rf $RUNNER_TEMP/artifacts-to-be-uploaded/*
94 changes: 0 additions & 94 deletions .github/workflows/integration_test_8gpu_rl_h100.yaml

This file was deleted.

Loading