-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add parallel executor tests #9950
Merged
JiayiFeng
merged 9 commits into
PaddlePaddle:develop
from
JiayiFeng:add_parallel_executor_tests
Apr 18, 2018
Merged
Changes from 7 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
5fc8326
Add parallel accuracy test
JiayiFeng fbd5cf6
stash
JiayiFeng 22df230
rename 'feed_dict' in ParallelExecutor.run() to 'feed'
JiayiFeng e412b1a
Merge branch 'unify_executor_interface' into add_parallel_executor_tests
JiayiFeng 415460b
stash
JiayiFeng ab86fb1
complete parallel accuracy test
JiayiFeng 93276fd
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
JiayiFeng 1de9ede
Follow comments
JiayiFeng e84d3a7
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
JiayiFeng File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -200,14 +200,30 @@ class TestParallelExecutorBase(unittest.TestCase): | |
def check_network_convergence(self, | ||
method, | ||
memory_opt=True, | ||
iter=10, | ||
iter=50, | ||
batch_size=None, | ||
allow_op_delay=False, | ||
feed_dict={}): | ||
feed_dict={}, | ||
seed=None, | ||
use_parallel_executor=True): | ||
def run_executor(exe, feed, fetch_list, program=None): | ||
if isinstance(exe, fluid.ParallelExecutor): | ||
res = exe.run(fetch_list=fetch_list, feed=feed) | ||
elif isinstance(exe, fluid.Executor): | ||
if program is None: | ||
program = fluid.default_main_program() | ||
res = exe.run(program=program, feed=feed, fetch_list=fetch_list) | ||
else: | ||
raise ValueError('Unkown type exe') | ||
return res | ||
|
||
main = fluid.Program() | ||
startup = fluid.Program() | ||
startup.random_seed = 1 # Fix random seed | ||
with fluid.program_guard(main, startup): | ||
if seed is not None: | ||
startup.random_seed = seed | ||
main.random_seed = seed | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
loss = method(use_feed=len(feed_dict) > 0) | ||
adam = fluid.optimizer.Adam() | ||
adam.minimize(loss) | ||
|
@@ -217,18 +233,24 @@ def check_network_convergence(self, | |
startup_exe = fluid.Executor(place) | ||
startup_exe.run(startup) | ||
|
||
exe = fluid.ParallelExecutor( | ||
True, loss_name=loss.name, allow_op_delay=allow_op_delay) | ||
if use_parallel_executor: | ||
exe = fluid.ParallelExecutor( | ||
True, loss_name=loss.name, allow_op_delay=allow_op_delay) | ||
else: | ||
exe = fluid.Executor(place=place) | ||
|
||
if batch_size is not None: | ||
batch_size *= fluid.core.get_cuda_device_count() | ||
begin = time.time() | ||
first_loss, = exe.run([loss.name], feed_dict=feed_dict) | ||
first_loss, = run_executor( | ||
exe=exe, feed=feed_dict, fetch_list=[loss.name]) | ||
first_loss = numpy.array(first_loss) | ||
|
||
for i in xrange(iter): | ||
exe.run([], feed_dict=feed_dict) | ||
run_executor(exe=exe, feed=feed_dict, fetch_list=[]) | ||
|
||
last_loss, = exe.run([loss.name], feed_dict=feed_dict) | ||
last_loss, = run_executor( | ||
exe=exe, feed=feed_dict, fetch_list=[loss.name]) | ||
end = time.time() | ||
|
||
if batch_size is not None: | ||
|
@@ -239,6 +261,7 @@ def check_network_convergence(self, | |
|
||
print first_loss, last_loss | ||
# self.assertGreater(first_loss[0], last_loss[0]) | ||
return first_loss, last_loss | ||
|
||
|
||
class TestMNIST(TestParallelExecutorBase): | ||
|
@@ -268,6 +291,27 @@ def test_simple_fc(self): | |
simple_fc_net, feed_dict={"image": img, | ||
"label": label}) | ||
|
||
def test_simple_fc_parallel_accuracy(self): | ||
img = numpy.zeros(shape=[32, 784], dtype='float32') | ||
label = numpy.ones(shape=[32, 1], dtype='int64') | ||
single_first_loss, single_last_loss = self.check_network_convergence( | ||
method=simple_fc_net, | ||
seed=1000, | ||
feed_dict={"image": img, | ||
"label": label}, | ||
use_parallel_executor=False) | ||
parallel_first_loss, parallel_last_loss = self.check_network_convergence( | ||
method=simple_fc_net, | ||
seed=1000, | ||
feed_dict={"image": img, | ||
"label": label}, | ||
use_parallel_executor=True) | ||
|
||
for p_f in parallel_first_loss: | ||
self.assertAlmostEquals(p_f, single_first_loss[0], delta=1e-6) | ||
for p_l in parallel_last_loss: | ||
self.assertAlmostEquals(p_l, single_last_loss[0], delta=1e-6) | ||
|
||
def test_batchnorm_fc(self): | ||
self.check_network_convergence(fc_with_batchnorm) | ||
img = numpy.zeros(shape=[32, 784], dtype='float32') | ||
|
@@ -496,10 +540,10 @@ def test_parallel_testing(self): | |
share_vars_from=train_exe) | ||
|
||
for i in xrange(5): | ||
test_loss, = test_exe.run([loss.name], feed_dict=feed_dict) | ||
test_loss, = test_exe.run([loss.name], feed=feed_dict) | ||
test_loss = numpy.array(test_loss) | ||
|
||
train_loss, = train_exe.run([loss.name], feed_dict=feed_dict) | ||
train_loss, = train_exe.run([loss.name], feed=feed_dict) | ||
train_loss = numpy.array(train_loss) | ||
self.assertTrue( | ||
numpy.allclose( | ||
|
@@ -649,5 +693,5 @@ def test_all(self): | |
for i in xrange(10): | ||
cur_batch = next(data) | ||
print map(numpy.array, | ||
pe.run(feed_dict=feeder.feed(cur_batch), | ||
pe.run(feed=feeder.feed(cur_batch), | ||
fetch_list=[avg_cost.name]))[0] |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There should have a warning to notify users that
feed_dict
is deprecated.