提交 0f8489c4 编写于 作者: Y Yang Yu

Fix style

上级 b397febc
......@@ -175,8 +175,10 @@ class ParallelOpTest(BaseParallelForTest):
class ParallelOpTestMultipleInput(BaseParallelForTest):
@staticmethod
def __network__():
x = fluid.layers.data(shape=[784], dtype='float32', name='img1', stop_gradient=False)
y = fluid.layers.data(shape=[784], dtype='float32', name='img2', stop_gradient=False)
x = fluid.layers.data(
shape=[784], dtype='float32', name='img1', stop_gradient=False)
y = fluid.layers.data(
shape=[784], dtype='float32', name='img2', stop_gradient=False)
yield [x, y]
x = x + y
hidden1 = fluid.layers.fc(input=x, size=200, param_attr='fc1.w')
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册