Commit ec25f5fd authored by fenglei's avatar fenglei

not supported in MlSL

parent 2b4989ed
...@@ -138,6 +138,22 @@ namespace ngraph ...@@ -138,6 +138,22 @@ namespace ngraph
env.DeleteDistribution(distribution); env.DeleteDistribution(distribution);
} }
void recv(void* in,
element::Type_t element_type,
size_t count,
int src_id) override
{
throw ngraph_error("recv not supported/mentioned in MLSL");
}
void send(void* in,
element::Type_t element_type,
size_t count,
int dest_id) override
{
throw ngraph_error("send not supported/mentioned in MLSL");
}
protected: protected:
std::string m_name{"MLSL"}; std::string m_name{"MLSL"};
bool m_initialized_mlsl = false; bool m_initialized_mlsl = false;
......
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