Skip to content
Closed
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
4 changes: 3 additions & 1 deletion .github/workflows/v1-bisection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
run: |
conda create -y -n "$BISECT_CONDA_ENV" python="${PYTHON_VERSION}"
. activate "$BISECT_CONDA_ENV"
conda install -y numpy requests=2.22 ninja pyyaml mkl mkl-include setuptools cmake cffi \
# pytorch doesn't support cmake>3.22
# See: https://github.com/pytorch/pytorch/issues/74985
conda install -y numpy requests ninja pyyaml mkl mkl-include setuptools cmake=3.22 cffi \
typing_extensions future six dataclasses tabulate gitpython tqdm
conda install -y -c pytorch "${MAGMA_VERSION}"
# Pin ffmpeg version to 4.4.1. See: https://github.com/pytorch/vision/issues/5616
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/v2-bisection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
run: |
conda create -y -n "${BISECT_CONDA_ENV}" python="${PYTHON_VER}"
. activate "${BISECT_CONDA_ENV}"
conda install -y numpy requests ninja pyyaml mkl mkl-include setuptools cmake cffi \
# pytorch doesn't support cmake>3.22
# See: https://github.com/pytorch/pytorch/issues/74985
conda install -y numpy requests ninja pyyaml mkl mkl-include setuptools cmake=3.22 cffi \
typing_extensions future six dataclasses tabulate gitpython git-lfs tqdm
# Install magma
conda install -y -c pytorch "${MAGMA_VERSION}"
Expand Down