-
Notifications
You must be signed in to change notification settings - Fork 378
AN-291 Remove Nvidia Tesla K80 GPU support #7583
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
+41
−50
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
ed01b3b
Remove K80 from code, unit tests
aednichols 8a5e23a
Remove K80 from docs
aednichols b002d01
Rename file to match class name
aednichols 730e8e9
Re-enable test disabled since 2020
aednichols fc95f5b
Changelog
aednichols 0554945
Remove unused Nvidia driver version for now
aednichols 8c8e548
Upgrade to current GCP Batch library
aednichols 9f8492e
Document newly available `setDriverVersion()` function
aednichols 5d6be69
Documentation
aednichols 43ad89d
Fix test. Ignore driver in test.
aednichols 62acf8e
Test fixes
aednichols 4ea42c0
Default to a modern T4 GPU on GCP Batch
aednichols e4c865f
Doc, comment updates
aednichols 5305670
Doc grammar
aednichols db6211d
Unit test compile fix
aednichols aef6eb7
Merge remote-tracking branch 'origin/develop' into aen_an_144
aednichols 02854f1
Revert Batch upgrade: `NoClassDefFoundError SecureSessionAgent`
aednichols 9d676df
Account for scatter removal
aednichols 174f103
Account for scatter removal take 2
aednichols 568f3fc
Typo fix
aednichols a80b5af
Merge remote-tracking branch 'origin/develop' into aen_an_144
aednichols 20f5f99
Merge branch 'develop' into aen_an_144
aednichols 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
11 changes: 8 additions & 3 deletions
11
centaur/src/main/resources/standardTestCases/gpu_cuda_image.test
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 |
|---|---|---|
| @@ -1,14 +1,19 @@ | ||
| name: gpu_cuda_image | ||
| testFormat: workflowsuccess | ||
| backends: [Papi, GCPBATCH] | ||
| ignore: true | ||
|
|
||
| files { | ||
| workflow: gpu_on_papi/gpu_cuda_image.wdl | ||
| } | ||
|
|
||
| # As of November 2024, GCP Batch was using driver 550 and Life Sciences 535. | ||
| # Neither was on the 418 version that used to be specified in this test. | ||
| # | ||
| # On Life Sciences it seems to be straight up ignored by the API. | ||
| # | ||
| # In Batch it is not wired through Cromwell, and we may not do so if we don't find a reason to. | ||
|
|
||
| metadata { | ||
| status: Succeeded | ||
| "outputs.gpu_cuda_image.modprobe_check.0": "good" | ||
| "outputs.gpu_cuda_image.smi_check.0": "good" | ||
| "outputs.gpu_cuda_image.smi_check": "gpu_good\nvram_good" | ||
| } |
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
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
Oops, something went wrong.
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.
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.
I'm open to opinions on this default. T4 is the most modern GPU of the lot and the one I see used most often in practice.
I also think few people rely on the default GPU anyway, which is a good thing – because Google deleted the old default!
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.
T4 make sense. It would either be that or the V100 and the T4 is cheaper.