-
Notifications
You must be signed in to change notification settings - Fork 559
Add a patch for mismatched batch size. #6029
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
golechwierowicz
merged 2 commits into
master
from
olechwierowicz/mismatch-batch-size-patch
Dec 7, 2023
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| diff --git a/torchbenchmark/util/model.py b/torchbenchmark/util/model.py | ||
| index 8593ba4c..57fef507 100644 | ||
| --- a/torchbenchmark/util/model.py | ||
| +++ b/torchbenchmark/util/model.py | ||
| @@ -182,6 +182,7 @@ class BenchmarkModel(metaclass=PostInitProcessor): | ||
|
|
||
| # use the device suggestion on CUDA inference tests, key should be either eval_batch_size or train_batch_size | ||
| device_batch_size_key = f"{self.test}_batch_size" | ||
| + # A patch to making sure batch sizes are comparable. It's needed because xla device string is unrecognized. | ||
| + current_device_name = 'NVIDIA A100-SXM4-40GB' | ||
| if self.metadata and "devices" in self.metadata and current_device_name in self.metadata["devices"] \ | ||
| and device_batch_size_key in self.metadata["devices"][current_device_name]: | ||
| batch_size = self.metadata["devices"][current_device_name][device_batch_size_key] | ||
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.
Uh oh!
There was an error while loading. Please reload this page.