Skip to content

Commit

Permalink
v5.0.0: Major Upgrade for TensorRT-YOLO - Performance Boost and New M…
Browse files Browse the repository at this point in the history
…odels
  • Loading branch information
laugh12321 committed Nov 21, 2024
1 parent 687b8ea commit 8a7af40
Show file tree
Hide file tree
Showing 37 changed files with 644 additions and 133 deletions.
44 changes: 22 additions & 22 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
# Xmake Cache
# Build Cache
.xmake/
build/

# build libs
lib/
tensorrt_yolo/libs/

# VSCode Cache
.vscode

# Python Cache
__pycache__/


# output Cache
output/

# demo images
demo/**/*.jpg
demo/**/*.jpeg
demo/**/*.png
demo/**/*.gif
demo/**/*.bmp
demo/**/*.tiff
demo/**/*.webp

# demo models
demo/**/*.pt
demo/**/*.onnx
demo/**/*.engine
venv/

# python package
dist/
tensorrt_yolo.egg-info/
tensorrt_yolo/c_lib_wrap.py

# build libs
lib/
tensorrt_yolo/libs/
# output Cache
output/

# example images
examples/**/*.jpg
examples/**/*.jpeg
examples/**/*.png
examples/**/*.gif
examples/**/*.bmp
examples/**/*.tiff
examples/**/*.webp

# example models
examples/**/*.pt
examples/**/*.onnx
examples/**/*.engine
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
cmake_minimum_required(VERSION 3.15.0) # 设置CMake的最低版本要求
cmake_policy(SET CMP0091 NEW) # 允许在CMake 3.10+中自动设置项目名作为二进制目录名
cmake_policy(SET CMP0146 OLD) # 忽略对find_package的过时警告
project(TensorRT-YOLO VERSION 4.3.0 LANGUAGES CXX CUDA) # 定义项目名称、版本和使用的编程语言(C++和CUDA)
project(TensorRT-YOLO VERSION 5.0.0 LANGUAGES CXX CUDA) # 定义项目名称、版本和使用的编程语言(C++和CUDA)

# 设置 C++ 标准
set(CMAKE_CXX_STANDARD 17) # 设置C++标准为17
Expand Down
Loading

0 comments on commit 8a7af40

Please sign in to comment.