Skip to content

Commit

Permalink
Bump version to 0.3.0.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jinning-li authored and Jaxonnxruntime Authors committed Aug 17, 2023
1 parent 87b533f commit 3d0247c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jaxonnxruntime/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# limitations under the License.

"""Current jaxonnxruntime version at head on Github."""
__version__ = "0.2.0"
__version__ = "0.3.0"

0 comments on commit 3d0247c

Please sign in to comment.