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
RuntimeError: aten::full() Expected a value of type 'List[int]' for argument 'size' but instead found type 'int'.
Position: 0
Value: 3
Declaration: aten::full(SymInt[] size, Scalar fill_value, *, ScalarType? dtype=None, Layout? layout=None, Device? device=None, bool? pin_memory=None) -> Tensor
Python error details: TypeError: 'int' object is not iterable
The text was updated successfully, but these errors were encountered:
Bug Description
TensorRT/py/torch_tensorrt/dynamo/utils.py
Lines 135 to 148 in ee0ce96
Line 141 mentioned all the shape tensors encountered so far are plain integers, but aten::full() requires a list:
TensorRT/tests/py/dynamo/conversion/test_full_aten.py
Lines 29 to 54 in ee0ce96
The current implementation caused the error:
The text was updated successfully, but these errors were encountered: