Skip to content

Commit 5606d64

Browse files
committed
Skip test cases on unaligned conversion behavior
1 parent 642f783 commit 5606d64

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/plugins/intel_cpu/tests/functional/shared_tests_instances/skip_tests_config.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,12 @@ std::vector<std::string> disabledTestPatterns() {
379379
retVector.emplace_back(R"(.*smoke_RoPETest.*)");
380380
#endif
381381

382+
#if defined(OPENVINO_ARCH_ARM64)
383+
// to align with reference and c++ standard, Snippets PropagatePrecision should insert ConvertTruncation
384+
// instead of ConvertSaturation when converting larger integer to smaller integer
385+
retVector.emplace_back(R"(.*smoke_EltwiseChain_MergeConvert_int8/.*Op0=Prod.*Conversion=i8.*)");
386+
#endif
387+
382388
#if defined(OPENVINO_ARCH_RISCV64)
383389
// unsupported node type 'CausalMaskPreprocess'
384390
retVector.emplace_back(R"(CausalMaskPreprocessCausalMaskPreprocess.smoke_CompareWithRefs)");

0 commit comments

Comments
 (0)