From 2d822d305974541f48abbc5e4f58eb4cf8189f60 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Sun, 22 Jun 2025 23:28:29 +0800 Subject: [PATCH] fixed a typo --- koboldcpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koboldcpp.py b/koboldcpp.py index 4c106407d..de5d45940 100644 --- a/koboldcpp.py +++ b/koboldcpp.py @@ -494,7 +494,7 @@ def init_library(): libname = lib_vulkan elif file_exists(lib_vulkan_noavx2): libname = lib_vulkan_noavx2 - elif args.useclblast (os.name!='nt' or file_exists("clblast.dll")): + elif args.useclblast and (os.name!='nt' or file_exists("clblast.dll")): if file_exists(lib_clblast): libname = lib_clblast elif file_exists(lib_clblast_noavx2):