q yao
q yao
Sorry, I still do not have any solution.
And, by the way, have you tried to increase `max_workspace_size`? Some tactic need more workspace to perform accelerate.
I set the `max_workspace_size=1
What is the output structure of your model? The convertor only accept tensor or list of tensors as output. Nested list is not convertable as the final output.
The warning about myelin happened when the model is too complex and too many shape inference need to be performed. Try to avoid dynamic shape (you can set the same...
It is hard to say, the warning means there is an unsupported layer in the network. The output of this node would be treated as constant value. So if these...
`--plugins` flag is not used in this repo. Please install follow the README of this repo, not the official one.
Please follow [these](https://github.com/grimoire/torch2trt_dynamic#setup) steps. you do **NOT** need to change anything inside setup.py, The plugin used in this repo is [amirstan_plugin](https://github.com/grimoire/amirstan_plugin).
Yes, read [this](https://github.com/grimoire/mmdetection-to-tensorrt/blob/master/docs/getting_started.md#use-in-c) for detail.
Sounds like a good way to add unit tests. Thanks, I will try this weekend.