Skip to content

Commit 5f8f483

Browse files
committedDec 23, 2024
fixed typo (+1 squashed commits)
Squashed commits: [b586d18] fixed typo
1 parent 13abf59 commit 5f8f483

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎koboldcpp.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
modelbusy = threading.Lock()
5757
requestsinqueue = 0
5858
defaultport = 5001
59-
KcppVersion = "1.80.2"
59+
KcppVersion = "1.80.3"
6060
showdebug = True
6161
guimode = False
6262
showsamplerwarning = True
@@ -3440,7 +3440,7 @@ def export_vars():
34403440
gpuchoiceidx = int(gpu_choice_var.get())-1
34413441
if runopts_var.get() == "Use CLBlast" or runopts_var.get() == "Use CLBlast (Old CPU)":
34423442
args.useclblast = [[0,0], [1,0], [0,1], [1,1]][gpuchoiceidx]
3443-
if runopts_var.get() == "CUse CLBlast (Old CPU)":
3443+
if runopts_var.get() == "Use CLBlast (Old CPU)":
34443444
args.noavx2 = True
34453445
if runopts_var.get() == "Use CuBLAS" or runopts_var.get() == "Use hipBLAS (ROCm)":
34463446
if gpu_choice_var.get()=="All":

0 commit comments

Comments
 (0)
Please sign in to comment.