Skip to content

Commit eb33467

Browse files
committed
fixed text
1 parent 6003e90 commit eb33467

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

koboldcpp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4589,7 +4589,7 @@ def hide_tooltip(event):
45894589
sd_flash_attention_var = ctk.IntVar(value=0)
45904590
sd_vaeauto_var = ctk.IntVar(value=0)
45914591
sd_tiled_vae_var = ctk.StringVar(value=str(default_vae_tile_threshold))
4592-
sd_convdirect_var = ctk.StringVar(value='disabled')
4592+
sd_convdirect_var = ctk.StringVar(value=str(sd_convdirect_choices[0]))
45934593
sd_clamped_var = ctk.StringVar(value="0")
45944594
sd_clamped_soft_var = ctk.StringVar(value="0")
45954595
sd_threads_var = ctk.StringVar(value=str(default_threads))
@@ -5363,7 +5363,7 @@ def toggletaesd(a,b,c):
53635363
makecheckbox(images_tab, "TAE SD (AutoFix Broken VAE)", sd_vaeauto_var, 42,command=toggletaesd,tooltiptxt="Replace VAE with TAESD. May fix bad VAE.")
53645364
makelabelcombobox(images_tab, "Conv2D Direct:", sd_convdirect_var, row=42, labelpadx=220, padx=310, width=90, tooltiptxt="Use Conv2D Direct operation. May save memory or improve performance.\nMight crash if not supported by the backend.\n", values=sd_convdirect_choices)
53655365
makelabelentry(images_tab, "VAE Tiling Threshold:", sd_tiled_vae_var, 44, 50, padx=144,singleline=True,tooltip="Enable VAE Tiling for images above this size, to save memory.\nSet to 0 to disable VAE tiling.")
5366-
makecheckbox(images_tab, "Flash Attention", sd_flash_attention_var, 46, tooltiptxt="Enable Flash Attention for diffusion. May save memory or improve performance.")
5366+
makecheckbox(images_tab, "SD Flash Attention", sd_flash_attention_var, 46, tooltiptxt="Enable Flash Attention for image diffusion. May save memory or improve performance.")
53675367

53685368
# audio tab
53695369
audio_tab = tabcontent["Audio"]

0 commit comments

Comments
 (0)