From 0141a4a2bcd0d88ba9ed5c75bc9756dce2433830 Mon Sep 17 00:00:00 2001 From: Anton Voronov Date: Thu, 10 Aug 2023 15:30:31 +0000 Subject: [PATCH] small review fix --- .../functional/subgraph_tests/src/matmul_decompress_convert.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/intel_cpu/tests/functional/subgraph_tests/src/matmul_decompress_convert.cpp b/src/plugins/intel_cpu/tests/functional/subgraph_tests/src/matmul_decompress_convert.cpp index 4d80b2ba55e60b..d61280efc5ec9e 100644 --- a/src/plugins/intel_cpu/tests/functional/subgraph_tests/src/matmul_decompress_convert.cpp +++ b/src/plugins/intel_cpu/tests/functional/subgraph_tests/src/matmul_decompress_convert.cpp @@ -381,7 +381,7 @@ INSTANTIATE_TEST_SUITE_P(smoke_FC_3D_BF16, MatMulDecompressConvertTest, testPara } // namespace -/* In case of Convert has 2 or more childs there is a problem with memory allocation in CPU plug-in (see Edge::init() method). +/* In case of Convert has 2 or more consumers there is a problem with memory allocation in CPU plug-in (see Edge::init() method). Maybe we can just remove the check (edgePtr->getParent()->isConstant() && !edgePtr->getChild()->isConstant()) and everything will be OK, But this solution should be additionally checked. For now, for these cases we will not be doing CF on the CPU side and it should be done on the ngraph side.