#
#  Copyright (c) 2023 Apple Inc. All rights reserved.
#  Provided subject to the LICENSE file in the top level directory.
#

import warnings

warnings.warn(
    "The executorch.backends.apple.mps.partition package is deprecated and will "
    "be removed in ExecuTorch 1.4. Use "
    "executorch.backends.apple.coreml.partition instead.",
    FutureWarning,
    stacklevel=2,
)

from .mps_partitioner import MPSPartitioner

__all__ = [
    MPSPartitioner,
]
