From 6f18297b3a8711da2a538a0cd670e7dae48307a6 Mon Sep 17 00:00:00 2001 From: Jeremy <remy415@gmail.com> Date: Thu, 18 Apr 2024 19:47:44 -0400 Subject: [PATCH] Update gen_windows.ps1 Forgot a " on the write-host --- llm/generate/gen_windows.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llm/generate/gen_windows.ps1 b/llm/generate/gen_windows.ps1 index 074516d6..0b5576cf 100644 --- a/llm/generate/gen_windows.ps1 +++ b/llm/generate/gen_windows.ps1 @@ -244,7 +244,7 @@ if ($null -ne $script:CUDA_LIB_DIR) { $script:buildDir="../build/windows/${script:ARCH}/cuda$script:CUDA_VARIANT" $script:cmakeDefs += @("-A", "x64", "-DLLAMA_CUDA=ON", "-DLLAMA_AVX=on", "-DLLAMA_AVX2=off", "-DCUDAToolkit_INCLUDE_DIR=$script:CUDA_INCLUDE_DIR", "-DCMAKE_CUDA_ARCHITECTURES=${script:CMAKE_CUDA_ARCHITECTURES}") if ($null -ne $script:OLLAMA_CUSTOM_CUDA_DEFS) { - write-host "OLLAMA_CUSTOM_CUDA_DEFS=`"${script:OLLAMA_CUSTOM_CUDA_DEFS}`" + write-host "OLLAMA_CUSTOM_CUDA_DEFS=`"${script:OLLAMA_CUSTOM_CUDA_DEFS}`"" $script:cmakeDefs +=@("${script:OLLAMA_CUSTOM_CUDA_DEFS}") write-host "building custom CUDA GPU" } @@ -280,7 +280,7 @@ if ($null -ne $env:HIP_PATH) { # We have to clobber the LIB var from the developer shell for clang to work properly $env:LIB="" if ($null -ne $script:OLLAMA_CUSTOM_ROCM_DEFS) { - write-host "OLLAMA_CUSTOM_ROCM_DEFS=`"${script:OLLAMA_CUSTOM_ROCM_DEFS}`" + write-host "OLLAMA_CUSTOM_ROCM_DEFS=`"${script:OLLAMA_CUSTOM_ROCM_DEFS}`"" $script:cmakeDefs += @("${script:OLLAMA_CUSTOM_ROCM_DEFS}") write-host "building custom ROCM GPU" }