I want to implement an int8 group_conv kernel by cutlass. However, there are some questions I was confused.
- cutlass group conv only support nhwc format, while according to Developer Guide :: NVIDIA Deep Learning TensorRT Documentation 6.10 section, trt plugins will only ask int8 + nchw, is there any way to bypass it?
- to the bias format, I print all format combs in supportFormatCombination function, I found it only support fp16 or fp32 bias. Is it expected, or I made some mistakes. (I want int32 bias datatype)
