mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 08:07:56 +01:00
Don't overwrite --gpu_memory on boot (#1237/#1235)
This commit is contained in:
parent
72a89e8fd1
commit
b9dcba7762
@ -221,10 +221,11 @@ def update_model_parameters(state, initial=False):
|
||||
found_positive = True
|
||||
break
|
||||
|
||||
if found_positive:
|
||||
shared.args.gpu_memory = [f"{i}MiB" for i in gpu_memories]
|
||||
else:
|
||||
shared.args.gpu_memory = None
|
||||
if not (initial and vars(shared.args)['gpu_memory'] != vars(shared.args_defaults)['gpu_memory']):
|
||||
if found_positive:
|
||||
shared.args.gpu_memory = [f"{i}MiB" for i in gpu_memories]
|
||||
else:
|
||||
shared.args.gpu_memory = None
|
||||
|
||||
|
||||
def get_model_specific_settings(model):
|
||||
|
Loading…
Reference in New Issue
Block a user