Enhance/gpu support - #203
Merged
Merged
Conversation
HYLcool
reviewed
Feb 8, 2024
Collaborator
How about adding these instructions to the DeveloperGuide docs as well? |
Collaborator
Author
|
Added GPU development guide. |
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
GPU Model Loading
CUDA_VISIBLE_DEVICESsetting ensures only designated GPUs are utilized.num_procparameter is intelligently adjusted for optimal performance with mixed CPU/GPU operations.Multiprocessing Strategy
forkserveris the default choice, switching tospawnif necessary.forkprovides the best compatibility and performance.MP_START_METHODenvironment variable, with permissible values includingauto,fork,forkserver, andspawn.New Operator Development
self._accelerator = 'cuda'.compute_statsandprocessmethods should now include an optionalrankparameter (rank=None) to support multi-GPU setups.