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

add convert rules for fill_any_like op in paddle science (#45985)

* add convert rules for fill_any_like op in paddle science

* add unit test for fill_any_like op in paddle science

* modify fill_any_like convert rule

* modify fill_any_like convert rule dtype
上级 c53e92fc
......@@ -18,6 +18,7 @@ import paddle
from paddle.fluid.layer_helper import LayerHelper
from paddle.fluid.layers.utils import flatten
from paddle.incubate.autograd.primrules import _orig2prim, _prim2orig, _jvp, _transpose
import paddle.fluid.core as core
paddle.enable_static()
......@@ -363,6 +364,46 @@ class TestFillZerosLikeOrig2Prim(TestElementWiseAddOrig2Prim):
self.out_map = {0: self.output['Out']}
class TestFillAnyLikeOrig2Prim(TestElementWiseAddOrig2Prim):
def init_data(self):
self.op_type = 'fill_any_like'
X = paddle.static.data(name='X', shape=[5, 6], dtype='int64')
self.input = {
'X': X,
}
self.output = {
'Out':
self.layer_help.create_variable_for_type_inference(dtype=X.dtype)
}
self.attrs = {}
self.orig2prim_args = (X, )
self.all_ops = ['fill_any_like', 'fill_constant_p']
self.out_map = {0: self.output['Out']}
class TestFillAnyLikeOrig2Prim2(TestElementWiseAddOrig2Prim):
def init_data(self):
self.op_type = 'fill_any_like'
X = paddle.static.data(name='X', shape=[5, 6], dtype='int64')
self.input = {
'X': X,
}
self.output = {
'Out':
self.layer_help.create_variable_for_type_inference(dtype=X.dtype)
}
self.attrs = {'dtype': paddle.float32, 'value': 5}
self.orig2prim_args = (X, )
self.all_ops = ['fill_any_like', 'fill_constant_p']
self.out_map = {0: self.output['Out']}
class TestSumOrig2Prim(TestElementWiseAddOrig2Prim):
def init_data(self):
......
......@@ -29,6 +29,8 @@ from .primreg import (REGISTER_JVP, REGISTER_ORIG2PRIM, REGISTER_PRIM2ORIG,
lookup_orig2prim, lookup_prim2orig, lookup_transpose,
op_position_inputs, op_position_output)
from .utils import INT_DTYPE_2_STRING, get_input_var_list, get_output_var_list
from paddle.fluid.data_feeder import convert_dtype
from paddle.fluid.framework import convert_np_dtype_to_dtype_
def _orig2prim(op, *args):
......@@ -66,6 +68,7 @@ elementwise_sub
elementwise_mul
tanh
fill_zeros_like
fill_any_like
sum
index_select
scale
......@@ -195,6 +198,16 @@ def fill_zeros_like_orig2prim(op, x):
return fill_const(value=0.0, shape=x.shape, dtype=x.dtype)
@REGISTER_ORIG2PRIM('fill_any_like')
def fill_any_like_orig2prim(op, x):
if op.attr('dtype') == -1:
return fill_const(value=op.attr('value'), shape=x.shape, dtype=x.dtype)
return fill_const(value=op.attr('value'),
shape=x.shape,
dtype=convert_np_dtype_to_dtype_(
convert_dtype(INT_DTYPE_2_STRING[op.attr('dtype')])))
@REGISTER_ORIG2PRIM('sum')
def sum_orig2prim(op, xs):
x0 = xs[0]
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册