Skip to content
Merged
Show file tree
Hide file tree
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: 6 additions & 4 deletions .github/workflows/e2e_transferqueue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,13 +124,14 @@ jobs:
run: |
pip3 install --no-deps -e .[test,gpu]
pip3 install transformers==$TRANSFORMERS_VERSION
pip3 install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple TransferQueue==0.1.2.dev0
pip3 install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple TransferQueue==0.1.4.dev1
- name: Prepare GSM8K dataset
run: |
python3 examples/data_preprocess/gsm8k.py --local_dataset_path ${HOME}/models/hf_data/gsm8k
- name: Running the E2E test with TransferQueue (FSDP)
- name: Running the E2E test with TransferQueue (FSDP), enable zero copy serialization
run: |
ray stop --force
export TQ_ZERO_COPY_SERIALIZATION=True
bash tests/special_e2e/run_transferqueue.sh

# Test Megatron strategy
Expand All @@ -153,13 +154,14 @@ jobs:
run: |
pip3 install --no-deps -e .[test,gpu]
pip3 install transformers==$TRANSFORMERS_VERSION
pip3 install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple TransferQueue==0.1.2.dev0
pip3 install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple TransferQueue==0.1.4.dev1
- name: Prepare GSM8K dataset
run: |
python3 examples/data_preprocess/gsm8k.py --local_dataset_path ${HOME}/models/hf_data/gsm8k
- name: Running the E2E test with TransferQueue (Megatron)
- name: Running the E2E test with TransferQueue (Megatron), disable zero copy serialization
run: |
ray stop --force
export TQ_ZERO_COPY_SERIALIZATION=False
bash tests/special_e2e/run_transferqueue.sh

cleanup:
Expand Down
Loading
Loading