From 035771512dc17a4e8f687d22cc4497912930e25a Mon Sep 17 00:00:00 2001 From: mozga-intel Date: Thu, 23 May 2019 02:58:55 -0700 Subject: [PATCH] Enable elementwise min operator for ngraph (#17521) --- .../operators/ngraph/ops/elementwise_node.h | 2 ++ .../ngraph/test_elementwise_min_ngraph_op.py | 22 +++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 python/paddle/fluid/tests/unittests/ngraph/test_elementwise_min_ngraph_op.py diff --git a/paddle/fluid/operators/ngraph/ops/elementwise_node.h b/paddle/fluid/operators/ngraph/ops/elementwise_node.h index 38a6f6a269..2639920b65 100644 --- a/paddle/fluid/operators/ngraph/ops/elementwise_node.h +++ b/paddle/fluid/operators/ngraph/ops/elementwise_node.h @@ -67,3 +67,5 @@ void BuildElementwiseCompareNode( REGISTER_NG_OP(elementwise_max, BuildElementwiseBinaryNode); +REGISTER_NG_OP(elementwise_min, + BuildElementwiseBinaryNode); diff --git a/python/paddle/fluid/tests/unittests/ngraph/test_elementwise_min_ngraph_op.py b/python/paddle/fluid/tests/unittests/ngraph/test_elementwise_min_ngraph_op.py new file mode 100644 index 0000000000..8fa19b3268 --- /dev/null +++ b/python/paddle/fluid/tests/unittests/ngraph/test_elementwise_min_ngraph_op.py @@ -0,0 +1,22 @@ +# Copyright (c) 2018 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. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from __future__ import print_function + +import unittest, sys +sys.path.append("../") +from test_elementwise_min_op import * + +if __name__ == '__main__': + unittest.main() -- GitLab