Prevented gather fusion test for dgpu dynamic shape (#17616)
This commit is contained in:
parent
a591514250
commit
de2302a711
@ -211,6 +211,11 @@ INSTANTIATE_TEST_SUITE_P(fusings_gpu, gather_eltwise_activation, ::testing::Valu
|
||||
class gather_eltwise_activation_dynamic : public GatherPrimitiveFusingTest {};
|
||||
TEST_P(gather_eltwise_activation_dynamic, basic) {
|
||||
auto p = GetParam();
|
||||
// Currently, eltwise fusion for dynamic shape + onednn is prevented
|
||||
// To be removed once dynamic shape fusion is allowed for onednn
|
||||
if (engine.get_device_info().supports_immad)
|
||||
return;
|
||||
|
||||
create_topologies(
|
||||
input_layout("input", get_input_layout(p, true)),
|
||||
input_layout("gather_indices", layout{ ov::PartialShape::dynamic(p.indices_shape.size()), p.data_type, format::bfyx }),
|
||||
@ -228,4 +233,4 @@ INSTANTIATE_TEST_SUITE_P(fusings_gpu, gather_eltwise_activation_dynamic, ::testi
|
||||
gather_test_params{ CASE_GATHER_FP32_6, 4, 6 },
|
||||
gather_test_params{ CASE_GATHER_FP16_6, 4, 6 },
|
||||
gather_test_params{ CASE_GATHER_FP16_7, 4, 6 },
|
||||
}));
|
||||
}));
|
||||
|
Loading…
Reference in New Issue
Block a user