NCHW and atrous in tensorflow

Hi,
I’m trying to convert my Tensorflow model to tensorrt to infer on tx2,
I f I understand correctly Tensorrt only supports NCHW format. Tensorflow atrous_conv2d op is only supported in NHWC so there is no way to convert with Tensorrt?
Do you plan to support NHWC in the near future?
Thanks

Hi,

We use NCHW implmentation for better performance.
If you are using NHWC format, some conversion will be inserted when parsing the TensorFlow model.

For your use-case, you may meet layer non-supported issue.
A general conv2d is in our support list but not for atrous_conv2d.

Thanks.