From 0428809112211ffdde13d55e2fa6fa27777ac71f Mon Sep 17 00:00:00 2001 From: ronnywang <524019753@qq.com> Date: Fri, 23 Jul 2021 15:27:23 +0800 Subject: [PATCH] add npu_sampling_id and tests (#34302) --- paddle/fluid/operators/sampling_id_op_npu.cc | 19 +++++++ .../unittests/npu/test_sampling_id_op_npu.py | 52 +++++++++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 paddle/fluid/operators/sampling_id_op_npu.cc create mode 100644 python/paddle/fluid/tests/unittests/npu/test_sampling_id_op_npu.py diff --git a/paddle/fluid/operators/sampling_id_op_npu.cc b/paddle/fluid/operators/sampling_id_op_npu.cc new file mode 100644 index 0000000000..162403595b --- /dev/null +++ b/paddle/fluid/operators/sampling_id_op_npu.cc @@ -0,0 +1,19 @@ +/* Copyright (c) 2021 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. */ + +#include "paddle/fluid/operators/sampling_id_op.h" + +namespace ops = paddle::operators; +REGISTER_OP_NPU_KERNEL(sampling_id, paddle::operators::SamplingIdKernel, + paddle::operators::SamplingIdKernel); diff --git a/python/paddle/fluid/tests/unittests/npu/test_sampling_id_op_npu.py b/python/paddle/fluid/tests/unittests/npu/test_sampling_id_op_npu.py new file mode 100644 index 0000000000..836d2b6d31 --- /dev/null +++ b/python/paddle/fluid/tests/unittests/npu/test_sampling_id_op_npu.py @@ -0,0 +1,52 @@ +# Copyright (c) 2021 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. + +import unittest +import numpy as np +import sys +sys.path.append("..") + +from op_test import OpTest, _set_use_system_allocator +import paddle.fluid.core as core +import paddle.fluid as fluid +from paddle.fluid.op import Operator +import paddle + +_set_use_system_allocator(False) + + +class TestSamplingIdShape(unittest.TestCase): + def test_shape(self): + paddle.enable_static() + x = fluid.layers.data(name='x', shape=[3], dtype='float32') + output = fluid.layers.sampling_id(x) + + place = fluid.NPUPlace(0) + exe = fluid.Executor(place=place) + exe.run(fluid.default_startup_program()) + + feed = { + 'x': np.array( + [[0.2, 0.3, 0.5], [0.2, 0.3, 0.4]], dtype='float32') + } + output_np = exe.run(feed=feed, fetch_list=[output])[0] + + self.assertEqual(output.shape[0], -1) + self.assertEqual(len(output.shape), 1) + self.assertEqual(output_np.shape[0], 2) + self.assertEqual(len(output_np.shape), 1) + + +if __name__ == "__main__": + unittest.main() -- GitLab