Skip to content

Commit 01ceeb8

Browse files
authored
[CPU]Fix heap buffer overflow in DenormalNullifyCheck (openvinotoolkit#27047)
### Details: - *try to fix the SEH abort in windows test* ### Tickets: - *CVS-150527*
1 parent 03773f7 commit 01ceeb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/intel_cpu/tests/functional/custom/subgraph_tests/src/common/denormal_check.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ void SetUp() override {
3636
targetStaticShapes.push_back({inpShape});
3737
targetDevice = ov::test::utils::DEVICE_CPU;
3838

39-
const auto elemsCount = shape_size(inpShape);
4039
const auto rtPrc = ov::element::f32;
40+
const auto elemsCount = shape_size(inpShape) * rtPrc.size();
4141
ov::ParameterVector params {std::make_shared<ov::op::v0::Parameter>(rtPrc, ov::Shape(inpShape))};
4242
pConstStorage.reset(new ov::AlignedBuffer(elemsCount, alignment));
4343

0 commit comments

Comments
 (0)