File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ jobs:
165165 - build : ' clblast'
166166 defines : ' -DLLAMA_CLBLAST=ON -DCMAKE_PREFIX_PATH="$env:RUNNER_TEMP/clblast"'
167167 - build : ' openblas'
168- defines : ' -DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS -DBLAS_INCLUDE_DIRS="$env:RUNNER_TEMP/openblas/include"'
168+ defines : ' -DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS -DBLAS_INCLUDE_DIRS="$env:RUNNER_TEMP/openblas/include" -DBLAS_LIBRARIES="$env:RUNNER_TEMP/openblas/lib/openblas.lib" '
169169
170170 steps :
171171 - name : Clone
@@ -213,7 +213,6 @@ jobs:
213213 cd build
214214 cmake .. ${{ matrix.defines }}
215215 cmake --build . --config Release
216- cp ../LICENSE ./bin/Release/llama.cpp.txt
217216
218217 - name : Add clblast.dll
219218 id : add_clblast_dll
@@ -258,6 +257,7 @@ jobs:
258257 id : pack_artifacts
259258 if : ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
260259 run : |
260+ Copy-Item LICENSE .\build\bin\Release\llama.cpp.txt
261261 7z a llama-${{ env.BRANCH_NAME }}-${{ steps.commit.outputs.short }}-bin-win-${{ matrix.build }}-x64.zip .\build\bin\Release\*
262262
263263 - name : Upload artifacts
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ endif()
6666# 3rd party libs
6767option (LLAMA_ACCELERATE "llama: enable Accelerate framework" ON )
6868option (LLAMA_BLAS "llama: use BLAS" OFF )
69- option (LLAMA_BLAS_VENDOR "llama: BLA_VENDOR from https://cmake.org/cmake/help/latest/module/FindBLAS.html#blas-lapack-vendors" Generic )
69+ set (LLAMA_BLAS_VENDOR "Generic" CACHE STRING "llama: BLAS library vendor" )
7070option (LLAMA_CUBLAS "llama: use cuBLAS" OFF )
7171set (LLAMA_CUDA_DMMV_X "32" CACHE STRING "llama: x stride for dmmv CUDA kernels" )
7272set (LLAMA_CUDA_DMMV_Y "1" CACHE STRING "llama: y block size for dmmv CUDA kernels" )
You can’t perform that action at this time.
0 commit comments