We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 287235d commit 3111180Copy full SHA for 3111180
.github/workflows/python-package.yml
@@ -29,8 +29,6 @@ jobs:
29
if: matrix.os == 'macos-13'
30
run: |
31
brew install libomp
32
- export CC=$(brew --prefix llvm@15)/bin/clang
33
- export CXX=$(brew --prefix llvm@15)/bin/clang++
34
- name: Install dependencies
35
36
python -m pip install --upgrade pip
@@ -45,6 +43,8 @@ jobs:
45
43
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
46
44
- name: Build CPP extension
47
+ export CC=$(brew --prefix llvm)/bin/clang
+ export CXX=$(brew --prefix llvm)/bin/clang++
48
python setup.py build
49
find build/ -name "_C*.so" -exec cp {} ./torchlpc/ \;
50
- name: Test with pytest
0 commit comments