From 74acc5441d16fce29eef9c0c96312d660734e76f Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Tue, 12 Dec 2023 10:53:34 +0800 Subject: [PATCH] Revert "Hide hipBLAS (ROCm) if CuBLAS exists - vice versa" This reverts commit 4b854d46a4bad6ee524868c1dcb24f3a0f54e2be. --- koboldcpp.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/koboldcpp.py b/koboldcpp.py index b936b1585..739086f1c 100755 --- a/koboldcpp.py +++ b/koboldcpp.py @@ -1077,10 +1077,6 @@ def show_new_gui(): contextsize_text = ["256", "512", "1024", "2048", "3072", "4096", "6144", "8192", "12288", "16384", "24576", "32768", "65536"] runopts = [opt for lib, opt in lib_option_pairs if file_exists(lib)] antirunopts = [opt.replace("Use ", "") for lib, opt in lib_option_pairs if not (opt in runopts)] - if "Use CuBLAS" in runopts: - antirunopts.remove("hipBLAS (ROCm)") - if "Use hipBLAS (ROCm)" in runopts: - antirunopts.remove("CuBLAS") if os.name != 'nt': if "NoAVX2 Mode (Old CPU)" in antirunopts: antirunopts.remove("NoAVX2 Mode (Old CPU)")