fix bang runtime bug after merging distributed branch (#137)

This commit is contained in:
Haojie Wang 2023-09-19 14:10:39 +08:00 committed by GitHub
parent 48ec730579
commit 8f2597a508
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -67,6 +67,10 @@ class BangRuntimeObj : public RuntimeObj {
CNRT_MEM_TRANS_DIR_PEER2PEER));
}
void initComm(const string &, int, int) override { IT_TODO_HALT(); }
CommunicatorObj &getCommunicator() const override { IT_TODO_HALT(); }
private:
void runWithoutSync(const Graph &graph, bool tune, bool profiling) const;
};