Skip to content

Commit 48dcdb8

Browse files
authored
Fix Crash Cases (#3017)
### Problem description Facing Unstable Crash Cases ### What's changed Removed nightly marker Updated test duration cc: @nvukobratTT
1 parent 29693c8 commit 48dcdb8

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.test_durations

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5550,12 +5550,12 @@
55505550
"forge/test/models/pytorch/vision/yolo/test_yolox.py::test_yolox_pytorch[yolox_m]": 174.326,
55515551
"forge/test/models/paddlepaddle/text/bert/test_bert.py::test_bert_sequence_classification[cl-tohoku/bert-base-japanese-input1]": 99.234,
55525552
"forge/test/models/paddlepaddle/vision/alexnet/test_alexnet.py::test_alexnet": 51.897,
5553-
"forge/test/models/paddlepaddle/vision/resnet/test_resnet.py::test_resnet_pd[resnet50]": 198.948,
5553+
"forge/test/models/paddlepaddle/vision/resnet/test_resnet.py::test_resnet_pd[resnet50]": 208.948,
55545554
"forge/test/models/onnx/text/bert/test_bert.py::test_bert_question_answering_onnx[17-phiyodr/bert-large-finetuned-squad2]": 0.625,
55555555
"forge/test/models/onnx/vision/deit/test_deit_onnx.py::test_deit_onnx[facebook/deit-tiny-patch16-224]": 116.24,
55565556
"forge/test/models/onnx/vision/dla/test_dla.py::test_dla_onnx[dla102x2]": 188.084398,
55575557
"forge/test/models/onnx/vision/efficientnet/test_efficientnet.py::test_efficientnet_onnx[efficientnet_b0]": 154.76,
5558-
"forge/test/models/onnx/vision/ghostnet/test_ghostnet_onnx.py::test_ghostnet_onnx[ghostnet_100]": 123.884,
5558+
"forge/test/models/onnx/vision/ghostnet/test_ghostnet_onnx.py::test_ghostnet_onnx[ghostnet_100]": 303.884,
55595559
"forge/test/models/onnx/vision/mobilenetv2/test_mobilenetv1_onnx.py::test_mobilenetv1_onnx[mobilenet_v1]": 20.793,
55605560
"forge/test/operators/pytorch/test_query.py::test_query[no_device-ne-FROM_ANOTHER_OP-None-(1, 1920)-None-None]": 7.495,
55615561
"forge/test/operators/pytorch/test_query.py::test_query[no_device-ne-FROM_ANOTHER_OP-None-(10000, 1)-None-None]": 0.849,
@@ -23584,8 +23584,8 @@
2358423584
"forge/test/models/pytorch/vision/segformer/test_segformer.py::test_segformer_semantic_segmentation_pytorch[b2_finetuned_ade_512_512]": 622.5,
2358523585
"forge/test/models/pytorch/vision/ssd300_vgg16/test_ssd300_vgg16.py::test_ssd300_vgg16[ssd300_vgg16]": 3.882,
2358623586
"forge/test/models/pytorch/vision/swin/test_swin.py::test_swin_v2_tiny_masked[microsoft/swinv2-tiny-patch4-window8-256]": 165.3,
23587-
"forge/test/models/paddlepaddle/multimodal/clip/test_clip.py::test_clip_text[openai/clip-vit-base-patch16]": 69.728,
23588-
"forge/test/models/paddlepaddle/multimodal/clip/test_clip.py::test_clip_vision[openai/clip-vit-base-patch16]": 230.65,
23587+
"forge/test/models/paddlepaddle/multimodal/clip/test_clip.py::test_clip_text[openai/clip-vit-base-patch16]": 99.728,
23588+
"forge/test/models/paddlepaddle/multimodal/clip/test_clip.py::test_clip_vision[openai/clip-vit-base-patch16]": 250.65,
2358923589
"forge/test/models/paddlepaddle/multimodal/clip/test_clip.py::test_clip[openai/clip-vit-base-patch16]": 18.313,
2359023590
"forge/test/models/onnx/vision/efficientnet/test_efficientnet.py::test_efficientnet_onnx[efficientnet_b3]": 268.184081,
2359123591
"forge/test/models/onnx/vision/xception/test_xception_onnx.py::test_xception_onnx[xception71.tf_in1k]": 103.353,

forge/test/models/pytorch/vision/detr/test_detr.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ def test_detr_detection(variant):
9696
)
9797

9898

99-
@pytest.mark.nightly
10099
@pytest.mark.parametrize(
101100
"variant",
102101
[

forge/test/models/pytorch/vision/segformer/test_segformer.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,14 @@ def test_segformer_image_classification_pytorch(variant):
8484

8585

8686
variants_semseg = [
87-
pytest.param(SemSegVariant.B0_FINETUNED),
88-
pytest.param(SemSegVariant.B1_FINETUNED),
87+
pytest.param(SemSegVariant.B0_FINETUNED, marks=pytest.mark.nightly),
88+
pytest.param(SemSegVariant.B1_FINETUNED, marks=pytest.mark.nightly),
8989
pytest.param(SemSegVariant.B2_FINETUNED, marks=pytest.mark.xfail),
9090
pytest.param(SemSegVariant.B3_FINETUNED, marks=pytest.mark.xfail),
9191
pytest.param(SemSegVariant.B4_FINETUNED, marks=pytest.mark.xfail),
9292
]
9393

9494

95-
@pytest.mark.nightly
9695
@pytest.mark.parametrize("variant", variants_semseg)
9796
def test_segformer_semantic_segmentation_pytorch(variant):
9897

0 commit comments

Comments
 (0)