File size: 451 Bytes
9dd3461 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# Copyright 2019 Kakao Brain
#
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
#
# This source code is licensed under the BSD license found in the
# LICENSE file in the root directory of this source tree.
"""A Pipe implementation in PyTorch."""
from .checkpoint import is_checkpointing, is_recomputing
from .pipe import Pipe, WithDevice
from .microbatch import NoChunk
__all__ = ["Pipe", "is_checkpointing", "is_recomputing"]
|