Commit dc758246 authored by fenglei's avatar fenglei

disable test for MLSL

parent 6f1e728a
...@@ -141,6 +141,8 @@ TEST(distributed_${BACKEND_NAME}, broadcastdistributed) ...@@ -141,6 +141,8 @@ TEST(distributed_${BACKEND_NAME}, broadcastdistributed)
} }
} }
//MLSL does not support send recv
#if !defined(NGRAPH_DISTRIBUTED_MLSL_ENABLE)
TEST(distributed_${BACKEND_NAME}, send_recv) TEST(distributed_${BACKEND_NAME}, send_recv)
{ {
auto shape = Shape{2, 2}; auto shape = Shape{2, 2};
...@@ -174,3 +176,4 @@ TEST(distributed_${BACKEND_NAME}, send_recv) ...@@ -174,3 +176,4 @@ TEST(distributed_${BACKEND_NAME}, send_recv)
handle->call_with_validate({result}, {result}); handle->call_with_validate({result}, {result});
EXPECT_EQ(v, read_vector<float>(result)); EXPECT_EQ(v, read_vector<float>(result));
} }
#endif
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