未验证 提交 a2f141c0 编写于 作者: S Shibo Tao 提交者: GitHub

fix reciprocal op doc(#25498)

上级 4717bdbc
...@@ -286,27 +286,14 @@ Examples: ...@@ -286,27 +286,14 @@ Examples:
.. code-block:: python .. code-block:: python
import paddle import paddle
import paddle.fluid as fluid
import numpy as np import numpy as np
inputs = fluid.data(name="x", shape = [None, 4], dtype='float32') paddle.enable_imperative()
output = paddle.%s(inputs) x_data = np.array([1, 2, 3, 4]).astype(np.float32)
x = paddle.imperative.to_variable(x_data)
exe = fluid.Executor(fluid.CPUPlace()) res = paddle.%s(x)
exe.run(fluid.default_startup_program()) print(res.numpy())
""" % op_type
#input.shape=1X4, batch_size=1
img = np.array([[1.0, 2.0, 3.0, 4.0]]).astype(np.float32)
res = exe.run(fluid.default_main_program(), feed={'x':img}, fetch_list=[output])
print(res)
# using dygraph
with paddle.imperative.guard():
dygraph_input = paddle.imperative.to_variable(img)
dygraph_output = paddle.%s(dygraph_input)
print(dygraph_output.numpy())
""" % (op_type, op_type)
return func return func
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册