Compare commits

...

2 Commits

Author SHA1 Message Date
Glenn Jocher
70fa0f8eb6
Merge 0f917da3c0 into 1aa3688613 2025-09-14 22:51:18 +00:00
Glenn Jocher
1aa3688613
Revert "Re-enable TensorRT export in GPU tests" (#22078)
Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com>
Co-authored-by: UltralyticsAssistant <web@ultralytics.com>
2025-09-14 23:21:11 +01:00

View File

@ -68,7 +68,7 @@ def test_export_onnx_matrix(task, dynamic, int8, half, batch, simplify, nms):
half=half, half=half,
batch=batch, batch=batch,
simplify=simplify, simplify=simplify,
nms=nms, nms=nms and task != "obb", # WARNING: Failing NMS with OBB
device=DEVICES[0], device=DEVICES[0],
) )
YOLO(file)([SOURCE] * batch, imgsz=64 if dynamic else 32, device=DEVICES[0]) # exported model inference YOLO(file)([SOURCE] * batch, imgsz=64 if dynamic else 32, device=DEVICES[0]) # exported model inference
@ -76,6 +76,7 @@ def test_export_onnx_matrix(task, dynamic, int8, half, batch, simplify, nms):
@pytest.mark.slow @pytest.mark.slow
@pytest.mark.skipif(True, reason="WARNING: Failing TensorRT export tests")
@pytest.mark.skipif(not DEVICES, reason="No CUDA devices available") @pytest.mark.skipif(not DEVICES, reason="No CUDA devices available")
@pytest.mark.parametrize( @pytest.mark.parametrize(
"task, dynamic, int8, half, batch", "task, dynamic, int8, half, batch",