We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0512183 commit 9f39782Copy full SHA for 9f39782
.github/workflows/unittest_ci_cpu.yml
@@ -45,9 +45,8 @@ jobs:
45
conda info
46
python --version
47
conda run -n build_binary python --version
48
- conda install -n build_binary \
49
- --yes \
50
- pytorch cpuonly -c pytorch-nightly
+ conda run -n build_binary \
+ pip install torch --index-url https://download.pytorch.org/whl/nightly/cu121
51
conda run -n build_binary \
52
python -c "import torch.distributed"
53
@@ -66,7 +65,8 @@ jobs:
66
65
67
python -c "import numpy"
68
echo "numpy succeeded"
69
- conda install -n build_binary -y pytest
+ pip install pytest
70
71
python -m pytest torchrec -v -s -W ignore::pytest.PytestCollectionWarning --continue-on-collection-errors \
72
--ignore-glob=**/test_utils/
0 commit comments