- Engine build scripts (FP16/INT8) - Benchmark validation scripts - Result parsing and analysis tools - COCO dataset configuration
14 lines
368 B
Batchfile
14 lines
368 B
Batchfile
@echo off
|
|
echo ============================================
|
|
echo Test FP16 480p engine with trtexec
|
|
echo ============================================
|
|
|
|
call conda activate yolo
|
|
|
|
echo [TEST] Direct inference with trtexec...
|
|
trtexec --loadEngine=yolo11n_fp16_480.engine --shapes=images:1x3x480x480 --iterations=10 --noDataTransfers --useCudaGraph
|
|
|
|
echo.
|
|
echo Done.
|
|
pause
|