Commit 68d7e286 authored by fenglei's avatar fenglei

GPU not support send recv

parent ec25f5fd
......@@ -994,6 +994,11 @@ std::string runtime::gpu::GPU_Emitter::emit_QuantizedMaxPool(EMIT_ARGS)
throw unsupported_op("Unsupported op '" + node->description() + "'");
}
std::string runtime::gpu::GPU_Emitter::emit_Recv(EMIT_ARGS)
{
throw unsupported_op("Unsupported op '" + node->description() + "'");
}
std::string runtime::gpu::GPU_Emitter::emit_Relu(EMIT_ARGS)
{
return emit_elementwise<ngraph::op::Relu>(compiled_function, function_name, node, args, out);
......@@ -1244,6 +1249,11 @@ std::string runtime::gpu::GPU_Emitter::emit_Select(EMIT_ARGS)
return emit_elementwise<ngraph::op::Select>(compiled_function, function_name, node, args, out);
}
std::string runtime::gpu::GPU_Emitter::emit_Send(EMIT_ARGS)
{
throw unsupported_op("Unsupported op '" + node->description() + "'");
}
std::string runtime::gpu::GPU_Emitter::emit_ShapeOf(EMIT_ARGS)
{
throw unsupported_op("Unsupported op '" + node->description() + "'");
......
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