未验证 提交 f21d7957 编写于 作者: T TTerror 提交者: GitHub

refactor huber_loss/argsor unittests for kunlun, *test=kunlun (#39527)

上级 6eb95caf
...@@ -83,8 +83,8 @@ type_dict_str_to_numpy = { ...@@ -83,8 +83,8 @@ type_dict_str_to_numpy = {
} }
xpu_test_op_white_list = [] xpu_test_op_white_list = []
xpu_test_type_white_list = [] xpu_test_type_white_list = ['float64']
xpu_test_op_type_white_list = ['float64'] xpu_test_op_type_white_list = []
xpu_test_device_op_white_list = [] xpu_test_device_op_white_list = []
xpu_test_device_op_type_white_list = [] xpu_test_device_op_type_white_list = []
...@@ -186,7 +186,7 @@ def get_xpu_op_support_types(op_name, dev_id=0): ...@@ -186,7 +186,7 @@ def get_xpu_op_support_types(op_name, dev_id=0):
paddle.bfloat16]) paddle.bfloat16])
else: else:
support_type_str_list.append(type_dict_paddle_to_str[stype]) support_type_str_list.append(type_dict_paddle_to_str[stype])
type_white_list = get_op_type_white_list() type_white_list = get_type_white_list()
return [ return [
stype for stype in support_type_str_list if stype not in type_white_list stype for stype in support_type_str_list if stype not in type_white_list
] ]
......
...@@ -18,31 +18,49 @@ import numpy as np ...@@ -18,31 +18,49 @@ import numpy as np
import unittest import unittest
import sys import sys
sys.path.append("..") sys.path.append("..")
import paddle
from op_test import OpTest from op_test import OpTest
from op_test_xpu import XPUOpTest from op_test_xpu import XPUOpTest
import paddle from xpu.get_test_cover_info import create_test_class, get_xpu_op_support_types, XPUOpTestWrapper
import paddle.fluid as fluid
import paddle.fluid.core as core
from paddle.fluid import ParamAttr
from paddle.fluid.framework import Program, grad_var_name
from paddle.fluid.executor import Executor
from paddle.fluid.backward import append_backward
paddle.enable_static() paddle.enable_static()
class TestArgsortOp(XPUOpTest): class XPUTestArgsortOp(XPUOpTestWrapper):
def __init__(self):
self.op_name = 'argsort'
self.use_dynamic_create_class = True
def dynamic_create_class(self):
base_class = self.TestArgsortOp
classes = []
for descending in [True, False]:
for axis in [0, 1, 2, -1, -2]:
class_name = 'XPUTestArgsortOp_axis_' + str(axis) + '_' + str(
descending)
attr_dict = {'init_axis': axis, 'init_descending': descending}
classes.append([class_name, attr_dict])
return base_class, classes
class TestArgsortOp(XPUOpTest):
def setUp(self): def setUp(self):
self.set_xpu() self.set_xpu()
self.op_type = "argsort" self.op_type = "argsort"
self.place = paddle.XPUPlace(0) self.place = paddle.XPUPlace(0)
self.init_dtype() self.dtype = self.in_type
self.init_inputshape() self.input_shape = (2, 2, 2, 3, 3)
self.init_axis() self.axis = -1 if not hasattr(self, 'init_axis') else self.init_axis
self.init_direction() self.descending = False if not hasattr(
self, 'init_descending') else self.init_descending
if self.dtype == np.float32:
self.x = np.random.random(self.input_shape).astype(self.dtype) self.x = np.random.random(self.input_shape).astype(self.dtype)
else:
self.x = np.random.randint(
low=-1000, high=1000,
size=self.input_shape).astype(self.dtype)
self.inputs = {"X": self.x} self.inputs = {"X": self.x}
self.attrs = {"axis": self.axis, "descending": self.descending} self.attrs = {"axis": self.axis, "descending": self.descending}
self.get_output() self.get_output()
...@@ -52,186 +70,27 @@ class TestArgsortOp(XPUOpTest): ...@@ -52,186 +70,27 @@ class TestArgsortOp(XPUOpTest):
if self.descending: if self.descending:
self.indices = np.flip( self.indices = np.flip(
np.argsort( np.argsort(
self.x, kind='heapsort', axis=self.axis), self.axis) self.x, kind='heapsort', axis=self.axis),
self.axis)
self.sorted_x = np.flip( self.sorted_x = np.flip(
np.sort( np.sort(
self.x, kind='heapsort', axis=self.axis), self.axis) self.x, kind='heapsort', axis=self.axis), self.axis)
else: else:
self.indices = np.argsort(self.x, kind='heapsort', axis=self.axis) self.indices = np.argsort(
self.x, kind='heapsort', axis=self.axis)
self.sorted_x = np.sort(self.x, kind='heapsort', axis=self.axis) self.sorted_x = np.sort(self.x, kind='heapsort', axis=self.axis)
def set_xpu(self): def set_xpu(self):
self.__class__.use_xpu = True self.__class__.use_xpu = True
self.__class__.no_need_check_grad = True self.__class__.no_need_check_grad = True
def init_inputshape(self):
self.input_shape = (2, 2, 2, 3, 3)
def init_dtype(self):
self.dtype = 'float32'
def init_axis(self):
self.axis = -1
def test_check_output(self): def test_check_output(self):
self.check_output_with_place(self.place) self.check_output_with_place(self.place)
def init_direction(self):
self.descending = False
class TestArgsortOpAxis0XPU(TestArgsortOp):
def init_axis(self):
self.axis = 0
class TestArgsortOpAxis1XPU(TestArgsortOp):
def init_axis(self):
self.axis = 1
class TestArgsortOpAxis2XPU(TestArgsortOp):
def init_axis(self):
self.axis = 2
class TestArgsortOpAxisNeg1XPU(TestArgsortOp):
def init_axis(self):
self.axis = -1
class TestArgsortOpAxisNeg2XPU(TestArgsortOp):
def init_axis(self):
self.axis = -2
class TestArgsortOpDescendingAxisXPU(TestArgsortOp):
def init_direction(self):
self.descending = True
class TestArgsortOpDescendingAxis0XPU(TestArgsortOpAxis0XPU):
def init_direction(self):
self.descending = True
class TestArgsortOpDescendingAxis1XPU(TestArgsortOpAxis1XPU):
def init_direction(self):
self.descending = True
class TestArgsortOpDescendingAxis2XPU(TestArgsortOpAxis2XPU):
def init_direction(self):
self.descending = True
class TestArgsortOpDescendingAxisNeg1XPU(TestArgsortOpAxisNeg1XPU):
def init_direction(self):
self.descending = True
class TestArgsortOpDescendingAxisNeg2XPU(TestArgsortOpAxisNeg2XPU):
def init_direction(self):
self.descending = True
class TestArgsortOpAxis0XPUINT64(TestArgsortOp):
def setUp(self):
self.set_xpu()
self.op_type = "argsort"
self.place = paddle.XPUPlace(0)
self.init_dtype()
self.init_inputshape()
self.init_axis()
self.init_direction()
self.x = np.random.randint(
low=-1000, high=1000, size=self.input_shape).astype(self.dtype)
self.inputs = {"X": self.x}
self.attrs = {"axis": self.axis, "descending": self.descending}
self.get_output()
self.outputs = {"Out": self.sorted_x, "Indices": self.indices}
def init_axis(self):
self.axis = 0
def init_dtype(self):
self.dtype = 'int64'
class TestArgsortOpAxis1XPUINT64(TestArgsortOpAxis0XPUINT64):
def init_axis(self):
self.axis = 1
class TestArgsortOpAxis2XPUINT64(TestArgsortOpAxis0XPUINT64):
def init_axis(self):
self.axis = 2
class TestArgsortOpAxisNeg1XPUINT64(TestArgsortOpAxis0XPUINT64):
def init_axis(self):
self.axis = -1
class TestArgsortOpAxisNeg2XPUINT64(TestArgsortOpAxis0XPUINT64):
def init_axis(self):
self.axis = -2
class TestArgsortOpDescendingAxisXPUINT64(TestArgsortOpAxis0XPUINT64):
def init_direction(self):
self.descending = True
class TestArgsortOpDescendingAxis0XPUINT64(TestArgsortOpAxis0XPUINT64):
def init_direction(self):
self.descending = True
class TestArgsortOpDescendingAxis1XPUINT64(TestArgsortOpAxis1XPUINT64):
def init_direction(self):
self.descending = True
class TestArgsortOpDescendingAxis2XPUINT64(TestArgsortOpAxis2XPUINT64):
def init_direction(self):
self.descending = True
class TestArgsortOpDescendingAxisNeg1XPUINT64(TestArgsortOpAxisNeg1XPUINT64):
def init_direction(self):
self.descending = True
class TestArgsortOpDescendingAxisNeg2XPUINT64(TestArgsortOpAxisNeg2XPUINT64):
def init_direction(self):
self.descending = True
class TestArgsortOpAxis0XPUINT(TestArgsortOp):
def setUp(self):
self.set_xpu()
self.op_type = "argsort"
self.place = paddle.XPUPlace(0)
self.init_dtype()
self.init_inputshape()
self.init_axis()
self.init_direction()
self.x = np.random.randint(
low=-1000, high=1000, size=self.input_shape).astype(self.dtype)
self.inputs = {"X": self.x}
self.attrs = {"axis": self.axis, "descending": self.descending}
self.get_output()
self.outputs = {"Out": self.sorted_x, "Indices": self.indices}
def init_axis(self):
self.axis = 0
def init_dtype(self):
self.dtype = 'int'
support_types = get_xpu_op_support_types('argsort')
for stype in support_types:
create_test_class(globals(), XPUTestArgsortOp, stype)
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()
...@@ -18,11 +18,13 @@ import unittest ...@@ -18,11 +18,13 @@ import unittest
import numpy as np import numpy as np
import sys import sys
sys.path.append("..") sys.path.append("..")
from op_test import OpTest
from op_test_xpu import XPUOpTest
import paddle import paddle
import paddle.fluid as fluid import paddle.fluid as fluid
from paddle.fluid import compiler, Program, program_guard
from op_test import OpTest
from op_test_xpu import XPUOpTest
from xpu.get_test_cover_info import create_test_class, get_xpu_op_support_types, XPUOpTestWrapper
paddle.enable_static() paddle.enable_static()
...@@ -35,14 +37,18 @@ def huber_loss_forward(val, delta): ...@@ -35,14 +37,18 @@ def huber_loss_forward(val, delta):
return delta * (abs_val - 0.5 * delta) return delta * (abs_val - 0.5 * delta)
class TestHuberLossOp(XPUOpTest): class XPUTestHuberLossOp(XPUOpTestWrapper):
def __init__(self):
self.op_name = 'huber_loss'
self.use_dynamic_create_class = False
class TestHuberLossOp(XPUOpTest):
def setUp(self): def setUp(self):
self.set_xpu() self.set_xpu()
self.op_type = 'huber_loss' self.op_type = 'huber_loss'
self.place = paddle.XPUPlace(0) self.place = paddle.XPUPlace(0)
self.init_dtype() self.init_dtype()
self.set_inputs() self.set_inputs()
self.set_attrs() self.set_attrs()
self.set_outputs() self.set_outputs()
...@@ -74,7 +80,7 @@ class TestHuberLossOp(XPUOpTest): ...@@ -74,7 +80,7 @@ class TestHuberLossOp(XPUOpTest):
self.__class__.use_xpu = True self.__class__.use_xpu = True
def init_dtype(self): def init_dtype(self):
self.dtype = np.float32 self.dtype = self.in_type
def test_check_output(self): def test_check_output(self):
self.check_output_with_place(self.place) self.check_output_with_place(self.place)
...@@ -90,21 +96,22 @@ class TestHuberLossOp(XPUOpTest): ...@@ -90,21 +96,22 @@ class TestHuberLossOp(XPUOpTest):
self.check_grad_with_place( self.check_grad_with_place(
self.place, ['X'], 'Out', no_grad_set=set('residual')) self.place, ['X'], 'Out', no_grad_set=set('residual'))
class TestHuberLossOp1(TestHuberLossOp):
def TestHuberLossOp1(TestHuberLossOp):
def set_shape(self): def set_shape(self):
return (64) return (640)
class TestHuberLossOp2(TestHuberLossOp):
def TestHuberLossOp2(TestHuberLossOp):
def set_shape(self): def set_shape(self):
return (6, 6) return (10, 10)
def TestHuberLossOp3(TestHuberLossOp): class TestHuberLossOp3(TestHuberLossOp):
def set_shape(self): def set_shape(self):
return (6, 6, 1) return (10, 10, 1)
support_types = get_xpu_op_support_types('huber_loss')
for stype in support_types:
create_test_class(globals(), XPUTestHuberLossOp, stype)
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册