# 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. """Supports efficiency with skip connections.""" from .namespace import Namespace from .skippable import pop, skippable, stash, verify_skippables __all__ = ["skippable", "stash", "pop", "verify_skippables", "Namespace"]