@@ -82,7 +82,7 @@ class MemoryStub : public IMemory {
8282 m_pMemDesc = desc;
8383 }
8484
85- void load (const IMemory& src, bool ftz, bool bf16saturation = false ) const override {
85+ void load (const IMemory& src, bool ftz, bool bf16saturation) const override {
8686 OPENVINO_THROW (" Unexpected call MemoryStub::load()" );
8787 }
8888
@@ -306,7 +306,7 @@ void MemoryOutput::runStatic(dnnl::stream strm) {
306306 CPU_NODE_ASSERT (assignedMem, " uninitialized assigned memory" );
307307
308308 if (inputMem->getData () != assignedMem->getData ()) {
309- assignedMem->load (*inputMem, true );
309+ assignedMem->load (*inputMem, true , false );
310310 }
311311}
312312
@@ -811,7 +811,7 @@ void MemoryInput::runDynamic(dnnl::stream strm) {
811811
812812 // copy data when necessary
813813 if (src->getData () != dst->getData ()) {
814- dst->load (*src, true );
814+ dst->load (*src, true , false );
815815 }
816816}
817817
@@ -855,7 +855,7 @@ void MemoryInput::runStatic(dnnl::stream strm) {
855855 // copy data when necessary
856856 auto dst = getDstMemoryAtPort (0 );
857857 if (src->getData () != dst->getData ()) {
858- dst->load (*src, true );
858+ dst->load (*src, true , false );
859859 }
860860}
861861
@@ -1068,7 +1068,7 @@ void MemoryInputSingle::runStatic(dnnl::stream strm) {
10681068 auto stateMem = getAssignedState ()->output_mem ();
10691069 CPU_NODE_ASSERT (stateMem, " state memory has nullptr" );
10701070 if (result->getData () != stateMem->getData ()) {
1071- stateMem->load (*result, true );
1071+ stateMem->load (*result, true , false );
10721072 }
10731073 }
10741074 getAssignedState ()->commit (); // since we don't use MemoryOutput, commit must be called to change the reset state
@@ -1093,7 +1093,7 @@ void MemoryInputSingle::runDynamic(dnnl::stream strm) {
10931093 }
10941094
10951095 if (result->getData () != stateMem->getData ()) {
1096- stateMem->load (*result, true );
1096+ stateMem->load (*result, true , false );
10971097 }
10981098 }
10991099 getAssignedState ()->commit (); // since we don't use MemoryOutput, commit must be called to change the reset state
0 commit comments