mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-09-11 12:24:53 +00:00
Fix disabling.
This commit is contained in:
parent
6951962ffd
commit
d67633a0c8
@ -3,7 +3,8 @@ import os
|
||||
|
||||
MEM_POOL = torch.cuda.graph_pool_handle()
|
||||
# This is overridden by the cli
|
||||
cuda_graphs = os.getenv("CUDA_GRAPHS", "1,2,4,8,16,32,64,96,128")
|
||||
cuda_graphs = os.getenv("CUDA_GRAPHS")
|
||||
if cuda_graphs is not None:
|
||||
try:
|
||||
cuda_graphs = [int(item) for item in cuda_graphs.split(",")]
|
||||
except Exception as e:
|
||||
|
Loading…
Reference in New Issue
Block a user