This repository was archived by the owner on Aug 1, 2023. It is now read-only.
Fork/join parallelism for ensemble export modules#310
Closed
jamesr66a wants to merge 1 commit intopytorch:masterfrom
Closed
Fork/join parallelism for ensemble export modules#310jamesr66a wants to merge 1 commit intopytorch:masterfrom
jamesr66a wants to merge 1 commit intopytorch:masterfrom
Conversation
11d8575 to
c8a04d7
Compare
jamesr66a
pushed a commit
to jamesr66a/translate-1
that referenced
this pull request
Feb 2, 2019
Summary: Pull Request resolved: pytorch#310 This adds fork/join parallelism to the EncoderEnsemble and DecoderBatchedStepEnsemble models. Note that when run in Python, these calls are no-op, and similarly we remove these calls before exporting to ONNX. But when we run in the PyTorch native runtime, we will now have the opportunity to run these sections in parallel. Benchmark validation is pending me slogging through FBLearner Flow issues, as usual Differential Revision: D13827861 fbshipit-source-id: 3adfce3f8ba90ef0ee29a9a6ec81af183a1eebf8
c8a04d7 to
51ce903
Compare
jamesr66a
pushed a commit
to jamesr66a/translate-1
that referenced
this pull request
Feb 2, 2019
Summary: Pull Request resolved: pytorch#310 This adds fork/join parallelism to the EncoderEnsemble and DecoderBatchedStepEnsemble models. Note that when run in Python, these calls are no-op, and similarly we remove these calls before exporting to ONNX. But when we run in the PyTorch native runtime, we will now have the opportunity to run these sections in parallel. Benchmark validation is pending me slogging through FBLearner Flow issues, as usual Differential Revision: D13827861 fbshipit-source-id: 785444186426fe07f3f555d2ec13895e3095a87b
51ce903 to
cc9a800
Compare
jamesr66a
pushed a commit
to jamesr66a/translate-1
that referenced
this pull request
Feb 5, 2019
Summary: Pull Request resolved: pytorch#310 This adds fork/join parallelism to the EncoderEnsemble and DecoderBatchedStepEnsemble models. Note that when run in Python, these calls are no-op, and similarly we remove these calls before exporting to ONNX. But when we run in the PyTorch native runtime, we will now have the opportunity to run these sections in parallel. Benchmark validation is pending me slogging through FBLearner Flow issues, as usual Reviewed By: jmp84 Differential Revision: D13827861 fbshipit-source-id: 6f5f7993eef557f8715fca1a684f0561fec6c1ef
cc9a800 to
82f2c31
Compare
jamesr66a
pushed a commit
to jamesr66a/translate-1
that referenced
this pull request
Feb 5, 2019
Summary: Pull Request resolved: pytorch#310 This adds fork/join parallelism to the EncoderEnsemble and DecoderBatchedStepEnsemble models. Note that when run in Python, these calls are no-op, and similarly we remove these calls before exporting to ONNX. But when we run in the PyTorch native runtime, we will now have the opportunity to run these sections in parallel. Benchmark validation is pending me slogging through FBLearner Flow issues, as usual Reviewed By: jmp84 Differential Revision: D13827861 fbshipit-source-id: 0b88412198ba9d43ab4990e9812a306f292fbf67
Summary: Pull Request resolved: pytorch#310 This adds fork/join parallelism to the EncoderEnsemble and DecoderBatchedStepEnsemble models. Note that when run in Python, these calls are no-op, and similarly we remove these calls before exporting to ONNX. But when we run in the PyTorch native runtime, we will now have the opportunity to run these sections in parallel. Benchmark validation is pending me slogging through FBLearner Flow issues, as usual Reviewed By: jmp84 Differential Revision: D13827861 fbshipit-source-id: 2d6d9e32836fef7f30f0c3f430a6d3a1a7d262f5
82f2c31 to
83bd519
Compare
facebook-github-bot
pushed a commit
to pytorch/pytorch
that referenced
this pull request
Feb 5, 2019
Summary: Pull Request resolved: pytorch/translate#310 This adds fork/join parallelism to the EncoderEnsemble and DecoderBatchedStepEnsemble models. Note that when run in Python, these calls are no-op, and similarly we remove these calls before exporting to ONNX. But when we run in the PyTorch native runtime, we will now have the opportunity to run these sections in parallel. Benchmark validation is pending me slogging through FBLearner Flow issues, as usual Reviewed By: jmp84 Differential Revision: D13827861 fbshipit-source-id: 0cb9df6e10c0ba64a6b81fa374e077bce90f1d5b
laurentdupin
pushed a commit
to laurentdupin/pytorch
that referenced
this pull request
Apr 24, 2026
Summary: Pull Request resolved: pytorch/translate#310 This adds fork/join parallelism to the EncoderEnsemble and DecoderBatchedStepEnsemble models. Note that when run in Python, these calls are no-op, and similarly we remove these calls before exporting to ONNX. But when we run in the PyTorch native runtime, we will now have the opportunity to run these sections in parallel. Benchmark validation is pending me slogging through FBLearner Flow issues, as usual Reviewed By: jmp84 Differential Revision: D13827861 fbshipit-source-id: 0cb9df6e10c0ba64a6b81fa374e077bce90f1d5b
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Summary:
This adds fork/join parallelism to the EncoderEnsemble and DecoderBatchedStepEnsemble models. Note that when run in Python, these calls are no-op, and similarly we remove these calls before exporting to ONNX. But when we run in the PyTorch native runtime, we will now have the opportunity to run these sections in parallel.
Benchmark validation is pending me slogging through FBLearner Flow issues, as usual
Differential Revision: D13827861