Skip to content

Commit 9a9205c

Browse files
committed
refactor: set default verbose=true for bulding engine from onnx
Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
1 parent a59a091 commit 9a9205c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

perception/tensorrt_yolo/lib/include/trt_yolo.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class Net
9090
Net(
9191
const std::string & onnx_file_path, const std::string & precision, const int max_batch_size,
9292
const Config & yolo_config, const std::vector<std::string> & calibration_images,
93-
const std::string & calibration_table, bool verbose = false,
93+
const std::string & calibration_table, bool verbose = true,
9494
size_t workspace_size = (1ULL << 30));
9595

9696
~Net();

perception/traffic_light_ssd_fine_detector/lib/include/trt_ssd.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class Net
6464
// Create engine from serialized onnx model
6565
Net(
6666
const std::string & onnx_file_path, const std::string & precision, const int max_batch_size,
67-
bool verbose = false, size_t workspace_size = (1ULL << 30));
67+
bool verbose = true, size_t workspace_size = (1ULL << 30));
6868

6969
~Net();
7070

0 commit comments

Comments
 (0)