-
Notifications
You must be signed in to change notification settings - Fork 6k
Enable ngraph through build_strategy #19266
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
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
411b8d9
enable ngraph throught build_strategy test=develop
baojun-nervana d8c3588
add unittest test=develop
baojun-nervana 62f1de2
put use_ngraph unconditional test=develop
baojun-nervana 7cdb10e
remove paddle_enforce test=develop
baojun-nervana 36cc3c0
remove paddle_enforce test=develop
baojun-nervana fe5bc5c
fix copyright test=develop
baojun-nervana b93323b
limit for ngraph only test=develop
baojun-nervana 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
87 changes: 87 additions & 0 deletions
87
python/paddle/fluid/tests/unittests/ngraph/test_parallel_executor_ngraph.py
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,87 @@ | ||
| # Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| from __future__ import print_function | ||
|
|
||
| from paddle.fluid.tests.unittests.simple_nets import simple_fc_net | ||
| import paddle.fluid as fluid | ||
| import paddle.fluid.core as core | ||
| from paddle.fluid import compiler | ||
| import numpy as np | ||
| import unittest | ||
| import os | ||
| import sys | ||
| import math | ||
|
|
||
|
|
||
| class TestPallelExecutorNgraph(unittest.TestCase): | ||
| def check_network_convergence(self, build_strategy=None): | ||
| os.environ['CPU_NUM'] = str(2) | ||
| main = fluid.Program() | ||
| startup = fluid.Program() | ||
| with fluid.program_guard(main, startup): | ||
| loss = simple_fc_net() | ||
| test_program = main.clone(for_test=True) | ||
|
|
||
| opt = fluid.optimizer.Adam(learning_rate=0.001) | ||
| opt.minimize(loss) | ||
|
|
||
| batch_size = 32 | ||
| image = np.random.normal(size=(batch_size, 784)).astype('float32') | ||
| label = np.random.randint(0, 10, (batch_size, 1), dtype="int64") | ||
|
|
||
| place = fluid.CPUPlace() | ||
| exe = fluid.Executor(place) | ||
| exe.run(startup) | ||
| feed_dict = {'image': image, 'label': label} | ||
|
|
||
| train_cp = compiler.CompiledProgram(main).with_data_parallel( | ||
| loss_name=loss.name, build_strategy=build_strategy) | ||
| test_cp = compiler.CompiledProgram(test_program).with_data_parallel( | ||
| loss_name=loss.name, | ||
| build_strategy=build_strategy, | ||
| share_vars_from=train_cp) | ||
|
|
||
| for i in range(5): | ||
| _ = exe.run(train_cp, fetch_list=[loss.name], feed=feed_dict) | ||
| test_loss, = exe.run(test_cp, | ||
| fetch_list=[loss.name], | ||
| feed=feed_dict) | ||
| train_loss = exe.run(train_cp, | ||
| fetch_list=[loss.name], | ||
| feed=feed_dict) | ||
|
|
||
| avg_test_loss_val = np.array(test_loss).mean() | ||
| if math.isnan(float(avg_test_loss_val)): | ||
| sys.exit("got NaN loss, testing failed.") | ||
|
|
||
| avg_train_loss_val = np.array(train_loss).mean() | ||
| if math.isnan(float(avg_train_loss_val)): | ||
| sys.exit("got NaN loss, training failed.") | ||
|
|
||
| self.assertTrue( | ||
| np.allclose( | ||
| train_loss, test_loss, atol=1e-8), | ||
| "Train loss: " + str(train_loss) + "\n Test loss:" + | ||
| str(test_loss)) | ||
|
|
||
| def test_parallel_testing(self): | ||
| build_strategy = fluid.BuildStrategy() | ||
| build_strategy.enable_inplace = False | ||
| build_strategy.memory_optimize = False | ||
| self.check_network_convergence(build_strategy=build_strategy) | ||
|
|
||
|
|
||
| if __name__ == '__main__': | ||
| unittest.main() |
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.
remove this?
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.
Or you can remove in next PR