diff --git a/onnxscript/_framework_apis/torch_2_11.py b/onnxscript/_framework_apis/torch_2_11.py new file mode 100644 index 0000000000..16b58c4f2c --- /dev/null +++ b/onnxscript/_framework_apis/torch_2_11.py @@ -0,0 +1,22 @@ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +"""Stable APIs for PyTorch 2.11.""" + +from __future__ import annotations + +__all__ = [ + "check_model", + "convert_version", + "get_torchlib_ops", + "optimize", + "save_model_with_external_data", +] + + +from onnxscript._framework_apis.torch_2_9 import ( + check_model, + convert_version, + get_torchlib_ops, + optimize, + save_model_with_external_data, +)