mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-29 20:14:01 +00:00
bump version to 1.5.2 (#5420)
This commit is contained in:
parent
4e983634ff
commit
58bf508ce0
8 changed files with 15 additions and 9 deletions
|
|
@ -1 +1 @@
|
|||
1.5.1
|
||||
1.5.2
|
||||
|
|
|
|||
|
|
@ -15,18 +15,19 @@ See [Release Management](ReleaseManagement.md)
|
|||
|
||||
## Backwards compatibility
|
||||
All versions of ONNX Runtime will support ONNX opsets all the way back to (and including) opset version 7.
|
||||
In other words if an ONNX Runtime release implements ONNX opset ver 9, it'll be able to run all
|
||||
In other words, if an ONNX Runtime release implements ONNX opset ver 9, it'll be able to run all
|
||||
models that are stamped with ONNX opset versions in the range [7-9].
|
||||
|
||||
|
||||
### Version matrix
|
||||
The following table summarizes the relationship between the ONNX Runtime version and the ONNX opset version implemented in that release.
|
||||
Please note the backward compatibility notes above..
|
||||
Please note the backward compatibility notes above.
|
||||
For more details on ONNX Release versions, see [this page](https://github.com/onnx/onnx/blob/master/docs/Versioning.md).
|
||||
|
||||
| ONNX Runtime release version | ONNX release version | ONNX opset version | ONNX ML opset version | Supported ONNX IR version | [Windows ML Availability](https://docs.microsoft.com/en-us/windows/ai/windows-ml/release-notes/)|
|
||||
|------------------------------|--------------------|--------------------|----------------------|------------------|------------------|
|
||||
| 1.5.1 | **1.7** down to 1.2 | 12 | 2 | 6 | Windows AI 1.4+ |
|
||||
| 1.5.2 | **1.7** down to 1.2 | 12 | 2 | 6 | Windows AI 1.5+ |
|
||||
| 1.5.1 | **1.7** down to 1.2 | 12 | 2 | 6 | Windows AI 1.5+ |
|
||||
| 1.4.0 | **1.7** down to 1.2 | 12 | 2 | 6 | Windows AI 1.4+ |
|
||||
| 1.3.1 | **1.7** down to 1.2 | 12 | 2 | 6 | Windows AI 1.4+ |
|
||||
| 1.3.0 | **1.7** down to 1.2 | 12 | 2 | 6 | Windows AI 1.3+ |
|
||||
|
|
|
|||
|
|
@ -8,6 +8,11 @@ For more information on ONNX Runtime, please see `aka.ms/onnxruntime <https://ak
|
|||
Changes
|
||||
-------
|
||||
|
||||
1.5.2
|
||||
^^^^^
|
||||
|
||||
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.5.2
|
||||
|
||||
1.5.1
|
||||
^^^^^
|
||||
|
||||
|
|
|
|||
2
nodejs/package-lock.json
generated
2
nodejs/package-lock.json
generated
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "onnxruntime",
|
||||
"version": "1.5.1",
|
||||
"version": "1.5.2",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "onnxruntime",
|
||||
"description": "Node.js binding of ONNXRuntime",
|
||||
"version": "1.5.1",
|
||||
"version": "1.5.2",
|
||||
"main": "./lib/index.js",
|
||||
"types": "./types/lib/index.d.ts",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ ONNX Runtime is a performance-focused scoring engine for Open Neural Network Exc
|
|||
For more information on ONNX Runtime, please see `aka.ms/onnxruntime <https://aka.ms/onnxruntime/>`_
|
||||
or the `Github project <https://github.com/microsoft/onnxruntime/>`_.
|
||||
"""
|
||||
__version__ = "1.5.1"
|
||||
__version__ = "1.5.2"
|
||||
__author__ = "Microsoft"
|
||||
|
||||
from onnxruntime.capi._pybind_state import get_all_providers, get_available_providers, get_device, set_seed, \
|
||||
|
|
|
|||
|
|
@ -304,7 +304,7 @@ def optimize_model(input,
|
|||
logger.debug("Remove tempoary model: {}".format(temp_model_path))
|
||||
|
||||
optimizer.model.producer_name = "onnxruntime_tools"
|
||||
optimizer.model.producer_version = "1.5.1"
|
||||
optimizer.model.producer_version = "1.5.2"
|
||||
|
||||
return optimizer
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
Name: onnxruntime
|
||||
Version: 1.5.1
|
||||
Version: 1.5.2
|
||||
Release: 1%{?dist}
|
||||
Summary: onnxruntime
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue