File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
py/torch_tensorrt/dynamo/partitioning Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,7 @@ def __init__(
110
110
allowed_single_node_partition_ops : Optional [Collection [str ]] = None ,
111
111
min_block_size : int = MIN_BLOCK_SIZE ,
112
112
require_full_compilation : bool = REQUIRE_FULL_COMPILATION ,
113
+ return_tuple : bool = False ,
113
114
):
114
115
"""
115
116
Preprocesses graph before splitting:
@@ -149,6 +150,7 @@ def __init__(
149
150
self .num_trt_accelerated_subgraphs : Optional [int ] = None
150
151
self .allowed_single_node_partition_ops = allowed_single_node_partition_ops
151
152
self .require_full_compilation = require_full_compilation
153
+ self ._return_tuple = return_tuple
152
154
153
155
def remove_small_acc_subgraphs (self , subgraphs : List [Subgraph ]) -> List [Subgraph ]:
154
156
"""
You can’t perform that action at this time.
0 commit comments