Skip to content

Commit

Permalink
more circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
manyoso committed Aug 31, 2023
1 parent 9f1cbad commit 85e3459
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/continue_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,6 @@ jobs:
command: |
Invoke-WebRequest -Uri https://sdk.lunarg.com/sdk/download/1.3.261.1/windows/VulkanSDK-1.3.261.1-Installer.exe -OutFile VulkanSDK-1.3.261.1-Installer.exe
.\VulkanSDK-1.3.261.1-Installer.exe --accept-licenses --default-answer --confirm-command install
$env:Path += ";C:\VulkanSDK\1.3.261.1\bin"
- run:
name: Install dependencies
command:
Expand All @@ -305,7 +304,8 @@ jobs:
cd gpt4all-backend
mkdir build
cd build
cmake -G "MinGW Makefiles" ..
$env:Path += ";C:\VulkanSDK\1.3.261.1\bin"
cmake -G "MinGW Makefiles" .. -DKOMPUTE_OPT_DISABLE_VULKAN_VERSION_CHECK=ON
cmake --build . --parallel
- run:
name: Build wheel
Expand Down
4 changes: 3 additions & 1 deletion gpt4all-backend/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ else()
message(STATUS "Interprocedural optimization support detected")
endif()

set(LLAMA_KOMPUTE YES)
if(NOT APPLE)
set(LLAMA_KOMPUTE YES)
endif()

include(llama.cpp.cmake)

Expand Down

0 comments on commit 85e3459

Please sign in to comment.