You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# need to disable cudagraphs if any model requires output allocator
79
-
if (
80
-
hasattr(module, "requires_output_allocator")
81
-
andmodule.requires_output_allocator
82
-
):
83
-
raiseRuntimeError(
84
-
"The model contains submodules that require a dynamic output allocator at runtime, which is incompatible with CUDA Graphs. Please disable CUDA Graphs."
85
-
)
86
-
if"_run_on_acc"inname:
87
-
num_trt_module+=1
88
-
elif"_run_on_gpu"inname:
89
-
num_torch_module+=1
90
-
91
-
ifnum_torch_module>0:
92
-
# Set whole cudagraphs mode and returns wrapped module
# need to disable cudagraphs if any model requires output allocator
89
+
if (
90
+
hasattr(module, "requires_output_allocator")
91
+
andmodule.requires_output_allocator
92
+
):
93
+
raiseRuntimeError(
94
+
"The model contains submodules that require a dynamic output allocator at runtime, which is incompatible with CUDA Graphs. Please disable CUDA Graphs."
95
+
)
96
+
if"_run_on_acc"inname:
97
+
num_trt_module+=1
98
+
elif"_run_on_gpu"inname:
99
+
num_torch_module+=1
100
+
101
+
ifnum_torch_module>0:
102
+
# Set whole cudagraphs mode and returns wrapped module
0 commit comments