Unverified Commit 70e5973c authored by Scott Cyphers's avatar Scott Cyphers Committed by GitHub

Modernize a pass (#4055)

Co-authored-by: 's avatarSang Ik Lee <sang.ik.lee@intel.com>
parent 6bd90ef4
......@@ -53,13 +53,13 @@ private:
void process_in_place_concat(std::list<std::shared_ptr<Node>> nodes);
// For a chain of concat ops, propagate memory pool offsets
void propagate_in_place_concat(std::shared_ptr<ngraph::op::Op> concat, size_t index);
void propagate_in_place_concat(const ngraph::Output<ngraph::Node>& concat);
// Find in-place slice ops and set appropriate memory pool offset for its output
void process_in_place_slice(std::list<std::shared_ptr<Node>> nodes);
// propagate slice when its arg comes from function input
void propagate_in_place_slice(ngraph::descriptor::Input* input, size_t input_index);
void propagate_in_place_slice(const ngraph::Input<ngraph::Node>& input);
// build buffer sets maps
void build_buffer_sets_maps(std::list<std::shared_ptr<Node>>& ops);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment