diff --git a/python/paddle/v2/fluid/tests/test_parallel_op.py b/python/paddle/v2/fluid/tests/test_parallel_op.py index 09424619a1ad95eb5f024d7a03b4154d0a648478..5394df7360e5ba60408b7f53494c3e0152c424a7 100644 --- a/python/paddle/v2/fluid/tests/test_parallel_op.py +++ b/python/paddle/v2/fluid/tests/test_parallel_op.py @@ -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')