From 7611208ab7f50a6ef4c2d5f134813f626646e1d7 Mon Sep 17 00:00:00 2001 From: baojun <32073718+baojun-nervana@users.noreply.github.com> Date: Tue, 4 Jun 2019 05:21:17 -0700 Subject: [PATCH] [NGraph] added gather_grad to ngraph test=develop (#17646) --- paddle/fluid/operators/ngraph/ops/gather_op.h | 43 +++++++++---------- 1 file changed, 20 insertions(+), 23 deletions(-) diff --git a/paddle/fluid/operators/ngraph/ops/gather_op.h b/paddle/fluid/operators/ngraph/ops/gather_op.h index 273a328c5..5d6ac7d8c 100644 --- a/paddle/fluid/operators/ngraph/ops/gather_op.h +++ b/paddle/fluid/operators/ngraph/ops/gather_op.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved. +/* Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -33,33 +33,30 @@ void BuildGatherNode( std::unordered_map>> ngb_node_map) { auto x = platform::GetInputNode(op, "X", ngb_node_map); + PADDLE_ENFORCE_NOT_NULL(x); auto index = platform::GetInputNode(op, "Index", ngb_node_map); - auto x_shape = x->get_shape(); - size_t axis_1 = x_shape[0]; - size_t axis_2 = 1; - if (x_shape.size() > 1) { - axis_2 = std::accumulate(std::begin(x_shape) + 1, std::end(x_shape), 1, - std::multiplies()); - } - std::vector x_order(x_shape.size()); - std::iota(std::begin(x_order), std::end(x_order), 0); - auto x_reshape = std::make_shared( - x, ngraph::AxisVector(x_order), ngraph::Shape{axis_1, axis_2}); - auto x_reshape_shape = x_reshape->get_shape(); - auto result = std::make_shared(index, x_reshape); - auto result_shape = result->get_shape(); - std::vector out_shape(x_shape); - out_shape[0] = result_shape[0]; - std::vector axis_vector; - for (size_t i = 0; i < result_shape.size(); i++) { - axis_vector.push_back(i); - } - auto out = std::make_shared( - result, ngraph::AxisVector(axis_vector), out_shape); + auto out = std::make_shared(x, index); + paddle::platform::SetOutputNode(op, "Out", out, ngb_node_map); } +void BuildGatherGradNode( + const std::shared_ptr& op, + std::shared_ptr< + std::unordered_map>> + ngb_node_map) { + auto dout = platform::GetInputNode(op, "Out@GRAD", ngb_node_map); + PADDLE_ENFORCE_NOT_NULL(dout); + auto x = platform::GetInputNode(op, "X", ngb_node_map); + auto index = platform::GetInputNode(op, "Index", ngb_node_map); + + std::shared_ptr x0 = paddle::platform::CreateConstant( + dout->get_element_type(), x->get_shape(), {0}); + auto dx = std::make_shared(x0, index, dout); + paddle::platform::SetOutputNode(op, "X@GRAD", dx, ngb_node_map); +} } // namespace ngraphs } // namespace operators } // namespace paddle REGISTER_NG_OP(gather, BuildGatherNode); +REGISTER_NG_OP(gather_grad, BuildGatherGradNode); -- GitLab