100 lines
3.1 KiB
Python
100 lines
3.1 KiB
Python
# 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
|
|
from get_test_cover_info import (
|
|
XPUOpTestWrapper,
|
|
create_test_class,
|
|
get_xpu_op_support_types,
|
|
)
|
|
from op_test import convert_float_to_uint16
|
|
from op_test_xpu import XPUOpTest
|
|
|
|
import paddle
|
|
|
|
paddle.enable_static()
|
|
|
|
|
|
class XPUTestFlatten2Op(XPUOpTestWrapper):
|
|
def __init__(self):
|
|
self.op_name = 'flatten2'
|
|
self.use_dynamic_create_class = False
|
|
|
|
class TestFlatten2Op(XPUOpTest):
|
|
def setUp(self):
|
|
self.set_xpu()
|
|
self.op_type = "flatten2"
|
|
self.dtype = self.in_type
|
|
self.place = paddle.XPUPlace(0)
|
|
self.init_test_case()
|
|
if self.dtype == np.uint16:
|
|
data = np.random.random(self.in_shape).astype(np.float32)
|
|
self.inputs = {"X": convert_float_to_uint16(data)}
|
|
else:
|
|
self.inputs = {
|
|
"X": np.random.random(self.in_shape).astype(self.dtype)
|
|
}
|
|
self.init_attrs()
|
|
self.outputs = {
|
|
"Out": self.inputs["X"].reshape(self.new_shape),
|
|
"XShape": np.random.random(self.in_shape).astype(self.dtype),
|
|
}
|
|
|
|
def set_xpu(self):
|
|
self.__class__.use_xpu = True
|
|
|
|
def test_check_output(self):
|
|
self.check_output_with_place(self.place, no_check_set=["XShape"])
|
|
|
|
def test_check_grad(self):
|
|
self.check_grad_with_place(self.place, ["X"], "Out")
|
|
|
|
def init_test_case(self):
|
|
self.in_shape = (3, 2, 4, 5)
|
|
self.axis = 1
|
|
self.new_shape = (3, 40)
|
|
|
|
def init_attrs(self):
|
|
self.attrs = {"axis": self.axis}
|
|
|
|
class TestFlatten2OpWithCornerAxis(TestFlatten2Op):
|
|
def init_test_case(self):
|
|
self.in_shape = (3, 2, 5, 4)
|
|
self.axis = 0
|
|
self.new_shape = (1, 120)
|
|
|
|
class TestFlatten2OpWithDefaultAxis(TestFlatten2Op):
|
|
def init_test_case(self):
|
|
self.in_shape = (10, 2, 2, 3)
|
|
self.new_shape = (10, 12)
|
|
|
|
def init_attrs(self):
|
|
self.attrs = {}
|
|
|
|
class TestFlatten2OpSixDims(TestFlatten2Op):
|
|
def init_test_case(self):
|
|
self.in_shape = (3, 2, 3, 2, 4, 4)
|
|
self.axis = 4
|
|
self.new_shape = (36, 16)
|
|
|
|
|
|
support_types = get_xpu_op_support_types('flatten2')
|
|
for stype in support_types:
|
|
create_test_class(globals(), XPUTestFlatten2Op, stype)
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|