Commit 0ad9ec2c authored by Sergey Shalnov's avatar Sergey Shalnov Committed by Robert Kimball

IntelGPU backend: Change exception type for unsupported op (#1957)

parent 5b994011
......@@ -432,10 +432,6 @@ bool runtime::intelgpu::IntelGPUBackend::compile(shared_ptr<Function> func)
function_output_names.push_back(get_input_name(op));
break;
}
case OP_TYPEID::GenerateMask:
{
throw ngraph_error("GenerateMask isn't yet supported on integrated GPU");
}
case OP_TYPEID::GetOutputElement:
{
if (op->get_inputs().empty() || op->get_outputs().size() != 1)
......@@ -1508,6 +1504,7 @@ bool runtime::intelgpu::IntelGPUBackend::compile(shared_ptr<Function> func)
case OP_TYPEID::Quantize:
case OP_TYPEID::ReduceWindow:
case OP_TYPEID::ReplaceSlice:
case OP_TYPEID::GenerateMask:
case OP_TYPEID::ReverseSequence:
case OP_TYPEID::SelectAndScatter:
case OP_TYPEID::StopGradient:
......
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