Skip to content

Update

Update #173

name: TorchFT CPU Unit Test
on:
push:
branches: [ main ]
paths:
- 'torchtitan/experiments/ft/**'
- '.github/workflows/unit_test_cpu_torchft.yaml'
pull_request:
paths:
- 'torchtitan/experiments/ft/**'
- '.github/workflows/unit_test_cpu_torchft.yaml'
concurrency:
group: unit-test${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_number || github.ref }}
cancel-in-progress: true
jobs:
build-test:
uses: pytorch/test-infra/.github/workflows/linux_job_v2.yml@main
with:
docker-image: torchtitan-ubuntu-22.04-clang12
repository: pytorch/torchtitan
script: |
set -eux
# The generic Linux job chooses to use base env, not the one setup by the image
CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]")
conda activate "${CONDA_ENV}"
pip config --user set global.progress_bar off
python -m pip install torchft-nightly
pip install --force-reinstall --pre torch --index-url https://download.pytorch.org/whl/nightly/cpu
USE_CPP=0 python -m pip install --pre torchao --index-url https://download.pytorch.org/whl/nightly/cpu
python -m pip install torchdata==0.12.0.dev20260327 --extra-index-url https://download.pytorch.org/whl/nightly/cpu
pytest torchtitan/experiments/ft/tests/test_ft_checkpoint.py -v