Skip to content

Commit

Permalink
fixed typo (+1 squashed commits)
Browse files Browse the repository at this point in the history
Squashed commits:

[b586d18] fixed typo
  • Loading branch information
LostRuins committed Dec 23, 2024
1 parent 13abf59 commit 5f8f483
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions koboldcpp.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
modelbusy = threading.Lock()
requestsinqueue = 0
defaultport = 5001
KcppVersion = "1.80.2"
KcppVersion = "1.80.3"
showdebug = True
guimode = False
showsamplerwarning = True
Expand Down Expand Up @@ -3440,7 +3440,7 @@ def export_vars():
gpuchoiceidx = int(gpu_choice_var.get())-1
if runopts_var.get() == "Use CLBlast" or runopts_var.get() == "Use CLBlast (Old CPU)":
args.useclblast = [[0,0], [1,0], [0,1], [1,1]][gpuchoiceidx]
if runopts_var.get() == "CUse CLBlast (Old CPU)":
if runopts_var.get() == "Use CLBlast (Old CPU)":
args.noavx2 = True
if runopts_var.get() == "Use CuBLAS" or runopts_var.get() == "Use hipBLAS (ROCm)":
if gpu_choice_var.get()=="All":
Expand Down

0 comments on commit 5f8f483

Please sign in to comment.