We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8fff5c commit 2d64264Copy full SHA for 2d64264
.github/workflows/ampere-build-and-release.yaml
@@ -39,7 +39,11 @@ jobs:
39
run: python -m pip install build scikit-build-core
40
41
- name: Build wheel
42
- run: CMAKE_ARGS="-DGGML_NATIVE=ON" python -m build --wheel --outdir wheelhouse/
+ run: >
43
+ CMAKE_ARGS="-DGGML_NATIVE=OFF
44
+ -DCMAKE_CXX_FLAGS='-march=armv8.2-a+dotprod+fp16'
45
+ -DCMAKE_C_FLAGS='-march=armv8.2-a+dotprod+fp16'"
46
+ python -m build --wheel --outdir wheelhouse/
47
48
- name: Inspect wheel contents
49
run: |
0 commit comments