Unverified Commit 3f6cda4c authored by Scott Cyphers's avatar Scott Cyphers Committed by GitHub

Fix compiler warning (#3222)

parent c488f12b
......@@ -223,7 +223,7 @@ NGRAPH_TEST(${BACKEND_NAME}, send_recv_ring)
if (rank == 0)
{
f_recv = make_shared<Function>(make_shared<op::Recv>(A, comm_size - 1), ParameterVector{A});
auto handle = backend->compile(f_recv);
handle = backend->compile(f_recv);
copy_data(result, vector<float>(4, 0));
handle->call_with_validate({result}, {result});
EXPECT_EQ(v, read_vector<float>(result));
......
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