From 23848ec65ab30aa5abc0512a0645d016a82fb9d0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=D0=94=D0=B8=D0=BB=D1=88=D0=BE=D0=B4=D0=B6=D0=BE=D0=BD=20?= =?utf8?q?=D0=A3=D0=BC=D1=80=D0=BE=D0=BD=D1=85=D0=BE=D0=BD=D0=BE=D0=B2?= =?utf8?q?=D0=B8=D1=87=20=D0=9F=D0=BE=D1=88=D1=88=D0=BE=D0=B5=D0=B2/AI=20T?= =?utf8?q?ools=20Lab=20/SRR/Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Tue, 30 Jul 2019 09:46:01 +0300 Subject: [PATCH] [neurun] Remove hiding _indexed_ranks from Dataflow (#5926) _indexed_ranks is a protected member in both ExecutorBase and Dataflow. ExecutorBase::setIndexedRanks() sets ExecutorBase::_indexed_ranks, but methods in Dataflow uses Dataflow::_indexed_ranks and is always nullptr Signed-off-by: Dilshodzhon Poshshoev --- runtimes/neurun/core/src/exec/DataflowExecutor.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/runtimes/neurun/core/src/exec/DataflowExecutor.h b/runtimes/neurun/core/src/exec/DataflowExecutor.h index 6b1200a..1e5f05c 100644 --- a/runtimes/neurun/core/src/exec/DataflowExecutor.h +++ b/runtimes/neurun/core/src/exec/DataflowExecutor.h @@ -26,7 +26,6 @@ #include "model/OperandIndexSequence.h" #include "model/Index.h" #include "model/Model.h" -#include "model/OperationIndexMap.h" #include "cpp14/memory.h" #include "exec/ExecutorBase.h" @@ -103,9 +102,6 @@ protected: /// @brief Which job runs which op and function. std::unordered_map _job_to_subgraph; - - /// @brief Operation ranks (defines an ordering on ops), provided by an Execution scheduler - std::shared_ptr> _indexed_ranks; }; } // namespace exec -- 2.7.4