Skip to content

Commit 3c7f2af

Browse files
authored
[GPU] Enable skipped unit tests for latest driver (openvinotoolkit#28842)
### Tickets: - *160644*
1 parent 20e3872 commit 3c7f2af

8 files changed

+8
-53
lines changed

src/plugins/intel_gpu/tests/unit/fusions/fully_connected_fusion_test.cpp

-7
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,6 @@ class fc_int8_inputs_fused_fp32_sum : public FullyConnectedFusingTestOneDNN {
536536
};
537537

538538
TEST_P(fc_int8_inputs_fused_fp32_sum, basic) {
539-
GTEST_SKIP();
540539
run_test(false);
541540
}
542541

@@ -572,12 +571,10 @@ class fc_fp16_eltwise_add : public FullyConnectedFusingTestOneDNN {
572571
};
573572

574573
TEST_P(fc_fp16_eltwise_add, basic) {
575-
GTEST_SKIP();
576574
run_test(false);
577575
}
578576

579577
TEST_P(fc_fp16_eltwise_add, basic_cached) {
580-
GTEST_SKIP();
581578
run_test(true);
582579
}
583580

@@ -743,7 +740,6 @@ class fc_fp16_eltwise_sub : public FullyConnectedFusingTestOneDNN {
743740
};
744741

745742
TEST_P(fc_fp16_eltwise_sub, basic) {
746-
GTEST_SKIP();
747743
run_test(false);
748744
}
749745

@@ -779,7 +775,6 @@ class fc_fp16_eltwise_prod : public FullyConnectedFusingTestOneDNN {
779775
};
780776

781777
TEST_P(fc_fp16_eltwise_prod, basic) {
782-
GTEST_SKIP();
783778
run_test(false);
784779
}
785780

@@ -815,7 +810,6 @@ class fc_fp16_eltwise_sum : public FullyConnectedFusingTestOneDNN {
815810
};
816811

817812
TEST_P(fc_fp16_eltwise_sum, basic) {
818-
GTEST_SKIP();
819813
run_test(false);
820814
}
821815

@@ -833,7 +827,6 @@ INSTANTIATE_TEST_SUITE_P(fusings_gpu, fc_fp16_eltwise_sum, ::testing::ValuesIn(s
833827

834828
class fc_fp32_activation_prelu : public FullyConnectedFusingTestOneDNN {};
835829
TEST_P(fc_fp32_activation_prelu, basic) {
836-
GTEST_SKIP();
837830
auto p = GetParam();
838831
create_topologies(
839832
input_layout("input", get_input_layout(p)),

src/plugins/intel_gpu/tests/unit/fusions/gemm_fusion_test.cpp

-5
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,6 @@ TEST_P(gemm_2in_scale, basic) {
269269
}
270270

271271
TEST_P(gemm_2in_scale, fp16_scale_out) {
272-
GTEST_SKIP();
273272
auto p = GetParam();
274273
create_topologies(
275274
input_layout("input0", get_input_layout(p, 0)),
@@ -300,7 +299,6 @@ INSTANTIATE_TEST_SUITE_P(fusings_gpu, gemm_2in_scale, ::testing::ValuesIn(std::v
300299

301300
class gemm_2in_add : public GemmFusingTest {};
302301
TEST_P(gemm_2in_add, eltwise_postop_static) {
303-
GTEST_SKIP();
304302
auto p = GetParam();
305303

306304
if (engine.get_device_info().supports_immad) {
@@ -333,7 +331,6 @@ TEST_P(gemm_2in_add, eltwise_postop_static) {
333331
}
334332

335333
TEST_P(gemm_2in_add, eltwise_postop_dynamic) {
336-
GTEST_SKIP();
337334
auto p = GetParam();
338335

339336
if (engine.get_device_info().supports_immad) {
@@ -370,7 +367,6 @@ TEST_P(gemm_2in_add, eltwise_postop_dynamic) {
370367
}
371368

372369
TEST_P(gemm_2in_add, eltwise_postop_cached) {
373-
GTEST_SKIP();
374370
auto p = GetParam();
375371

376372
if (engine.get_device_info().supports_immad) {
@@ -568,7 +564,6 @@ INSTANTIATE_TEST_SUITE_P(fusings_gpu, gemm_2in_act_scale_quantize_i8, ::testing:
568564

569565
class gemm_2in_act_scale_quantize_eltwise_i8 : public GemmFusingTest {};
570566
TEST_P(gemm_2in_act_scale_quantize_eltwise_i8, basic) {
571-
GTEST_SKIP();
572567
auto p = GetParam();
573568
create_topologies(
574569
input_layout("input0", get_input_layout(p, 0)),

src/plugins/intel_gpu/tests/unit/passes/clamp_fp16_output_test.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ using namespace cldnn;
2020
using namespace ::tests;
2121

2222
TEST(clamp_fp16_output_test, test_gemm_softmax_simple) {
23-
GTEST_SKIP();
2423
auto& engine = get_test_engine();
2524
ov::Shape in1_shape = { 1, 1, 3, 4 };
2625
ov::Shape in2_shape = { 1, 4 };
@@ -79,7 +78,6 @@ TEST(clamp_fp16_output_test, test_gemm_softmax_simple) {
7978
}
8079

8180
TEST(clamp_fp16_output_test, test_gemm_softmax_mult_fused) {
82-
GTEST_SKIP();
8381
auto& engine = get_test_engine();
8482
ov::Shape in1_shape = { 1, 1, 3, 4 };
8583
ov::Shape in2_shape = { 1, 4 };

src/plugins/intel_gpu/tests/unit/passes/prepare_buffer_fusing_test.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -916,7 +916,6 @@ TEST(prepare_buffer_fusing, in_place_crop_dynamic_reshape_unsqueeze) {
916916
}
917917

918918
TEST(prepare_buffer_fusing, in_place_crop_dynamic_reshape_squeeze_crop_axis) {
919-
GTEST_SKIP();
920919
auto& engine = get_test_engine();
921920
tests::random_generator rg(GET_SUITE_NAME);
922921

src/plugins/intel_gpu/tests/unit/passes/prepare_primitive_fusing_test.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ TEST(prepare_primitive_fusing, fuse_eltwise_to_fc_dyn_legal) {
113113
}
114114

115115
TEST(prepare_primitive_fusing, fuse_eltwise_to_fc_dyn_illegal) {
116-
GTEST_SKIP();
117116
auto& engine = get_test_engine();
118117
auto weights = engine.allocate_memory({ ov::PartialShape{ 2, 10 }, data_types::u8, format::bfyx });
119118
auto in_layout = layout{ ov::PartialShape::dynamic(2), data_types::u8, format::bfyx };
@@ -166,7 +165,6 @@ TEST(prepare_primitive_fusing, fuse_eltwise_to_fc_dyn_illegal) {
166165
}
167166

168167
TEST(prepare_primitive_fusing, fuse_eltwise_to_fc_dyn_illegal_const) {
169-
GTEST_SKIP();
170168
auto& engine = get_test_engine();
171169
auto weights = engine.allocate_memory({ ov::PartialShape{ 2, 10 }, data_types::u8, format::bfyx });
172170
auto in_layout = layout{ ov::PartialShape::dynamic(2), data_types::u8, format::bfyx };
@@ -540,7 +538,6 @@ TEST(prepare_primitive_fusing, fuse_constant_transposes_removal_check) {
540538
}
541539

542540
TEST(prepare_primitive_fusing, fuse_constant_transposes_accuracy_test) {
543-
GTEST_SKIP();
544541
auto& engine = get_test_engine();
545542

546543
auto input = engine.allocate_memory({ { 2, 32 }, data_types::f16, format::bfyx });
@@ -590,7 +587,6 @@ TEST(prepare_primitive_fusing, fuse_constant_transposes_accuracy_test) {
590587
}
591588

592589
TEST(prepare_primitive_fusing, can_profiling_data_when_fuse_illegal) {
593-
GTEST_SKIP();
594590
auto& engine = get_test_engine();
595591
auto weights = engine.allocate_memory({ov::PartialShape{2, 10}, data_types::u8, format::bfyx});
596592
auto in_layout = layout{ov::PartialShape::dynamic(2), data_types::u8, format::bfyx};

src/plugins/intel_gpu/tests/unit/test_cases/convolution_gpu_test.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -4645,7 +4645,6 @@ TEST(convolution_int8_fw_gpu, quantized_convolution_u8s8f32_asymmetric_activatio
46454645
}
46464646

46474647
TEST(convolution_int8_fw_gpu, quantized_convolution_u8s8f32_asymmetric_activations_per_channel_dynamic) {
4648-
GTEST_SKIP();
46494648
auto& engine = get_test_engine();
46504649

46514650
auto input = engine.allocate_memory({ data_types::u8, format::bfyx, {1, 2, 5, 4} });

src/plugins/intel_gpu/tests/unit/test_cases/fully_connected_gpu_test.cpp

-24
Original file line numberDiff line numberDiff line change
@@ -3175,7 +3175,6 @@ INSTANTIATE_TEST_SUITE_P(
31753175
);
31763176

31773177
TEST_P(fully_connected_random_test_f16, basic) {
3178-
GTEST_SKIP();
31793178
run_test();
31803179
}
31813180

@@ -3354,7 +3353,6 @@ INSTANTIATE_TEST_SUITE_P(
33543353
);
33553354

33563355
TEST_P(fully_connected_random_test_i8_3d, basic) {
3357-
GTEST_SKIP();
33583356
run_test();
33593357
}
33603358

@@ -3664,32 +3662,26 @@ using fully_connected_u8_u8_test = fc_quantized_random_test<uint8_t, uint8_t>;
36643662
using fully_connected_u8_f32_test = fc_quantized_random_test<uint8_t, float>;
36653663

36663664
TEST_P(fully_connected_i8_i8_test, random) {
3667-
GTEST_SKIP();
36683665
run_random_test();
36693666
}
36703667

36713668
TEST_P(fully_connected_i8_u8_test, random) {
3672-
GTEST_SKIP();
36733669
run_random_test();
36743670
}
36753671

36763672
TEST_P(fully_connected_i8_f32_test, random) {
3677-
GTEST_SKIP();
36783673
run_random_test();
36793674
}
36803675

36813676
TEST_P(fully_connected_u8_i8_test, random) {
3682-
GTEST_SKIP();
36833677
run_random_test();
36843678
}
36853679

36863680
TEST_P(fully_connected_u8_u8_test, random) {
3687-
GTEST_SKIP();
36883681
run_random_test();
36893682
}
36903683

36913684
TEST_P(fully_connected_u8_f32_test, random) {
3692-
GTEST_SKIP();
36933685
run_random_test();
36943686
}
36953687

@@ -4012,7 +4004,6 @@ TEST_F(fully_connected_gpu_tests, compressed_scale_zp_bias_cached) {
40124004
}
40134005

40144006
TEST_F(fully_connected_gpu_tests, compressed_int4_scale) {
4015-
GTEST_SKIP();
40164007
this->test_compressed_int4_scale(false, false, 256);
40174008
}
40184009

@@ -4045,7 +4036,6 @@ TEST_F(fully_connected_gpu_tests, compressed_int4_reuse_scale) {
40454036
}
40464037

40474038
TEST_F(fully_connected_gpu_tests, compressed_int4_scale_cached) {
4048-
GTEST_SKIP();
40494039
this->test_compressed_int4_scale(true, false, 256);
40504040
}
40514041

@@ -4062,7 +4052,6 @@ TEST_F(fully_connected_gpu_tests, compressed_int4_scale_dynamic_cached) {
40624052
}
40634053

40644054
TEST_F(fully_connected_gpu_tests, compressed_int4_scale_dynamic_b1g32) {
4065-
GTEST_SKIP();
40664055
this->test_compressed_int4_scale(false, true, 1, 32);
40674056
}
40684057

@@ -4071,22 +4060,18 @@ TEST_F(fully_connected_gpu_tests, compressed_int4_scale_dynamic_b48g32) {
40714060
}
40724061

40734062
TEST_F(fully_connected_gpu_tests, compressed_int4_scale_dynamic_b1g64) {
4074-
GTEST_SKIP();
40754063
this->test_compressed_int4_scale(false, true, 1, 64);
40764064
}
40774065

40784066
TEST_F(fully_connected_gpu_tests, compressed_int4_scale_dynamic_b1g128) {
4079-
GTEST_SKIP();
40804067
this->test_compressed_int4_scale(false, true, 1, 128);
40814068
}
40824069

40834070
TEST_F(fully_connected_gpu_tests, compressed_int4_scale_b1g32) {
4084-
GTEST_SKIP();
40854071
this->test_compressed_int4_scale(false, false, 1, 32);
40864072
}
40874073

40884074
TEST_F(fully_connected_gpu_tests, compressed_int4_scale_b1g64) {
4089-
GTEST_SKIP();
40904075
this->test_compressed_int4_scale(false, false, 1, 64);
40914076
}
40924077

@@ -4278,7 +4263,6 @@ TEST_F(fully_connected_gpu_tests, compressed_int8_scale_zp_scalar) {
42784263
}
42794264

42804265
TEST_F(fully_connected_gpu_tests, compressed_int8_scale_b1) {
4281-
GTEST_SKIP();
42824266
this->test_compressed_int8_scale(false, true, 1, false, false);
42834267
}
42844268

@@ -4295,7 +4279,6 @@ TEST_F(fully_connected_gpu_tests, compressed_int8_scale_cached) {
42954279
}
42964280

42974281
TEST_F(fully_connected_gpu_tests, compressed_int8_scale_zp_b1) {
4298-
GTEST_SKIP();
42994282
this->test_compressed_int8_scale(false, true, 1, false, true);
43004283
}
43014284

@@ -4471,17 +4454,14 @@ static const std::vector<ov::Dimension::value_type>
44714454
dyn_batches_smoke = {1, 2, 7, 8, 9, 16, 32, 33, 47, 48, 58};
44724455

44734456
TEST_P(dynamic_fully_connected_gpu_f32_3d, basic) {
4474-
GTEST_SKIP();
44754457
run_test();
44764458
}
44774459

44784460
TEST_P(dynamic_fully_connected_gpu_f16_3d, basic) {
4479-
GTEST_SKIP();
44804461
run_test();
44814462
}
44824463

44834464
TEST_P(dynamic_fully_connected_gpu_i8_3d, basic) {
4484-
GTEST_SKIP();
44854465
run_test();
44864466
}
44874467

@@ -4752,12 +4732,10 @@ using fully_connected_types_u8_u8_test = fc_random_types_test<uint8_t, uint8_t>;
47524732
using fully_connected_types_u8_f32_test = fc_random_types_test<uint8_t, float>;
47534733

47544734
TEST_P(fully_connected_types_i8_i8_test, random) {
4755-
GTEST_SKIP();
47564735
run_random_test();
47574736
}
47584737

47594738
TEST_P(fully_connected_types_i8_u8_test, random) {
4760-
GTEST_SKIP();
47614739
run_random_test();
47624740
}
47634741

@@ -4766,12 +4744,10 @@ TEST_P(fully_connected_types_i8_f32_test, random) {
47664744
}
47674745

47684746
TEST_P(fully_connected_types_u8_i8_test, random) {
4769-
GTEST_SKIP();
47704747
run_random_test();
47714748
}
47724749

47734750
TEST_P(fully_connected_types_u8_u8_test, random) {
4774-
GTEST_SKIP();
47754751
run_random_test();
47764752
}
47774753

src/plugins/intel_gpu/tests/unit/test_cases/gemm_gpu_test.cpp

+8-9
Original file line numberDiff line numberDiff line change
@@ -2750,7 +2750,6 @@ class GemmOneDNNTest : public ::testing::TestWithParam<T> {
27502750

27512751
class gemm_onednn_ndims : public GemmOneDNNTest<gemm_onednn_test_params> {};
27522752
TEST_P(gemm_onednn_ndims, basic) {
2753-
GTEST_SKIP();
27542753
if (!engine.get_device_info().supports_immad)
27552754
return;
27562755

@@ -3303,7 +3302,7 @@ INSTANTIATE_TEST_SUITE_P(gemm_gpu, gemm_int8_simple_tests_onednn, ::testing::Val
33033302
}));
33043303

33053304
class gemm_uint8_simple_tests_onednn : public ::GemmBaseOneDNNTest<gemm_base_test_params, uint8_t, int8_t, float, float, int32_t> {};
3306-
TEST_P(gemm_uint8_simple_tests_onednn, basic) { GTEST_SKIP(); auto p = GetParam(); execute(p); }
3305+
TEST_P(gemm_uint8_simple_tests_onednn, basic) { auto p = GetParam(); execute(p); }
33073306

33083307
INSTANTIATE_TEST_SUITE_P(gemm_gpu, gemm_uint8_simple_tests_onednn, ::testing::ValuesIn(std::vector <gemm_base_test_params> {
33093308
gemm_base_test_params{ CASE_GEMM_UINT8_ONEDNN_1, "" },
@@ -3313,7 +3312,7 @@ INSTANTIATE_TEST_SUITE_P(gemm_gpu, gemm_uint8_simple_tests_onednn, ::testing::Va
33133312
}));
33143313

33153314
class gemm_fp16_simple_tests_onednn : public ::GemmBaseOneDNNTest<gemm_base_test_params, ov::float16, ov::float16, ov::float16, ov::float16, ov::float16> {};
3316-
TEST_P(gemm_fp16_simple_tests_onednn, basic) { GTEST_SKIP(); auto p = GetParam(); execute(p); }
3315+
TEST_P(gemm_fp16_simple_tests_onednn, basic) { auto p = GetParam(); execute(p); }
33173316

33183317
INSTANTIATE_TEST_SUITE_P(gemm_gpu, gemm_fp16_simple_tests_onednn, ::testing::ValuesIn(std::vector <gemm_base_test_params> {
33193318
gemm_base_test_params{ CASE_GEMM_FP16_ONEDNN_1, "" },
@@ -3363,7 +3362,7 @@ INSTANTIATE_TEST_SUITE_P(gemm_gpu, gemm_uint8_transposition_tests_onednn, ::test
33633362
}));
33643363

33653364
class gemm_fp16_transposition_tests_onednn : public ::GemmBaseOneDNNTest<gemm_base_test_params, ov::float16, ov::float16, ov::float16, ov::float16, ov::float16> {};
3366-
TEST_P(gemm_fp16_transposition_tests_onednn, basic) { GTEST_SKIP(); auto p = GetParam(); execute(p); }
3365+
TEST_P(gemm_fp16_transposition_tests_onednn, basic) { auto p = GetParam(); execute(p); }
33673366

33683367
INSTANTIATE_TEST_SUITE_P(gemm_gpu, gemm_fp16_transposition_tests_onednn, ::testing::ValuesIn(std::vector <gemm_base_test_params> {
33693368
gemm_base_test_params{ CASE_GEMM_FP16_NN_TRANSPOSITION_ONEDNN, "" },
@@ -3373,7 +3372,7 @@ INSTANTIATE_TEST_SUITE_P(gemm_gpu, gemm_fp16_transposition_tests_onednn, ::testi
33733372
}));
33743373

33753374
class gemm_fp32_transposition_tests_onednn : public ::GemmBaseOneDNNTest<gemm_base_test_params, float, float, float, float, float> {};
3376-
TEST_P(gemm_fp32_transposition_tests_onednn, basic) { GTEST_SKIP(); auto p = GetParam(); execute(p); }
3375+
TEST_P(gemm_fp32_transposition_tests_onednn, basic) { auto p = GetParam(); execute(p); }
33773376

33783377
INSTANTIATE_TEST_SUITE_P(gemm_gpu, gemm_fp32_transposition_tests_onednn, ::testing::ValuesIn(std::vector <gemm_base_test_params> {
33793378
gemm_base_test_params{ CASE_GEMM_FP32_NN_TRANSPOSITION_ONEDNN, "" },
@@ -3623,12 +3622,12 @@ TEST_P(GemmGPUTestRandom, basic_cached) {
36233622

36243623
#ifdef ENABLE_ONEDNN_FOR_GPU
36253624
TEST_P(gemm_int8_simple_tests_onednn, basic_cached) { auto p = GetParam(); execute(p, true); }
3626-
TEST_P(gemm_uint8_simple_tests_onednn, basic_cached) { GTEST_SKIP(); auto p = GetParam(); execute(p, true); }
3627-
TEST_P(gemm_fp16_simple_tests_onednn, basic_cached) { GTEST_SKIP(); auto p = GetParam(); execute(p, true); }
3628-
TEST_P(gemm_fp32_simple_tests_onednn, basic_cached) { GTEST_SKIP(); auto p = GetParam(); execute(p, true); }
3625+
TEST_P(gemm_uint8_simple_tests_onednn, basic_cached) { auto p = GetParam(); execute(p, true); }
3626+
TEST_P(gemm_fp16_simple_tests_onednn, basic_cached) { auto p = GetParam(); execute(p, true); }
3627+
TEST_P(gemm_fp32_simple_tests_onednn, basic_cached) { auto p = GetParam(); execute(p, true); }
36293628
TEST_P(gemm_int8_transposition_tests_onednn, basic_cached) { auto p = GetParam(); execute(p, true); }
36303629
TEST_P(gemm_uint8_transposition_tests_onednn, basic_cached) { auto p = GetParam(); execute(p, true); }
3631-
TEST_P(gemm_fp16_transposition_tests_onednn, basic_cached) { GTEST_SKIP(); auto p = GetParam(); execute(p, true); }
3630+
TEST_P(gemm_fp16_transposition_tests_onednn, basic_cached) { auto p = GetParam(); execute(p, true); }
36323631
TEST_P(gemm_fp32_transposition_tests_onednn, basic_cached) { auto p = GetParam(); execute(p, true); }
36333632
TEST_P(gemm_int8_broadcasting_tests_onednn, basic_cached) { auto p = GetParam(); execute(p, true); }
36343633
TEST_P(gemm_fp16_broadcasting_tests_onednn, basic_cached) { auto p = GetParam(); execute(p, true); }

0 commit comments

Comments
 (0)