Can you provide the following information so we can better help?
Provide details on the platforms you are using:
o Linux distro and version
o GPU type
o Nvidia driver version
o CUDA version
o CUDNN version
o Python version [if using python]
o Tensorflow and PyTorch version
o TensorRT version
Also, if possible please share the script & model file to reproduce the issue.
Meanwhile, could you please try to use “trtexec” command to test the model.
“trtexec” useful for benchmarking networks and would be faster and easier to debug the issue using “–verbose” mode.
— End node —
ERROR: builtin_op_importers.cpp:728 In function importConcat:
[8] Assertion failed: input.is_tensor()
[E] failed to parse onnx file
[E] Engine could not be created
[E] Engine could not be created
As per the trtexec output, it seems all the input tensors to concat layer [Concat -> “696”] are not of same shape.
In case of concat operation, all input tensors must have the same shape, except for the dimension size of the axis to concatenate on.
As per trtexec output that you shared, the concat layer seems to have 3 inputs and shape of 695:Constant -> (1, 3202, 4) layer is different from other 2 input shapes eg: 694:Softmax -> (3202, 2).
All input tensors might have same dtype but issue seems to be due to shape.