- Engine build scripts (FP16/INT8) - Benchmark validation scripts - Result parsing and analysis tools - COCO dataset configuration
18 lines
462 B
Batchfile
18 lines
462 B
Batchfile
@echo off
|
|
echo ============================================
|
|
echo TensorRT Engine Benchmark
|
|
echo Run after: conda activate yolo
|
|
echo ============================================
|
|
|
|
echo.
|
|
echo [1] INT8-640p Speed Test...
|
|
trtexec --loadEngine=yolo11n_int8_b1_8.engine --shapes=images:1x3x640x640 --iterations=100
|
|
|
|
echo.
|
|
echo [2] FP16-480p Speed Test...
|
|
trtexec --loadEngine=yolo11n_fp16_480.engine --shapes=images:1x3x480x480 --iterations=100
|
|
|
|
echo.
|
|
echo Done.
|
|
pause
|