-
Notifications
You must be signed in to change notification settings - Fork 287
Move compatiblity-related code into a separate compat module
#652
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
9 commits
Select commit
Hold shift + click to select a range
57d96a7
Add `compat` module to encapsulate imports of optional 3rd party fram…
shadeMe e85cd38
Replace references to compat code in `.util` with references to `.com…
shadeMe 9f068a4
Update example notebook
shadeMe 990bad5
`util.set_active_gpu`: Return `None` if GPU is unavailable
shadeMe 24b32ca
`util`: Import tensorflow and mxnet with shorthand names
shadeMe 874f100
`api`: Re-export `has_cupy` from `compat`
shadeMe e9efe68
`backends`: Preserve `has_cupy` export for bwd-compat, remove superfl…
shadeMe bec84ae
Revert "Update example notebook"
shadeMe ac20153
`util`: Revert changes to `set_active_gpu`, raise an error if no GPU …
shadeMe 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
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,70 @@ | ||
| from packaging.version import Version | ||
|
|
||
| try: # pragma: no cover | ||
| import cupy | ||
| import cupyx | ||
|
|
||
| has_cupy = True | ||
| cupy_version = Version(cupy.__version__) | ||
| try: | ||
| cupy.cuda.runtime.getDeviceCount() | ||
| has_cupy_gpu = True | ||
| except cupy.cuda.runtime.CUDARuntimeError: | ||
| has_cupy_gpu = False | ||
|
|
||
| if cupy_version.major >= 10: | ||
| # fromDlpack was deprecated in v10.0.0. | ||
| cupy_from_dlpack = cupy.from_dlpack | ||
| else: | ||
| cupy_from_dlpack = cupy.fromDlpack | ||
| except (ImportError, AttributeError): | ||
| cupy = None | ||
| cupyx = None | ||
| cupy_version = Version("0.0.0") | ||
| has_cupy = False | ||
| cupy_from_dlpack = None | ||
| has_cupy_gpu = False | ||
|
|
||
|
|
||
| try: # pragma: no cover | ||
| import torch.utils.dlpack | ||
| import torch | ||
|
|
||
| has_torch = True | ||
| has_torch_gpu = torch.cuda.device_count() != 0 | ||
| torch_version = Version(str(torch.__version__)) | ||
| has_torch_amp = ( | ||
| torch_version >= Version("1.9.0") | ||
| and not torch.cuda.amp.common.amp_definitely_not_available() | ||
| ) | ||
| except ImportError: # pragma: no cover | ||
| torch = None | ||
| has_torch = False | ||
| has_torch_gpu = False | ||
| has_torch_amp = False | ||
| torch_version = Version("0.0.0") | ||
|
|
||
| try: # pragma: no cover | ||
| import tensorflow.experimental.dlpack | ||
| import tensorflow | ||
|
|
||
| has_tensorflow = True | ||
| has_tensorflow_gpu = len(tensorflow.config.get_visible_devices("GPU")) > 0 | ||
| except ImportError: # pragma: no cover | ||
| tensorflow = None | ||
| has_tensorflow = False | ||
| has_tensorflow_gpu = False | ||
|
|
||
|
|
||
| try: # pragma: no cover | ||
| import mxnet | ||
|
|
||
| has_mxnet = True | ||
| except ImportError: # pragma: no cover | ||
| mxnet = None | ||
| has_mxnet = False | ||
|
|
||
| try: | ||
| import h5py | ||
| except ImportError: # pragma: no cover | ||
| h5py = None |
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
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.