Skip to content

Commit

Permalink
Fix old gcc build
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnick committed May 2, 2024
1 parent e03f017 commit 2f334da
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/plugins/intel_cpu/src/nodes/memory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ class MemoryOutputBase : public Node, public MemoryNode {
return getType() == Type::MemoryOutput;
}

void execute(dnnl::stream strm) final;
void executeDynamicImpl(dnnl::stream strm) final;
bool isExecutable() const final;
void execute(dnnl::stream strm) override final; // NOLINT
void executeDynamicImpl(dnnl::stream strm) override final; // NOLINT
bool isExecutable() const override final; // NOLINT

void registerInputNode(MemoryInputBase* node);
void deregisterSibling(MemoryInputBase* node);
Expand Down Expand Up @@ -140,17 +140,17 @@ class MemoryInputBase : public Input, public MemoryStateNode {

void initSupportedPrimitiveDescriptors() override;

void execute(dnnl::stream strm) final;
void executeDynamicImpl(dnnl::stream strm) final;
void execute(dnnl::stream strm) override final; // NOLINT
void executeDynamicImpl(dnnl::stream strm) override final; // NOLINT
bool needShapeInfer() const override { return false; }
bool needPrepareParams() const override { return false; }
bool isExecutable() const final;
bool isExecutable() const override final; // NOLINT

void registerOutputNode(MemoryOutputBase* node);
void deregisterSibling(MemoryOutputBase* node);

MemoryOutputBase& getOutputNode();
void assignState(MemStatePtr newState) final;
void assignState(MemStatePtr newState) override final; // NOLINT

protected:
virtual void runStatic(dnnl::stream strm) = 0;
Expand Down

0 comments on commit 2f334da

Please sign in to comment.