torch2trt_dynamic icon indicating copy to clipboard operation
torch2trt_dynamic copied to clipboard

A pytorch to tensorrt convert with dynamic shape support

Results 23 torch2trt_dynamic issues
Sort by recently updated
recently updated
newest added

(zk_mmdet2.4) yyf@zyzn:~/software/torch2trt$ sudo python setup.py install [sudo] password for yyf: Traceback (most recent call last): File "setup.py", line 8, in from build import build File "/home/yyf/software/torch2trt/build.py", line 29, in torch_dir=imp.find_module('torch')[1],...

I got this error when using list as output: ``` line 408, in mark_outputs trt_tensor = torch_output._trt AttributeError: 'list' object has no attribute '_trt' ```

When I executed the following usage code given in the README file, I found that the code is consuming 25% of RAM. ```from torch2trt_dynamic import torch2trt_dynamic import torch from torch...

Hi. I'm trying using torch2trt_dynamic to convert models from torch to trt. I got an unexpected issue. To reproduce it I use lenet5 like neural network. ``` from torch2trt_dynamic import...

Some platforms including Jetson Xavier AGX and NX supports DLA modules. However, when converting the pytorch module to tensorrt, it will never attempt to use DLA cores but will always...

the model i used has some opration written by c++, using torch.utils.cpp_extention with a .cpp file. I want to convert the model into trt model but failed with the error...

I tested mobilenetv2. In official repo, it can generate without any plugin, this repo will have. ![image](https://user-images.githubusercontent.com/21303438/95645059-0eb26a80-0aee-11eb-926e-06d792e05096.png) ![image](https://user-images.githubusercontent.com/21303438/95645068-28ec4880-0aee-11eb-9f26-60e13ab1ec95.png) I doesn't need dynamic in simple model, what's the differences between offical...

Hi, I'm trying to build engine from pytorch model (resnest200 backboned) with float16 conversion. Unfortunately I got an error: `[TensorRT] ERROR: 9: [graphShapeAnalyzer.cpp::throwIfError::1306] Error Code 9: Internal Error ((Unnamed Layer*...

This error occurs when I convert any model, the error log is `cooperative_groups_helpers.h(87): error: identifier "cudaCGSynchronizeGrid" is undefined` `1 error detected in the compilation of "generatedNativePointwise".` `Traceback (most recent call...