Repository URL to install this package:
|
Version:
2.4.0 ▾
|
import sys
from typing import Any
import pytorch_lightning as pl
def _patch_sys_modules() -> None:
self = sys.modules[__name__]
sys.modules["pytorch_lightning.accelerators.hpu"] = self
sys.modules["pytorch_lightning.strategies.hpu_parallel"] = self
sys.modules["pytorch_lightning.strategies.single_hpu"] = self
sys.modules["pytorch_lightning.plugins.io.hpu_plugin"] = self
sys.modules["pytorch_lightning.plugins.precision.hpu"] = self
class HPUAccelerator:
auto_device_count = ...
get_parallel_devices = ...
is_available = ...
parse_devices = ...
setup_device = ...
teardown = ...
def __init__(self, *_: Any, **__: Any) -> None:
raise NotImplementedError(
"The `HPUAccelerator` class has been moved to an external package."
" Install the extension package as `pip install lightning-habana`"
" and import with `from lightning_habana import HPUAccelerator`."
" Please see: https://github.com/Lightning-AI/lightning-Habana for more details."
)
class HPUParallelStrategy:
def __init__(self, *_: Any, **__: Any) -> None:
raise NotImplementedError(
"The `HPUParallelStrategy` class has been moved to an external package."
" Install the extension package as `pip install lightning-habana`"
" and import with `from lightning_habana import HPUParallelStrategy`."
" Please see: https://github.com/Lightning-AI/lightning-Habana for more details."
)
def setup(self, *_: Any, **__: Any) -> None:
raise NotImplementedError
def get_device_stats(self, *_: Any, **__: Any) -> dict:
raise NotImplementedError
class SingleHPUStrategy:
def __init__(self, *_: Any, **__: Any) -> None:
raise NotImplementedError(
"The `SingleHPUStrategy` class has been moved to an external package."
" Install the extension package as `pip install lightning-habana`"
" and import with `from lightning_habana import SingleHPUStrategy`."
" Please see: https://github.com/Lightning-AI/lightning-Habana for more details."
)
class HPUCheckpointIO:
def __init__(self, *_: Any, **__: Any) -> None:
raise NotImplementedError(
"The `HPUCheckpointIO` class has been moved to an external package."
" Install the extension package as `pip install lightning-habana`"
" and import with `from lightning_habana import HPUCheckpointIO`."
" Please see: https://github.com/Lightning-AI/lightning-Habana for more details."
)
class HPUPrecisionPlugin:
def __init__(self, *_: Any, **__: Any) -> None:
raise NotImplementedError(
"The `HPUPrecisionPlugin` class has been moved to an external package."
" Install the extension package as `pip install lightning-habana`"
" and import with `from lightning_habana import HPUPrecisionPlugin`."
" Please see: https://github.com/Lightning-AI/lightning-Habana for more details."
)
def _patch_classes() -> None:
setattr(pl.accelerators, "HPUAccelerator", HPUAccelerator)
setattr(pl.strategies, "HPUParallelStrategy", HPUParallelStrategy)
setattr(pl.strategies, "SingleHPUStrategy", SingleHPUStrategy)
setattr(pl.plugins, "HPUCheckpointIO", HPUCheckpointIO)
setattr(pl.plugins.io, "HPUCheckpointIO", HPUCheckpointIO)
setattr(pl.plugins, "HPUPrecisionPlugin", HPUPrecisionPlugin)
setattr(pl.plugins.precision, "HPUPrecisionPlugin", HPUPrecisionPlugin)
_patch_sys_modules()
_patch_classes()