which layer is not supported by tensorrt3.0, my tf model was frozened,but when i convert it to uff ,it has error below,any one could tell me how to find the layer in my tf model which is not supported by tensorrt3.0.4 ?

Traceback (most recent call last):
File “/usr/local/lib/python2.7/dist-packages/uff/bin/convert_to_uff.py”, line 109, in
main()
File “/usr/local/lib/python2.7/dist-packages/uff/bin/convert_to_uff.py”, line 104, in main
output_filename=args.output
File “/usr/local/lib/python2.7/dist-packages/uff/converters/tensorflow/conversion_helpers.py”, line 108, in from_tensorflow_frozen_model
return from_tensorflow(graphdef, output_nodes, **kwargs)
File “/usr/local/lib/python2.7/dist-packages/uff/converters/tensorflow/conversion_helpers.py”, line 81, in from_tensorflow
name=“main”)
File “/usr/local/lib/python2.7/dist-packages/uff/converters/tensorflow/converter.py”, line 64, in convert_tf2uff_graph
uff_graph, input_replacements)
File “/usr/local/lib/python2.7/dist-packages/uff/converters/tensorflow/converter.py”, line 51, in convert_tf2uff_node
op, name, tf_node, inputs, uff_graph, tf_nodes=tf_nodes)
File “/usr/local/lib/python2.7/dist-packages/uff/converters/tensorflow/converter.py”, line 28, in convert_layer
fields = cls.parse_tf_attrs(tf_node.attr)
File “/usr/local/lib/python2.7/dist-packages/uff/converters/tensorflow/converter.py”, line 177, in parse_tf_attrs
for key, val in attrs.items()}
File “/usr/local/lib/python2.7/dist-packages/uff/converters/tensorflow/converter.py”, line 177, in
for key, val in attrs.items()}
File “/usr/local/lib/python2.7/dist-packages/uff/converters/tensorflow/converter.py”, line 172, in parse_tf_attr_value
return cls.convert_tf2uff_field(code, val)
File “/usr/local/lib/python2.7/dist-packages/uff/converters/tensorflow/converter.py”, line 161, in convert_tf2uff_field
if shp.unknown_rank:

Hi,

Could you also share your issue on the description? Your title is auto-cut by the system.

Here is the information of TensorRT supported layer for your reference:
UFF parser: [url]Developer Guide :: NVIDIA Deep Learning TensorRT Documentation
TensorRT engine: [url]Developer Guide :: NVIDIA Deep Learning TensorRT Documentation

Thanks.