@@ -342,6 +342,7 @@ std::vector<Params> get_test_params() {
342
342
p.push_back ({with_rearrange, with_mask, !with_scale, !causal, !compressed, 1 , ov::element::Type_t::f16, 10 , 4 , 1 , {0 , 1 , 2 , 3 }});
343
343
p.push_back ({with_rearrange, with_mask, !with_scale, !causal, !compressed, 1 , ov::element::Type_t::f16, 10 , 4 , 1 , {0 , 2 , 1 , 3 }});
344
344
p.push_back ({!with_rearrange, with_mask, !with_scale, !causal, !compressed, 1 , ov::element::Type_t::f16, 10 , 4 , 1 , {0 , 2 , 1 , 3 }});
345
+ p.push_back ({!with_rearrange, with_mask, !with_scale, !causal, !compressed, 1 , ov::element::Type_t::f16, 10 , 4 , 1 , {1 , 2 , 0 , 3 }});
345
346
346
347
// Beam search
347
348
p.push_back ({with_rearrange, !with_mask, !with_scale, !causal, !compressed, 2 , ov::element::Type_t::f16, 10 , 4 , 1 , {0 , 1 , 2 , 3 }});
@@ -351,6 +352,7 @@ std::vector<Params> get_test_params() {
351
352
p.push_back ({with_rearrange, with_mask, !with_scale, !causal, compressed, 1 , ov::element::Type_t::f16, 10 , 1 , 1 , {0 , 1 , 2 , 3 }});
352
353
p.push_back ({with_rearrange, with_mask, !with_scale, !causal, compressed, 1 , ov::element::Type_t::f16, 10 , 4 , 1 , {0 , 2 , 1 , 3 }});
353
354
p.push_back ({with_rearrange, with_mask, !with_scale, !causal, compressed, 1 , ov::element::Type_t::f16, 10 , 4 , 1 , {0 , 1 , 2 , 3 }});
355
+ p.push_back ({with_rearrange, with_mask, !with_scale, !causal, compressed, 1 , ov::element::Type_t::f16, 10 , 4 , 1 , {1 , 2 , 0 , 3 }});
354
356
355
357
/* -- causal mask -- */
356
358
@@ -367,6 +369,8 @@ std::vector<Params> get_test_params() {
367
369
p.push_back ({with_rearrange, with_mask, !with_scale, causal, compressed, 1 , ov::element::Type_t::f16, 10 , 1 , 1 , {0 , 1 , 2 , 3 }});
368
370
p.push_back ({with_rearrange, with_mask, !with_scale, causal, compressed, 1 , ov::element::Type_t::f16, 10 , 4 , 1 , {0 , 2 , 1 , 3 }});
369
371
p.push_back ({with_rearrange, with_mask, !with_scale, causal, compressed, 1 , ov::element::Type_t::f16, 10 , 4 , 1 , {0 , 1 , 2 , 3 }});
372
+ p.push_back ({with_rearrange, with_mask, !with_scale, causal, compressed, 1 , ov::element::Type_t::f16, 10 , 4 , 1 , {1 , 2 , 0 , 3 }});
373
+
370
374
return p;
371
375
}
372
376
0 commit comments