Skip to content

Commit f4fd36e

Browse files
authored
merge rel-0.4.0 into master (#959)
* Accomodate missing optional 'axes' when 'steps' is present in Slice op (#946) * Accomodate missing optional axes when steps is present in Slice implementation * PR feedback * Update package links (#937) * Update package links * Minor fix * Update README.md * Minor edit * Update onnx commit (#949) * Update onnx commit * disable failing tests which don't have to be fixed for this release * dummy change to fix file permission * fix file permission
1 parent 306453f commit f4fd36e

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ system.
7474
| API Documentation | CPU package | GPU package |
7575
|-----|-------------|-------------|
7676
| [Python](https://aka.ms/onnxruntime-python) | [Available on Pypi](https://pypi.org/project/onnxruntime)<br/><ul><li> Windows: x64</li><li>Linux: x64</li><li>Mac OS X: x64</li></ul><br/> | [Available on Pypi](https://pypi.org/project/onnxruntime-gpu) <br/><ul><li> Windows: x64</li><li>Linux: x64</li></ul><br/><br/> |
77-
| [C#](docs/CSharp_API.md) | Available on Nuget : [MLAS+Eigen](https://www.nuget.org/packages/Microsoft.ML.OnnxRuntime/), [MKL-ML](https://www.nuget.org/packages/Microsoft.ML.OnnxRuntime.MKLML/)</br><ul><li>Windows: x64</li><li>Linux: x64</li><li>Mac OS X: x64 (MLAS+Eigen only)</li></ul>| [Available on Nuget](https://www.nuget.org/packages/Microsoft.ML.OnnxRuntime.Gpu/)<br/><ul><li> Windows: x64</li><li>Linux: x64</li></ul><br/>|
78-
| [C](docs/C_API.md) | Available on Nuget : [MLAS+Eigen](https://www.nuget.org/packages/Microsoft.ML.OnnxRuntime/), [MKL-ML](https://www.nuget.org/packages/Microsoft.ML.OnnxRuntime.MKLML/)</br><ul><li>Windows: x64</li><li>Linux: x64</li><li>Mac OS X: x64 (MLAS+Eigen only)</li></ul><br/>[Files (.zip, .tgz)](https://aka.ms/onnxruntime-release)<br/><ul><li>Windows: x64, x86</li><li>Linux: x64, x86</li><li>Mac OS X: x64 (MLAS+Eigen only)</li></ul> | [Available on Nuget](https://www.nuget.org/packages/Microsoft.ML.OnnxRuntime.Gpu/)<br/><ul><li>Windows: x64</li><li>Linux: x64</li></ul><br/><br/>[Files (.zip, .tgz)](https://aka.ms/onnxruntime-release)<br/><ul><li>Windows: x64</li><li>Linux: x64</li></ul><br/> |
77+
| [C#](docs/CSharp_API.md) | **Available on Nuget :**<br/>[MLAS+Eigen](https://www.nuget.org/packages/Microsoft.ML.OnnxRuntime/)<br/><ul><li>Windows: x64, x86</li><li>Linux: x64, x86</li><li>Mac OS X: x64</li></ul><br/>[MKL-ML](https://www.nuget.org/packages/Microsoft.ML.OnnxRuntime.MKLML/)<ul><li>Windows: x64</li><li>Linux: x64</li><li>Mac OS X: x64</li></ul>| [Available on Nuget](https://www.nuget.org/packages/Microsoft.ML.OnnxRuntime.Gpu/)<br/><ul><li> Windows: x64</li><li>Linux: x64</li></ul><br/>|
78+
| [C](docs/C_API.md) | **Available on Nuget :**<br/>[MLAS+Eigen](https://www.nuget.org/packages/Microsoft.ML.OnnxRuntime/)<br/><ul><li>Windows: x64, x86</li><li>Linux: x64, x86</li><li>Mac OS X: x64</li></ul><br/>[MKL-ML](https://www.nuget.org/packages/Microsoft.ML.OnnxRuntime.MKLML/)<br/><ul><li>Windows: x64</li><li>Linux: x64</li><li>Mac OS X: x64</li></ul><hr>[Binaries (.zip, .tgz)](https://aka.ms/onnxruntime-release)<br/><ul><li>Windows: x64, x86</li><li>Linux: x64, x86</li><li>Mac OS X: x64</li></ul> | [Available on Nuget](https://www.nuget.org/packages/Microsoft.ML.OnnxRuntime.Gpu/)<br/><ul><li>Windows: x64</li><li>Linux: x64</li></ul><br/><br/>[Binaries (.zip, .tgz)](https://aka.ms/onnxruntime-release)<br/><ul><li>Windows: x64</li><li>Linux: x64</li></ul><br/> |
7979
| [C++](onnxruntime/core/session/inference_session.h) | [Build from source](https://github.com/Microsoft/onnxruntime/blob/master/BUILD.md) | [Build from source](https://github.com/Microsoft/onnxruntime/blob/master/BUILD.md) |
8080

8181
For builds using other execution providers, see Build Details below.

cgmanifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"component":{
5050
"type":"git",
5151
"git":{
52-
"commitHash":"c1c04af4e9fa0c96fbc1fda7b330bb994118f3c5",
52+
"commitHash":"7d7bc83d29a328233d3e8affa4c4ea8b3e3599ef",
5353
"repositoryUrl":"https://github.com/onnx/onnx.git"
5454
}
5555
}

cmake/external/onnx

Submodule onnx updated 67 files

docs/How_To_Update_ONNX_Dev_Notes.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ git add onnx
1515
2. Update [cgmanifest.json](/cgmanifest.json)
1616
Search 'https://github.com/onnx/onnx.git', update the commitHash with it.
1717

18-
3. Update [tools/ci_build/github/linux/docker/scripts/install_deps.sh](/tools/ci_build/github/linux/docker/scripts/install_deps.sh)
18+
3. Update [tools/ci_build/github/linux/docker/scripts/install_deps.sh](/tools/ci_build/github/linux/docker/scripts/install_deps.sh)
19+
and [tools/ci_build/github/linux/docker/scripts/install_deps_x86.sh](/tools/ci_build/github/linux/docker/scripts/install_deps_x86.sh)
1920
Search 'for onnx_version in', update the commit hashes. The list should contain every release version from ONNX 1.2, and the latest one in our cmake/external/onnx folder.
2021

2122
4. Update onnxruntime/core/protobuf

onnxruntime/test/python/onnx_backend_test_series.py

+3
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@ def assert_similar_outputs(cls, ref_outputs, outputs, rtol, atol):
9191
'|^test_reversesequence_batch_cpu.*'
9292
'|^test_reversesequence_time_cpu.*'
9393
'|^test_roialign_cpu.*'
94+
'|^test_mod_mixed_sign_float16_cpu.*'
95+
'|^test_mod_uint32_cpu.*'
96+
'|^test_mod_uint64_cpu.*'
9497
')')
9598

9699
# import all test cases at global scope to make

tools/ci_build/github/linux/docker/scripts/install_deps.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ else
3838
#5af210ca8a1c73aa6bae8754c9346ec54d0a756e is v1.2.3
3939
#bae6333e149a59a3faa9c4d9c44974373dcf5256 is v1.3.0
4040
#9e55ace55aad1ada27516038dfbdc66a8a0763db is v1.4.1
41-
#c1c04af4e9fa0c96fbc1fda7b330bb994118f3c5 is v1.4.1 latest
42-
for onnx_version in "5af210ca8a1c73aa6bae8754c9346ec54d0a756e" "bae6333e149a59a3faa9c4d9c44974373dcf5256" "9e55ace55aad1ada27516038dfbdc66a8a0763db" "c1c04af4e9fa0c96fbc1fda7b330bb994118f3c5"; do
41+
#7d7bc83d29a328233d3e8affa4c4ea8b3e3599ef is v1.5.0
42+
for onnx_version in "5af210ca8a1c73aa6bae8754c9346ec54d0a756e" "bae6333e149a59a3faa9c4d9c44974373dcf5256" "9e55ace55aad1ada27516038dfbdc66a8a0763db" "7d7bc83d29a328233d3e8affa4c4ea8b3e3599ef"; do
4343
if [ -z ${lastest_onnx_version+x} ]; then
4444
echo "first pass";
4545
else

tools/ci_build/github/linux/docker/scripts/install_deps_x86.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ else
3232
#5af210ca8a1c73aa6bae8754c9346ec54d0a756e is v1.2.3
3333
#bae6333e149a59a3faa9c4d9c44974373dcf5256 is v1.3.0
3434
#9e55ace55aad1ada27516038dfbdc66a8a0763db is v1.4.1
35-
#27d4b617e7097cda7d0d4c45ff2b09d248f33179 is v1.4.1 latest
36-
for onnx_version in "5af210ca8a1c73aa6bae8754c9346ec54d0a756e" "bae6333e149a59a3faa9c4d9c44974373dcf5256" "9e55ace55aad1ada27516038dfbdc66a8a0763db" "27d4b617e7097cda7d0d4c45ff2b09d248f33179"; do
35+
#7d7bc83d29a328233d3e8affa4c4ea8b3e3599ef is v1.5.0
36+
for onnx_version in "5af210ca8a1c73aa6bae8754c9346ec54d0a756e" "bae6333e149a59a3faa9c4d9c44974373dcf5256" "9e55ace55aad1ada27516038dfbdc66a8a0763db" "7d7bc83d29a328233d3e8affa4c4ea8b3e3599ef"; do
3737
if [ -z ${lastest_onnx_version+x} ]; then
3838
echo "first pass";
3939
else

0 commit comments

Comments
 (0)