Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

【NPU】Fix reshape test & add grad test #31776

Merged
merged 2 commits into from
Mar 22, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 80 additions & 0 deletions python/paddle/fluid/tests/unittests/npu/test_reshape2_op_npu.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
# 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.

from __future__ import print_function

import numpy as np
import unittest
import sys
sys.path.append("..")
from op_test import OpTest
import paddle
import paddle.fluid as fluid

paddle.enable_static()
SEED = 2021


@unittest.skipIf(not paddle.is_compiled_with_npu(),
"core is not compiled with NPU")
class TestReshape2(OpTest):
def setUp(self):
self.set_npu()
self.op_type = "reshape2"
self.place = paddle.NPUPlace(0)

self.init_data()
self.inputs = {"X": np.random.random(self.ori_shape).astype("float32")}
self.attrs = {"shape": self.new_shape}
self.outputs = {
"Out": self.inputs["X"].reshape(self.infered_shape),
'XShape': np.random.random(self.ori_shape).astype("float32")
}

def set_npu(self):
self.__class__.use_npu = True

def init_data(self):
self.ori_shape = (2, 100)
self.new_shape = (20, 10)
self.infered_shape = (20, 10)

def test_check_output(self):
self.check_output_with_place(
self.place, check_dygraph=False, no_check_set=['XShape'])

def test_check_grad_normal(self):
self.check_grad_with_place(
self.place, ['X'],
'Out',
max_relative_error=0.007,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

精度范围需要设置成0.007吗?reshape不会造成导致误差吧?能否直接使用默认值?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed

check_dygraph=False)


class TestReshape2_case2(TestReshape2):
def init_data(self):
self.ori_shape = (2, 100)
self.new_shape = (-1, 10)
self.infered_shape = (20, 10)


class TestReshape2_case3(TestReshape2):
def init_data(self):
self.ori_shape = (100, 5, 6)
self.new_shape = (-1, 0, 3)
self.infered_shape = (200, 5, 3)


if __name__ == '__main__':
unittest.main()
141 changes: 0 additions & 141 deletions python/paddle/fluid/tests/unittests/npu/test_reshape_op_npu.py

This file was deleted.