Part Number: TDA4VM
I have a model with user-define-op such as pointpillar network. and my input is (150000, 5), and the type of model input and output is float, Then the model will split into 3part, The first one is user-define-op, the Second one is Transpose, the last one is conv+conv which transposed to tidl subgraph as follows.

Then my problem is in tidl subgraph, I using debugTraceLevel=3 to print the Layer cycle of the subraph. And I found that the first layer and last layer DataConverter Cost a lot of time, nearly 22ms, and the 2 conv Layer cost nearly 1.4ms.
So I am Confused if it is normal? and I want to know the detail operations in DataConverter, if there just has quantize and dequantize operation?

[C7x_1 ] 171901.116484 s: Network Cycles 24430318 [C7x_1 ] 171901.116584 s: Layer, Layer Cycles,kernelOnlyCycles, coreLoopCycles,LayerSetupCycles,dmaPipeupCycles, dmaPipeDownCycles, PrefetchCycles,copyKerCoeffCycles,LayerDeinitCycles,LastBlockCycles, paddingTrigger, paddingWait,LayerWithoutPad,LayerHandleCopy, BackupCycles, RestoreCycles, [C7x_1 ] 171901.116708 s: 1, 8470622, 8411329, 8424861, 2036, 13546, 19, 0, 0, 366, 350254, 572, 231, 8447244, 0, 0, 0, [C7x_1 ] 171901.116830 s: 2, 724793, 502190, 511665, 168414, 904, 16985, 0, 0, 515, 17164, 362, 30, 704798, 2367, 0, 0, [C7x_1 ] 171901.116952 s: 3, 686062, 166335, 483109, 165724, 13698, 12, 0, 0, 409, 2864, 258, 30, 666797, 2165, 0, 0, [C7x_1 ] 171901.117074 s: 4, 14310284, 14190972, 14259900, 2617, 1633, 19678, 0, 0, 356, 147836, 555, 196, 14289742, 0, 0, 0, [C7x_1 ] 171901.117121 s: Sum of Layer Cycles 24191761model_svg.zip

