Commit 0692dd8c authored by Jaikrishnan Menon's avatar Jaikrishnan Menon

CPU Direct Execution: Implement Logical and Relational binary ops

and remove broadcast, which will be replaced with an Eigen implementation
parent e2d1b5bc
...@@ -139,36 +139,68 @@ namespace ngraph ...@@ -139,36 +139,68 @@ namespace ngraph
} }
template <> template <>
void Builder::BUILDER_DECL(ngraph::op::Abs) void Builder::BUILDER_DECL(ngraph::op::Divide)
{ {
BUILD_UNARY_ELEMWISE_FUNCTOR(runtime::cpu::kernel::abs); BUILD_BINARY_ELEMWISE_FUNCTOR(runtime::cpu::kernel::divide);
} }
template <> template <>
void Builder::BUILDER_DECL(ngraph::op::Broadcast) void Builder::BUILDER_DECL(ngraph::op::Equal)
{ {
std::function<void(void*, void*, const Shape&, const Shape&, const AxisSet&)> BUILD_BINARY_ELEMWISE_FUNCTOR(runtime::cpu::kernel::equal);
kernel; }
SELECT_KERNEL(kernel, out[0].get_element_type(), runtime::cpu::kernel::broadcast); template <>
void Builder::BUILDER_DECL(ngraph::op::NotEqual)
{
BUILD_BINARY_ELEMWISE_FUNCTOR(runtime::cpu::kernel::not_equal);
}
auto& functors = external_function->get_functors(); template <>
auto& tensor_data = external_function->get_tensor_data(); void Builder::BUILDER_DECL(ngraph::op::Greater)
{
BUILD_BINARY_ELEMWISE_FUNCTOR(runtime::cpu::kernel::greater);
}
template <>
void Builder::BUILDER_DECL(ngraph::op::GreaterEq)
{
BUILD_BINARY_ELEMWISE_FUNCTOR(runtime::cpu::kernel::greater_eq);
}
template <>
void Builder::BUILDER_DECL(ngraph::op::Less)
{
BUILD_BINARY_ELEMWISE_FUNCTOR(runtime::cpu::kernel::less);
}
auto arg0_shape = args[0].get_shape(); template <>
auto result_shape = out[0].get_shape(); void Builder::BUILDER_DECL(ngraph::op::LessEq)
{
BUILD_BINARY_ELEMWISE_FUNCTOR(runtime::cpu::kernel::less_eq);
}
auto& arg0_tensor = tensor_data[args[0].get_name()]; template <>
auto& out_tensor = tensor_data[out[0].get_name()]; void Builder::BUILDER_DECL(ngraph::op::Maximum)
{
BUILD_BINARY_ELEMWISE_FUNCTOR(runtime::cpu::kernel::maximum);
}
template <>
void Builder::BUILDER_DECL(ngraph::op::Minimum)
{
BUILD_BINARY_ELEMWISE_FUNCTOR(runtime::cpu::kernel::minimum);
}
auto broadcast = static_cast<const ngraph::op::Broadcast*>(node); template <>
auto broadcast_axes = broadcast->get_broadcast_axes(); void Builder::BUILDER_DECL(ngraph::op::Power)
{
BUILD_BINARY_ELEMWISE_FUNCTOR(runtime::cpu::kernel::cwise_pow);
}
auto functor = template <>
[&, kernel, arg0_shape, result_shape, broadcast_axes](CPURuntimeContext* ctx) { void Builder::BUILDER_DECL(ngraph::op::Abs)
kernel(arg0_tensor, out_tensor, arg0_shape, result_shape, broadcast_axes); {
}; BUILD_UNARY_ELEMWISE_FUNCTOR(runtime::cpu::kernel::abs);
functors.emplace_back(functor);
} }
template <> template <>
......
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