We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e88283f commit 8aa4926Copy full SHA for 8aa4926
.github/workflows/CI.yml
@@ -83,3 +83,14 @@ jobs:
83
export CPATH=$CONDA_PREFIX/include:$CPATH
84
./integration_tests/run_tests.py -b gcc llvm wasm c
85
./integration_tests/run_tests.py -b gcc llvm wasm c -f
86
+
87
+ - name: Test4 (Linux/macOS)
88
+ shell: bash -l -e {0}
89
+ if: contains(matrix.os, 'ubuntu')
90
+ run: |
91
+ export CPATH=$CONDA_PREFIX/include:$CPATH
92
+ conda install --yes pytorch::pytorch
93
+ cp -r $CONDA_PREFIX/lib/python3.12/site-packages/torch/include/* $CONDA_PREFIX/include/
94
+ cp -r $CONDA_PREFIX/lib/python3.12/site-packages/torch/lib/* $CONDA_PREFIX/lib/
95
+ cp -r $CONDA_PREFIX/lib/python3.12/site-packages/torch/share/* $CONDA_PREFIX/share/
96
+ ./integration_tests/run_tests.py -b pytorch
0 commit comments