Skip to content

Commit

Permalink
NewMemoryBuffer constructor fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
v-Golubev committed Nov 23, 2023
1 parent 0fda262 commit 7fcdce2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/snippets/src/op/buffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ std::shared_ptr<Node> IntermediateMemoryBuffer::clone_with_new_inputs(const Outp
}

NewMemoryBuffer::NewMemoryBuffer(const ov::Shape& shape, size_t id, ov::element::Type element_type)
: Buffer({}, shape, id) {
: Buffer({}, shape, id, element_type) {
constructor_validate_and_infer_types();
}

Expand Down

0 comments on commit 7fcdce2

Please sign in to comment.