pstadelmann

Results 5 comments of pstadelmann

I have the same problem. What's puzzling me is that trtexec successfully runs inference with the same ONNX file! Verbose output is identical for both my code (adatped from sampleOnnxMNIST)...

Well, actually trtexec was able to run inference because it would use fp32 inputs, which it does by default. When forced to use int8 inputs via the --inputIOFormats parameters, it...

@kevinch-nv In my case, the goal was to reduce the total processing latency by sending 8-bit data instead of fp32 to the GPU.

Works great for me, both for CDC and UVC. Thanks ! In addition to `#define CFG_TUD_DWC2_DMA_ENABLE 1` I also had to add `#define __CORTEX_M 7`

> > Works great for me, both for CDC and UVC. Thanks ! > > In addition to `#define CFG_TUD_DWC2_DMA_ENABLE 1` I also had to add `#define __CORTEX_M 7` >...