add log for -DTRT_10

triplemu/cpp-refine
triplemu 6 months ago
parent c032958e7e
commit 58a60434b3
  1. 1
      csrc/detect/end2end/CMakeLists.txt
  2. 2
      csrc/detect/end2end/include/common.hpp
  3. 2
      csrc/detect/end2end/include/yolov8.hpp
  4. 2
      csrc/detect/end2end/main.cpp

@ -32,6 +32,7 @@ print_var(TensorRT_LIBRARIES)
print_var(TensorRT_INCLUDE_DIRS) print_var(TensorRT_INCLUDE_DIRS)
print_var(TensorRT_LIB_DIR) print_var(TensorRT_LIB_DIR)
if (TensorRT_VERSION_MAJOR GREATER_EQUAL 10) if (TensorRT_VERSION_MAJOR GREATER_EQUAL 10)
message(STATUS "Build with -DTRT_10")
add_definitions(-DTRT_10) add_definitions(-DTRT_10)
endif () endif ()

@ -7,8 +7,6 @@
#include "NvInfer.h" #include "NvInfer.h"
#include "filesystem.hpp" #include "filesystem.hpp"
#include "opencv2/opencv.hpp" #include "opencv2/opencv.hpp"
#include <sys/stat.h>
#include <unistd.h>
#define CHECK(call) \ #define CHECK(call) \
do { \ do { \

@ -5,7 +5,7 @@
#define DETECT_END2END_YOLOV8_HPP #define DETECT_END2END_YOLOV8_HPP
#include "NvInferPlugin.h" #include "NvInferPlugin.h"
#include "common.hpp" #include "common.hpp"
#include "fstream" #include <fstream>
using namespace det; using namespace det;
class YOLOv8 { class YOLOv8 {

@ -1,9 +1,9 @@
// //
// Created by ubuntu on 1/20/23. // Created by ubuntu on 1/20/23.
// //
#include "chrono"
#include "opencv2/opencv.hpp" #include "opencv2/opencv.hpp"
#include "yolov8.hpp" #include "yolov8.hpp"
#include <chrono>
namespace fs = ghc::filesystem; namespace fs = ghc::filesystem;

Loading…
Cancel
Save