We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7f2dee commit bee0f1dCopy full SHA for bee0f1d
py/torch_tensorrt/dynamo/conversion/aten_ops_converters.py
@@ -218,7 +218,7 @@ def aten_ops_native_group_norm(
218
219
220
def cat_validator(node: Node, settings: Optional[CompilationSettings] = None) -> bool:
221
- # Validate only one user, which is a getitem node that accesses the first element in the list
+ # empty tensor in cat input as ITensor leads to [RemoveDeadLayers] Input Tensor y is unused or used only at compile-time, but is not being removed.
222
for each_input in node.args[0]:
223
if isinstance(each_input, TRTTensor) and any(s == 0 for s in each_input.shape):
224
return False
0 commit comments