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 6c8f2d4 commit 2c26c4aCopy full SHA for 2c26c4a
template.yml
@@ -18,7 +18,7 @@ jobs:
18
# on macOs, openblas is alreadey installed
19
- ${{ if contains(parameters.vmImage, 'macOs') }}:
20
- bash: |
21
- brew install ninja open-mpi
+ brew install ninja open-mpi && \
22
displayName: 'Install BLAS and MPI libraries'
23
24
- bash : |
@@ -29,7 +29,7 @@ jobs:
29
cd llama.cpp && \
30
mkdir cmake-build && \
31
cd cmake-build && \
32
- cmake -DCMAKE_BUILD_TYPE=Release -DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS -G Ninja .. && \
+ cmake -DCMAKE_BUILD_TYPE=Release -DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS export -DCMAKE_PREFIX_PATH="/usr/local/opt/lapack;/usr/local/opt/openblas" -G Ninja .. && \
33
ninja
34
displayName: 'Build llama.cpp using ninja'
35
0 commit comments