Source code for pytorch_lightning.plugins.io.async_plugin
# Copyright The Lightning AI team.## Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License.fromconcurrent.futuresimportThreadPoolExecutorfromtypingimportAny,Optionalfromlightning_fabric.pluginsimportCheckpointIOfrompytorch_lightning.plugins.io.wrapperimport_WrappingCheckpointIO
[docs]classAsyncCheckpointIO(_WrappingCheckpointIO):"""``AsyncCheckpointIO`` enables saving the checkpoints asynchronously in a thread. .. warning:: This is currently an experimental plugin/feature and API changes are to be expected. Args: checkpoint_io: A checkpoint IO plugin that is used as the basis for async checkpointing. """def__init__(self,checkpoint_io:Optional["CheckpointIO"]=None)->None:super().__init__(checkpoint_io)self._executor=ThreadPoolExecutor(max_workers=1)self._error:Optional[BaseException]=None
[docs]defsave_checkpoint(self,*args:Any,**kwargs:Any)->None:"""Uses the ``ThreadPoolExecutor`` to save the checkpoints using the base ``checkpoint_io``."""def_save_checkpoint(*args:Any,**kwargs:Any)->None:try:assertself.checkpoint_ioisnotNoneself.checkpoint_io.save_checkpoint(*args,**kwargs)exceptBaseExceptionase:self._error=eself._executor.submit(_save_checkpoint,*args,**kwargs)# if an error was raised between the previous time `save_checkpoint`` was called and now,# because `executor.submit` is not blockingifself._error:raiseself._error
[docs]defteardown(self)->None:"""This method is called to close the threads."""self._executor.shutdown(wait=True)# if an error was raised anytime in any of the `executor.submit` callsifself._error:raiseself._error
To analyze traffic and optimize your experience, we serve cookies on this site. By clicking or navigating, you agree to allow our usage of cookies. Read PyTorch Lightning's Privacy Policy.