mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
### Description This change cherry-picks 2 Pad fusion optimization: https://github.com/microsoft/onnxruntime/pull/21640 and https://github.com/microsoft/onnxruntime/pull/21556. It also has to cherry-pick 2 extra changes to unblock pipeline and dependency failure: https://github.com/microsoft/onnxruntime/pull/21300 and https://github.com/microsoft/onnxruntime/pull/21662 (didn't include test which are part of 1.18.1 payload). Also uploaded new version of [onnxruntime_build_dependencies:10.177](https://dev.azure.com/onnxruntime/onnxruntime/_artifacts/feed/onnxruntime/UPack/onnxruntime_build_dependencies/overview/1.0.177) and updated the same in `download-deps.yml`. Additionally it also updates DML binary to 1.15.1. ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> --------- Co-authored-by: Changming Sun <chasun@microsoft.com> Co-authored-by: Tianlei Wu <tlwu@microsoft.com>
34 lines
841 B
JSON
34 lines
841 B
JSON
{
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"name": "onnxruntime-common",
|
|
"version": "1.18.2",
|
|
"repository": {
|
|
"url": "https://github.com/Microsoft/onnxruntime.git",
|
|
"type": "git"
|
|
},
|
|
"author": "fs-eire",
|
|
"scripts": {
|
|
"build:cjs": "tsc --module commonjs --moduleResolution node10 --outDir ./dist/cjs",
|
|
"build:esm": "tsc",
|
|
"build:bundles": "webpack",
|
|
"build": "node ./build.js",
|
|
"prepare": "npm run build",
|
|
"pretest": "tsc --build ./test",
|
|
"test": "mocha ./test/**/*.js --timeout 30000"
|
|
},
|
|
"devDependencies": {
|
|
"typedoc": "^0.25.7"
|
|
},
|
|
"main": "dist/cjs/index.js",
|
|
"exports": {
|
|
"require": "./dist/cjs/index.js",
|
|
"import": "./dist/esm/index.js"
|
|
},
|
|
"keywords": [
|
|
"ONNX",
|
|
"ONNXRuntime",
|
|
"ONNX Runtime"
|
|
],
|
|
"description": "ONNXRuntime JavaScript API library"
|
|
}
|