From d40a0f5de84cf825b4e59dec041a50a1b3106989 Mon Sep 17 00:00:00 2001 From: Masahiro Tanaka <81312776+tohtana@users.noreply.github.com> Date: Sat, 13 Sep 2025 00:45:08 -0700 Subject: [PATCH] Add dependency for deepcompile test (#7558) This PR adds dependency to CI tests for DeepCompile. --------- Signed-off-by: Masahiro Tanaka --- ci/torch_latest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/torch_latest.py b/ci/torch_latest.py index 7255dc3fb..796ef9f3a 100644 --- a/ci/torch_latest.py +++ b/ci/torch_latest.py @@ -15,6 +15,7 @@ image = (modal.Image .run_commands("apt update && apt install -y libaio-dev") .pip_install_from_requirements(ROOT_PATH / "requirements/requirements.txt", gpu="any") .pip_install_from_requirements(ROOT_PATH / "requirements/requirements-dev.txt", gpu="any") + .pip_install_from_requirements(ROOT_PATH / "requirements/requirements-deepcompile.txt", gpu="any") .add_local_dir(ROOT_PATH , remote_path="/root/", copy=True) .run_commands("pip install /root") .add_local_dir(ROOT_PATH / "accelerator", remote_path="/root/deepspeed/accelerator")