Does tensorrt4 not support div?
I want to get the l2normalization value of x in pytorch 0.4.1 , but when I use onnx2trt, error show up ----- “what(): No converter registered for op type: Div”. the shape of x is batchsize*512.
x=x / (x.norm(p=2, dim=1, keepdim=True) + 1e-10)