未验证 提交 e64a18db 编写于 作者: C Charles-hit 提交者: GitHub

[AMP Prim OP]support some prim ops for bf16 dtype part3 (#54368)

* support some prim ops bf16 dtype

* fix cmake
上级 fd9c555c
...@@ -1199,7 +1199,10 @@ set(TEST_CINN_OPS ...@@ -1199,7 +1199,10 @@ set(TEST_CINN_OPS
test_instance_norm_op test_instance_norm_op
test_cumsum_op test_cumsum_op
test_pad_op test_pad_op
test_split_op) test_split_op
test_erf_op
test_assign_op
test_flatten_contiguous_range_op)
foreach(TEST_CINN_OPS ${TEST_CINN_OPS}) foreach(TEST_CINN_OPS ${TEST_CINN_OPS})
if(WITH_CINN) if(WITH_CINN)
......
...@@ -80,7 +80,6 @@ class TestAssignBFP16Op(eager_op_test.OpTest): ...@@ -80,7 +80,6 @@ class TestAssignBFP16Op(eager_op_test.OpTest):
self.public_python_api = paddle.assign self.public_python_api = paddle.assign
self.op_type = "assign" self.op_type = "assign"
self.prim_op_type = "prim" self.prim_op_type = "prim"
self.enable_cinn = False
x = np.random.uniform(0, 1, [100, 10]).astype(np.float32) x = np.random.uniform(0, 1, [100, 10]).astype(np.float32)
x = convert_float_to_uint16(x) x = convert_float_to_uint16(x)
self.inputs = {'X': x} self.inputs = {'X': x}
......
...@@ -57,15 +57,17 @@ class TestErfLayer(unittest.TestCase): ...@@ -57,15 +57,17 @@ class TestErfLayer(unittest.TestCase):
np.testing.assert_allclose(y_ref, y_test, rtol=1e-05) np.testing.assert_allclose(y_ref, y_test, rtol=1e-05)
def test_case(self): def test_case(self):
self._test_case(fluid.CPUPlace()) with paddle.fluid.framework._static_guard():
if fluid.is_compiled_with_cuda(): self._test_case(fluid.CPUPlace())
self._test_case(fluid.CUDAPlace(0)) if fluid.is_compiled_with_cuda():
self._test_case(fluid.CUDAPlace(0))
def test_name(self): def test_name(self):
with fluid.program_guard(fluid.Program()): with paddle.fluid.framework._static_guard():
x = paddle.static.data('x', [3, 4]) with fluid.program_guard(fluid.Program()):
y = paddle.erf(x, name='erf') x = paddle.static.data('x', [3, 4])
self.assertTrue('erf' in y.name) y = paddle.erf(x, name='erf')
self.assertTrue('erf' in y.name)
class TestErfFP16OP(OpTest): class TestErfFP16OP(OpTest):
......
...@@ -88,7 +88,7 @@ class TestFillAnyLikeOpBfloat16(OpTest): ...@@ -88,7 +88,7 @@ class TestFillAnyLikeOpBfloat16(OpTest):
self.check_output_with_place(place, check_prim=True) self.check_output_with_place(place, check_prim=True)
def if_enable_cinn(self): def if_enable_cinn(self):
self.enable_cinn = False pass
class TestFillAnyLikeOpValue1(TestFillAnyLikeOp): class TestFillAnyLikeOpValue1(TestFillAnyLikeOp):
......
...@@ -30,7 +30,7 @@ class TestFlattenOp(OpTest): ...@@ -30,7 +30,7 @@ class TestFlattenOp(OpTest):
self.prim_op_type = "comp" self.prim_op_type = "comp"
self.start_axis = 0 self.start_axis = 0
self.stop_axis = -1 self.stop_axis = -1
self.skip_cinn() self.if_enable_cinn()
self.init_test_case() self.init_test_case()
self.init_test_dtype() self.init_test_dtype()
self.init_input_data() self.init_input_data()
...@@ -40,8 +40,8 @@ class TestFlattenOp(OpTest): ...@@ -40,8 +40,8 @@ class TestFlattenOp(OpTest):
"XShape": np.random.random(self.in_shape).astype("float32"), "XShape": np.random.random(self.in_shape).astype("float32"),
} }
def skip_cinn(self): def if_enable_cinn(self):
self.enable_cinn = True pass
def test_check_output(self): def test_check_output(self):
if str(self.dtype) in {"float16", "uint16"}: if str(self.dtype) in {"float16", "uint16"}:
...@@ -104,6 +104,9 @@ class TestFlattenFP16Op(TestFlattenOp): ...@@ -104,6 +104,9 @@ class TestFlattenFP16Op(TestFlattenOp):
"core is not complied with CUDA and not support the bfloat16", "core is not complied with CUDA and not support the bfloat16",
) )
class TestFlattenBF16Op(TestFlattenOp): class TestFlattenBF16Op(TestFlattenOp):
def if_enable_cinn(self):
pass
def init_test_dtype(self): def init_test_dtype(self):
self.dtype = "uint16" self.dtype = "uint16"
...@@ -142,6 +145,9 @@ class TestFlattenFP16Op_1(TestFlattenOp_1): ...@@ -142,6 +145,9 @@ class TestFlattenFP16Op_1(TestFlattenOp_1):
"core is not complied with CUDA and not support the bfloat16", "core is not complied with CUDA and not support the bfloat16",
) )
class TestFlattenBF16Op_1(TestFlattenOp_1): class TestFlattenBF16Op_1(TestFlattenOp_1):
def if_enable_cinn(self):
pass
def init_test_dtype(self): def init_test_dtype(self):
self.dtype = "uint16" self.dtype = "uint16"
...@@ -180,6 +186,9 @@ class TestFlattenFP16Op_2(TestFlattenOp_2): ...@@ -180,6 +186,9 @@ class TestFlattenFP16Op_2(TestFlattenOp_2):
"core is not complied with CUDA and not support the bfloat16", "core is not complied with CUDA and not support the bfloat16",
) )
class TestFlattenBF16Op_2(TestFlattenOp_2): class TestFlattenBF16Op_2(TestFlattenOp_2):
def if_enable_cinn(self):
pass
def init_test_dtype(self): def init_test_dtype(self):
self.dtype = "uint16" self.dtype = "uint16"
...@@ -218,6 +227,9 @@ class TestFlattenFP16Op_3(TestFlattenOp_3): ...@@ -218,6 +227,9 @@ class TestFlattenFP16Op_3(TestFlattenOp_3):
"core is not complied with CUDA and not support the bfloat16", "core is not complied with CUDA and not support the bfloat16",
) )
class TestFlattenBF16Op_3(TestFlattenOp_3): class TestFlattenBF16Op_3(TestFlattenOp_3):
def if_enable_cinn(self):
pass
def init_test_dtype(self): def init_test_dtype(self):
self.dtype = "uint16" self.dtype = "uint16"
...@@ -256,6 +268,9 @@ class TestFlattenFP16Op_4(TestFlattenOp_4): ...@@ -256,6 +268,9 @@ class TestFlattenFP16Op_4(TestFlattenOp_4):
"core is not complied with CUDA and not support the bfloat16", "core is not complied with CUDA and not support the bfloat16",
) )
class TestFlattenBF16Op_4(TestFlattenOp_4): class TestFlattenBF16Op_4(TestFlattenOp_4):
def if_enable_cinn(self):
pass
def init_test_dtype(self): def init_test_dtype(self):
self.dtype = "uint16" self.dtype = "uint16"
...@@ -294,6 +309,9 @@ class TestFlattenFP16Op_5(TestFlattenOp_5): ...@@ -294,6 +309,9 @@ class TestFlattenFP16Op_5(TestFlattenOp_5):
"core is not complied with CUDA and not support the bfloat16", "core is not complied with CUDA and not support the bfloat16",
) )
class TestFlattenBF16Op_5(TestFlattenOp_5): class TestFlattenBF16Op_5(TestFlattenOp_5):
def if_enable_cinn(self):
pass
def init_test_dtype(self): def init_test_dtype(self):
self.dtype = "uint16" self.dtype = "uint16"
...@@ -305,7 +323,7 @@ class TestFlattenOp_ZeroDim(TestFlattenOp): ...@@ -305,7 +323,7 @@ class TestFlattenOp_ZeroDim(TestFlattenOp):
self.stop_axis = -1 self.stop_axis = -1
self.new_shape = (1,) self.new_shape = (1,)
def skip_cinn(self): def if_enable_cinn(self):
self.enable_cinn = False self.enable_cinn = False
def init_attrs(self): def init_attrs(self):
...@@ -363,6 +381,9 @@ class TestFlattenFP16OpSixDims(TestFlattenOpSixDims): ...@@ -363,6 +381,9 @@ class TestFlattenFP16OpSixDims(TestFlattenOpSixDims):
"core is not complied with CUDA and not support the bfloat16", "core is not complied with CUDA and not support the bfloat16",
) )
class TestFlattenBF16OpSixDims(TestFlattenOpSixDims): class TestFlattenBF16OpSixDims(TestFlattenOpSixDims):
def if_enable_cinn(self):
pass
def init_test_dtype(self): def init_test_dtype(self):
self.dtype = "uint16" self.dtype = "uint16"
......
...@@ -19,7 +19,7 @@ from eager_op_test import OpTest, convert_float_to_uint16 ...@@ -19,7 +19,7 @@ from eager_op_test import OpTest, convert_float_to_uint16
import paddle import paddle
from paddle import fluid from paddle import fluid
from paddle.fluid import Program, program_guard from paddle.fluid import Program, core, program_guard
np.random.seed(1024) np.random.seed(1024)
...@@ -102,8 +102,11 @@ class TestIndexSelectFP16OP(TestIndexSelectOp): ...@@ -102,8 +102,11 @@ class TestIndexSelectFP16OP(TestIndexSelectOp):
class TestIndexSelectBF16Op(OpTest): class TestIndexSelectBF16Op(OpTest):
def setUp(self): def setUp(self):
self.python_api = paddle.index_select self.python_api = paddle.index_select
self.public_python_api = paddle.index_select
self.prim_op_type = "comp"
self.op_type = "index_select" self.op_type = "index_select"
self.init_dtype_type() self.init_dtype_type()
self.if_skip_cinn()
index_np = np.random.randint( index_np = np.random.randint(
low=0, high=self.x_shape[self.dim], size=self.index_size low=0, high=self.x_shape[self.dim], size=self.index_size
) )
...@@ -124,6 +127,9 @@ class TestIndexSelectBF16Op(OpTest): ...@@ -124,6 +127,9 @@ class TestIndexSelectBF16Op(OpTest):
out = np.reshape(out_list, self.out_shape) out = np.reshape(out_list, self.out_shape)
self.outputs = {'Out': convert_float_to_uint16(out)} self.outputs = {'Out': convert_float_to_uint16(out)}
def if_skip_cinn(self):
self.enable_cinn = False
def init_dtype_type(self): def init_dtype_type(self):
self.dim = 1 self.dim = 1
self.x_type = np.uint16 self.x_type = np.uint16
...@@ -132,10 +138,12 @@ class TestIndexSelectBF16Op(OpTest): ...@@ -132,10 +138,12 @@ class TestIndexSelectBF16Op(OpTest):
self.index_size = 100 self.index_size = 100
def test_check_output(self): def test_check_output(self):
self.check_output() place = core.CUDAPlace(0)
self.check_output_with_place(place)
def test_check_grad_normal(self): def test_check_grad_normal(self):
self.check_grad(['X'], 'Out') place = core.CUDAPlace(0)
self.check_grad_with_place(place, ['X'], 'Out', check_prim=True)
class TestIndexSelectAPI(unittest.TestCase): class TestIndexSelectAPI(unittest.TestCase):
......
...@@ -15,7 +15,11 @@ ...@@ -15,7 +15,11 @@
import unittest import unittest
import numpy as np import numpy as np
from eager_op_test import OpTest, convert_float_to_uint16 from eager_op_test import (
OpTest,
convert_float_to_uint16,
convert_uint16_to_float,
)
import paddle import paddle
from paddle.fluid import core from paddle.fluid import core
...@@ -51,6 +55,7 @@ class TestTopkOp(OpTest): ...@@ -51,6 +55,7 @@ class TestTopkOp(OpTest):
self.dtype = np.float64 self.dtype = np.float64
self.input_data = np.random.rand(10, 20) self.input_data = np.random.rand(10, 20)
self.init_args() self.init_args()
self.if_enable_cinn()
self.inputs = {'X': self.input_data} self.inputs = {'X': self.input_data}
self.attrs = {'k': self.k, 'axis': self.axis, 'largest': self.largest} self.attrs = {'k': self.k, 'axis': self.axis, 'largest': self.largest}
output, indices = numpy_topk( output, indices = numpy_topk(
...@@ -58,6 +63,9 @@ class TestTopkOp(OpTest): ...@@ -58,6 +63,9 @@ class TestTopkOp(OpTest):
) )
self.outputs = {'Out': output, 'Indices': indices} self.outputs = {'Out': output, 'Indices': indices}
def if_enable_cinn(self):
pass
def test_check_output(self): def test_check_output(self):
self.check_output() self.check_output()
...@@ -115,6 +123,7 @@ class TestTopkOp4(TestTopkOp): ...@@ -115,6 +123,7 @@ class TestTopkOp4(TestTopkOp):
self.dtype = np.float64 self.dtype = np.float64
self.input_data = np.random.rand(10, 10, 5) self.input_data = np.random.rand(10, 10, 5)
self.init_args() self.init_args()
self.if_enable_cinn()
self.inputs = {'X': self.input_data} self.inputs = {'X': self.input_data}
self.attrs = {'k': self.k, 'axis': self.axis, 'largest': self.largest} self.attrs = {'k': self.k, 'axis': self.axis, 'largest': self.largest}
output, indices = numpy_topk( output, indices = numpy_topk(
...@@ -137,6 +146,7 @@ class TestTopkOp5(TestTopkOp): ...@@ -137,6 +146,7 @@ class TestTopkOp5(TestTopkOp):
self.dtype = np.float64 self.dtype = np.float64
self.input_data = np.random.rand(10, 10, 5) self.input_data = np.random.rand(10, 10, 5)
self.init_args() self.init_args()
self.if_enable_cinn()
self.inputs = {'X': self.input_data} self.inputs = {'X': self.input_data}
self.attrs = {'k': self.k, 'axis': self.axis, 'largest': self.largest} self.attrs = {'k': self.k, 'axis': self.axis, 'largest': self.largest}
output, indices = numpy_topk( output, indices = numpy_topk(
...@@ -159,6 +169,7 @@ class TestTopkOp6(TestTopkOp): ...@@ -159,6 +169,7 @@ class TestTopkOp6(TestTopkOp):
self.dtype = np.float32 self.dtype = np.float32
self.input_data = np.random.rand(10, 10, 5) self.input_data = np.random.rand(10, 10, 5)
self.init_args() self.init_args()
self.if_enable_cinn()
self.inputs = {'X': self.input_data} self.inputs = {'X': self.input_data}
self.attrs = {'k': self.k, 'axis': self.axis, 'largest': self.largest} self.attrs = {'k': self.k, 'axis': self.axis, 'largest': self.largest}
output, indices = numpy_topk( output, indices = numpy_topk(
...@@ -181,6 +192,7 @@ class TestTopkOp7(TestTopkOp): ...@@ -181,6 +192,7 @@ class TestTopkOp7(TestTopkOp):
self.dtype = np.float16 self.dtype = np.float16
self.input_data = np.random.rand(10, 20, 10) self.input_data = np.random.rand(10, 20, 10)
self.init_args() self.init_args()
self.if_enable_cinn()
self.inputs = {'X': self.input_data} self.inputs = {'X': self.input_data}
self.attrs = {'k': self.k, 'axis': self.axis, 'largest': self.largest} self.attrs = {'k': self.k, 'axis': self.axis, 'largest': self.largest}
output, indices = numpy_topk( output, indices = numpy_topk(
...@@ -198,6 +210,7 @@ class TestTopkFP16Op(TestTopkOp): ...@@ -198,6 +210,7 @@ class TestTopkFP16Op(TestTopkOp):
self.prim_op_type = "prim" self.prim_op_type = "prim"
self.input_data = np.random.rand(10, 20).astype(self.dtype) self.input_data = np.random.rand(10, 20).astype(self.dtype)
self.init_args() self.init_args()
self.if_enable_cinn()
self.inputs = {'X': self.input_data} self.inputs = {'X': self.input_data}
self.attrs = {'k': self.k, 'axis': self.axis, 'largest': self.largest} self.attrs = {'k': self.k, 'axis': self.axis, 'largest': self.largest}
output, indices = numpy_topk( output, indices = numpy_topk(
...@@ -218,9 +231,11 @@ class TestTopkBF16Op(TestTopkOp): ...@@ -218,9 +231,11 @@ class TestTopkBF16Op(TestTopkOp):
self.public_python_api = paddle.topk self.public_python_api = paddle.topk
self.dtype = np.uint16 self.dtype = np.uint16
self.prim_op_type = "prim" self.prim_op_type = "prim"
self.input_data = np.random.rand(10, 20).astype(np.float32) self.input_data = np.random.random([10, 20]).astype(np.float32)
self.init_args() self.init_args()
self.if_enable_cinn()
self.inputs = {'X': convert_float_to_uint16(self.input_data)} self.inputs = {'X': convert_float_to_uint16(self.input_data)}
self.input_data = convert_uint16_to_float(self.inputs['X'])
self.attrs = {'k': self.k, 'axis': self.axis, 'largest': self.largest} self.attrs = {'k': self.k, 'axis': self.axis, 'largest': self.largest}
output, indices = numpy_topk( output, indices = numpy_topk(
self.input_data, axis=self.axis, k=self.k, largest=self.largest self.input_data, axis=self.axis, k=self.k, largest=self.largest
...@@ -230,13 +245,16 @@ class TestTopkBF16Op(TestTopkOp): ...@@ -230,13 +245,16 @@ class TestTopkBF16Op(TestTopkOp):
'Indices': indices, 'Indices': indices,
} }
def if_enable_cinn(self):
self.enable_cinn = False
def test_check_output(self): def test_check_output(self):
place = core.CUDAPlace(0) place = core.CUDAPlace(0)
self.check_output_with_place(place, check_eager=True) self.check_output_with_place(place)
def test_check_grad(self): def test_check_grad(self):
place = core.CUDAPlace(0) place = core.CUDAPlace(0)
self.check_grad_with_place(place, {'X'}, 'Out', check_eager=True) self.check_grad_with_place(place, ['X'], 'Out', check_prim=True)
class TestTopKAPI(unittest.TestCase): class TestTopKAPI(unittest.TestCase):
......
...@@ -244,7 +244,7 @@ class TestAutoTuneTransposeBF16Op(OpTest): ...@@ -244,7 +244,7 @@ class TestAutoTuneTransposeBF16Op(OpTest):
self.python_api = paddle.transpose self.python_api = paddle.transpose
self.public_python_api = paddle.transpose self.public_python_api = paddle.transpose
self.prim_op_type = "prim" self.prim_op_type = "prim"
self.enable_cinn = False self.if_enable_cinn()
x = np.random.random(self.shape).astype("float32") x = np.random.random(self.shape).astype("float32")
self.inputs = {'X': convert_float_to_uint16(x)} self.inputs = {'X': convert_float_to_uint16(x)}
self.attrs = { self.attrs = {
...@@ -258,6 +258,9 @@ class TestAutoTuneTransposeBF16Op(OpTest): ...@@ -258,6 +258,9 @@ class TestAutoTuneTransposeBF16Op(OpTest):
'Out': self.inputs['X'].transpose(self.axis), 'Out': self.inputs['X'].transpose(self.axis),
} }
def if_enable_cinn(self):
self.enable_cinn = False
def initTestCase(self): def initTestCase(self):
fluid.core.set_autotune_range(0, 3) fluid.core.set_autotune_range(0, 3)
fluid.core.update_autotune_status() fluid.core.update_autotune_status()
...@@ -283,7 +286,7 @@ class TestTransposeFP16Op(OpTest): ...@@ -283,7 +286,7 @@ class TestTransposeFP16Op(OpTest):
self.initTestCase() self.initTestCase()
self.dtype = np.float16 self.dtype = np.float16
self.prim_op_type = "prim" self.prim_op_type = "prim"
self.enable_cinn = False self.if_enable_cinn()
self.python_api = paddle.transpose self.python_api = paddle.transpose
self.public_python_api = paddle.transpose self.public_python_api = paddle.transpose
x = np.random.random(self.shape).astype(self.dtype) x = np.random.random(self.shape).astype(self.dtype)
...@@ -298,6 +301,9 @@ class TestTransposeFP16Op(OpTest): ...@@ -298,6 +301,9 @@ class TestTransposeFP16Op(OpTest):
'Out': self.inputs['X'].transpose(self.axis), 'Out': self.inputs['X'].transpose(self.axis),
} }
def if_enable_cinn(self):
pass
def init_op_type(self): def init_op_type(self):
self.op_type = "transpose2" self.op_type = "transpose2"
self.use_mkldnn = False self.use_mkldnn = False
...@@ -323,6 +329,7 @@ class TestTransposeBF16Op(OpTest): ...@@ -323,6 +329,7 @@ class TestTransposeBF16Op(OpTest):
self.python_api = paddle.transpose self.python_api = paddle.transpose
self.public_python_api = paddle.transpose self.public_python_api = paddle.transpose
x = np.random.random(self.shape).astype("float32") x = np.random.random(self.shape).astype("float32")
self.if_enable_cinn()
self.inputs = {'X': convert_float_to_uint16(x)} self.inputs = {'X': convert_float_to_uint16(x)}
self.attrs = { self.attrs = {
...@@ -336,6 +343,9 @@ class TestTransposeBF16Op(OpTest): ...@@ -336,6 +343,9 @@ class TestTransposeBF16Op(OpTest):
'Out': self.inputs['X'].transpose(self.axis), 'Out': self.inputs['X'].transpose(self.axis),
} }
def if_enable_cinn(self):
self.enable_cinn = False
def init_op_type(self): def init_op_type(self):
self.op_type = "transpose2" self.op_type = "transpose2"
self.use_mkldnn = False self.use_mkldnn = False
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册