From 3d0247c02e19488d4ddc068d0624f7702b146b96 Mon Sep 17 00:00:00 2001 From: Jinning Li Date: Thu, 17 Aug 2023 16:30:31 -0700 Subject: [PATCH] Bump version to 0.3.0. 1. Create a call_torch API to make Pytorch a frontend of JAX. The call_torch API achieves two tasks: (1) Convert the torch nn.Module or torch scriptmodel to onnx format by torch.onnx.export (2) Use jaxonnxruntime to convert the ONNX model into JAX function We hook all necessary components to make life easier for end PyTorch users. The input format should follow the torch.onnx.export API. 2. Improve the tests to cover more corner cases and be more robust 3. Fix more ops to support more models and tests from ONNX backend test suite PiperOrigin-RevId: 557969241 --- jaxonnxruntime/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jaxonnxruntime/version.py b/jaxonnxruntime/version.py index c045be7..53145c0 100644 --- a/jaxonnxruntime/version.py +++ b/jaxonnxruntime/version.py @@ -13,4 +13,4 @@ # limitations under the License. """Current jaxonnxruntime version at head on Github.""" -__version__ = "0.2.0" +__version__ = "0.3.0"