| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| from __future__ import annotations |
|
|
| import os |
| import sys |
|
|
| from ._version import get_versions |
|
|
| PY_REQUIRED_MAJOR = 3 |
| PY_REQUIRED_MINOR = 8 |
|
|
| version_dict = get_versions() |
| __version__: str = version_dict.get("version", "0+unknown") |
| __revision_id__: str = version_dict.get("full-revisionid") |
| del get_versions, version_dict |
|
|
| __copyright__ = "(c) MONAI Consortium" |
|
|
| __basedir__ = os.path.dirname(__file__) |
|
|
| if sys.version_info.major != PY_REQUIRED_MAJOR or sys.version_info.minor < PY_REQUIRED_MINOR: |
| import warnings |
|
|
| warnings.warn( |
| f"MONAI requires Python {PY_REQUIRED_MAJOR}.{PY_REQUIRED_MINOR} or higher. " |
| f"But the current Python is: {sys.version}", |
| category=RuntimeWarning, |
| ) |
|
|
| from .utils.module import load_submodules |
|
|
| |
| |
| excludes = "|".join( |
| [ |
| "(^(monai.handlers))", |
| "(^(monai.bundle))", |
| "(^(monai.fl))", |
| "((\\.so)$)", |
| "(^(monai._C))", |
| "(.*(__main__)$)", |
| "(.*(video_dataset)$)", |
| "(.*(nnunet).*$)", |
| ] |
| ) |
|
|
| _skip_submodules = os.environ.get("MONAI_SKIP_SUBMODULES", "").lower() in ("1", "true", "yes") |
| if not _skip_submodules: |
| |
| load_submodules(sys.modules[__name__], False, exclude_pattern=excludes) |
|
|
| |
| load_submodules(sys.modules[__name__], True, exclude_pattern=excludes) |
|
|
| __all__ = [ |
| "apps", |
| "auto3dseg", |
| "bundle", |
| "config", |
| "data", |
| "engines", |
| "fl", |
| "handlers", |
| "inferers", |
| "losses", |
| "metrics", |
| "networks", |
| "optimizers", |
| "transforms", |
| "utils", |
| "visualize", |
| ] |
|
|
| try: |
| from .utils.tf32 import detect_default_tf32 |
|
|
| detect_default_tf32() |
| import torch |
|
|
| |
| if hasattr(torch.cuda.device_count, "cache_clear"): |
| torch.cuda.device_count.cache_clear() |
| except BaseException: |
| from .utils.misc import MONAIEnvVars |
|
|
| if MONAIEnvVars.debug(): |
| raise |
|
|