Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ python3 -m torch2trt.test -o $OUTPUT_FILE --name vgg11_bn
python3 -m torch2trt.test -o $OUTPUT_FILE --name vgg13_bn
python3 -m torch2trt.test -o $OUTPUT_FILE --name vgg16_bn
python3 -m torch2trt.test -o $OUTPUT_FILE --name vgg19_bn
python3 -m torch2trt.test -o $OUTPUT_FILE --name mobilenet_v2
1 change: 1 addition & 0 deletions torch2trt/module_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ def module_name(self):
ModuleTest(torchvision.models.vgg13_bn, torch.float16, torch.device('cuda'), [(1, 3, 224, 224)], fp16_mode=True),
ModuleTest(torchvision.models.vgg16_bn, torch.float16, torch.device('cuda'), [(1, 3, 224, 224)], fp16_mode=True),
ModuleTest(torchvision.models.vgg19_bn, torch.float16, torch.device('cuda'), [(1, 3, 224, 224)], fp16_mode=True),
ModuleTest(torchvision.models.mobilenet_v2, torch.float16, torch.device('cuda'), [(1, 3, 224, 224)], fp16_mode=True),
]


Expand Down