mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-23 00:18:20 +01:00
Remove bitsandbytes compatibility workaround (#91)
New bnb does not need it. Commented out in case it is needed in the futute.
This commit is contained in:
parent
d1da22d7ee
commit
04cae3e5db
26
webui.py
26
webui.py
@ -140,20 +140,20 @@ def update_dependencies():
|
|||||||
run_cmd("python -m pip install -r " + extension_req_path + " --upgrade", assert_success=True, environment=True)
|
run_cmd("python -m pip install -r " + extension_req_path + " --upgrade", assert_success=True, environment=True)
|
||||||
|
|
||||||
# Latest bitsandbytes requires minimum compute 7.0
|
# Latest bitsandbytes requires minimum compute 7.0
|
||||||
nvcc_device_query = "__nvcc_device_query" if not sys.platform.startswith("win") else "__nvcc_device_query.exe"
|
# nvcc_device_query = "__nvcc_device_query" if not sys.platform.startswith("win") else "__nvcc_device_query.exe"
|
||||||
min_compute = 70
|
# min_compute = 70
|
||||||
compute_array = run_cmd(os.path.join(conda_env_path, "bin", nvcc_device_query), environment=True, capture_output=True)
|
# compute_array = run_cmd(os.path.join(conda_env_path, "bin", nvcc_device_query), environment=True, capture_output=True)
|
||||||
old_bnb = "bitsandbytes==0.38.1" if not sys.platform.startswith("win") else "https://github.com/jllllll/bitsandbytes-windows-webui/raw/main/bitsandbytes-0.38.1-py3-none-any.whl"
|
# old_bnb = "bitsandbytes==0.38.1" if not sys.platform.startswith("win") else "https://github.com/jllllll/bitsandbytes-windows-webui/raw/main/bitsandbytes-0.38.1-py3-none-any.whl"
|
||||||
if compute_array.returncode == 0 and not any(int(compute) >= min_compute for compute in compute_array.stdout.decode('utf-8').split(',')):
|
# if compute_array.returncode == 0 and not any(int(compute) >= min_compute for compute in compute_array.stdout.decode('utf-8').split(',')):
|
||||||
old_bnb_install = run_cmd(f"python -m pip install {old_bnb} --force-reinstall --no-deps", environment=True).returncode == 0
|
# old_bnb_install = run_cmd(f"python -m pip install {old_bnb} --force-reinstall --no-deps", environment=True).returncode == 0
|
||||||
message = "\n\nWARNING: GPU with compute < 7.0 detected!\n"
|
# message = "\n\nWARNING: GPU with compute < 7.0 detected!\n"
|
||||||
if old_bnb_install:
|
# if old_bnb_install:
|
||||||
message += "Older version of bitsandbytes has been installed to maintain compatibility.\n"
|
# message += "Older version of bitsandbytes has been installed to maintain compatibility.\n"
|
||||||
message += "You will be unable to use --load-in-4bit!\n"
|
# message += "You will be unable to use --load-in-4bit!\n"
|
||||||
else:
|
# else:
|
||||||
message += "You will be unable to use --load-in-8bit until you install bitsandbytes 0.38.1!\n"
|
# message += "You will be unable to use --load-in-8bit until you install bitsandbytes 0.38.1!\n"
|
||||||
|
|
||||||
print_big_message(message)
|
# print_big_message(message)
|
||||||
|
|
||||||
# The following dependencies are for CUDA, not CPU
|
# The following dependencies are for CUDA, not CPU
|
||||||
# Parse output of 'pip show torch' to determine torch version
|
# Parse output of 'pip show torch' to determine torch version
|
||||||
|
Loading…
Reference in New Issue
Block a user