-
Notifications
You must be signed in to change notification settings - Fork 155
/
test_trt.py
43 lines (37 loc) · 1.27 KB
/
test_trt.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
# Full license terms provided in LICENSE.md file.
import sys
#sys.path.append("../scripts")
#sys.path.append(".")
from model_meta import NETS
import os
import subprocess
import pdb
TEST_IMAGE_PATH='data/images/gordon_setter.jpg'
TEST_OUTPUT_PATH='data/test_output_trt.txt'
TEST_EXE_PATH='./build/src/test/test_trt'
if __name__ == '__main__':
# delete output file
if os.path.isfile(TEST_OUTPUT_PATH):
os.remove(TEST_OUTPUT_PATH)
for net_name, net_meta in NETS.items():
if 'exclude' in net_meta.keys() and net_meta['exclude'] is True:
continue
args = [
TEST_IMAGE_PATH,
net_meta['plan_filename'],
net_meta['input_name'],
str(net_meta['input_height']),
str(net_meta['input_width']),
net_meta['output_names'][0],
str(net_meta['num_classes']),
net_meta['preprocess_fn'].__name__,
str(50), # numRuns
"half", # dataType
str(1), # maxBatchSize
str(1 << 20), # workspaceSize
str(0), # useMappedMemory
TEST_OUTPUT_PATH
]
print("Running %s" % net_name)
subprocess.call([TEST_EXE_PATH] + args)