From 0d27b2ee8d811d66693555ac1e7be44d93e662e2 Mon Sep 17 00:00:00 2001 From: Jakub Sujak Date: Thu, 24 Aug 2023 14:01:20 +0100 Subject: Remove legacy PostOps code PostOps was the experimental interface for Dynamic Fusion. It is now replaced by the new Dynamic Fusion interface with code generation using the Compute Kernel Writer. Resolves: COMPMID-6190 Change-Id: I813b48facef2fd6f3aee332588886b4f9b3d33d8 Signed-off-by: Jakub Sujak Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10219 Benchmark: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: SiCong Li Comments-Addressed: Arm Jenkins --- src/graph/INode.cpp | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) (limited to 'src/graph/INode.cpp') diff --git a/src/graph/INode.cpp b/src/graph/INode.cpp index e5b4adda26..70fe44e134 100644 --- a/src/graph/INode.cpp +++ b/src/graph/INode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018,2021 Arm Limited. + * Copyright (c) 2018,2021,2023 Arm Limited. * * SPDX-License-Identifier: MIT * @@ -37,7 +37,6 @@ namespace graph INode::INode() : _graph(nullptr), _id(EmptyNodeID), _common_params({ "", Target::UNSPECIFIED}), _outputs(), _input_edges(), _output_edges(), _assigned_target(Target::UNSPECIFIED) - ,_post_op_info_list(std::list> {}) { } // clang-format on @@ -200,15 +199,5 @@ Target INode::assigned_target() const { return _assigned_target; } - -const std::list> &INode::post_op_info_list() const -{ - return _post_op_info_list; -} - -std::list> &INode::post_op_info_list() -{ - return _post_op_info_list; -} } // namespace graph -} // namespace arm_compute \ No newline at end of file +} // namespace arm_compute -- cgit v1.2.1