Commit f54e9159 authored by Diego Caballero's avatar Diego Caballero Committed by Scott Cyphers

[MLIR] Add missing visitor for Relu in compiler.cpp (#3308)

parent 0ca40376
......@@ -398,6 +398,12 @@ namespace ngraph
compiler.m_builder->getI64IntegerAttr(ng_node_gather->get_axis()));
return op;
}
template <>
mlir::Operation* MLIRCompiler::COMPILE_OP_DECL(ngraph::op::Relu)
{
return compiler.create_generic_op<mlir::NGReluOp>(ng_node);
}
}
}
}
......
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