未验证 提交 4a823c5f 编写于 作者: L liym27 提交者: GitHub

[NPU] support fp16 of input for api pow (#31871)

上级 f354e1d6
...@@ -9525,8 +9525,8 @@ def pow(x, factor=1.0, name=None): ...@@ -9525,8 +9525,8 @@ def pow(x, factor=1.0, name=None):
y_2 = fluid.layers.pow(x, factor=factor_tensor) y_2 = fluid.layers.pow(x, factor=factor_tensor)
# y_2 is x^{3.0} # y_2 is x^{3.0}
""" """
check_variable_and_dtype(x, 'x', ['int32', 'int64', 'float32', 'float64'], check_variable_and_dtype(
'pow') x, 'x', ['int32', 'int64', 'float16', 'float32', 'float64'], 'pow')
helper = LayerHelper('pow', **locals()) helper = LayerHelper('pow', **locals())
inputs = {'X': x} inputs = {'X': x}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册