Skip to content

Commit

Permalink
"relauch ci"
Browse files Browse the repository at this point in the history
  • Loading branch information
dzhwinter committed Nov 14, 2017
1 parent 85b839f commit b3fb814
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion python/paddle/v2/framework/tests/book/test_fit_a_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
place = core.CPUPlace()
exe = Executor(place)

exe.run(startup_program, feed={}, fetch_list=[])
exe.run(startup_program)

PASS_NUM = 100
for pass_id in range(PASS_NUM):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def conv_block(input,
place = core.CPUPlace()
exe = Executor(place)

exe.run(g_startup_program, feed={}, fetch_list=[])
exe.run(g_startup_program)

for pass_id in range(PASS_NUM):
batch_id = 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
place = core.CPUPlace()
exe = Executor(place)

exe.run(startup_program, feed={}, fetch_list=[])
exe.run(startup_program)

PASS_NUM = 100
for pass_id in range(PASS_NUM):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def main():
place = core.CPUPlace()

exe = Executor(place)
exe.run(startup_program, feed={}, fetch_list=[])
exe.run(startup_program)

train_reader = paddle.batch(
paddle.reader.shuffle(
Expand Down
2 changes: 1 addition & 1 deletion python/paddle/v2/framework/tests/book/test_word2vec.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
# below exit line.
exit(0)

exe.run(startup_program, feed={}, fetch_list=[])
exe.run(startup_program)
PASS_NUM = 100
for pass_id in range(PASS_NUM):
for data in train_reader():
Expand Down

0 comments on commit b3fb814

Please sign in to comment.