# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. """ ExecuTorch export module. This module provides the tools and utilities for exporting PyTorch models to the ExecuTorch format, including configuration, quantization, and export management. """ # pyre-strict from .export import export, ExportSession from .recipe import ExportRecipe __all__ = [ "ExportRecipe", "ExportSession", "export", ]