mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-13 18:08:13 +00:00
* Fix PR #5550 reverted in #5911 (performance improvment for operator Transpose) (#5916) * Improves implementation of transpose operator * Fix issue mentioned in #5911 * adding unit test for function DoTransposeImpl * Make operator TreeEnsemble 5x faster for batches of size 100.000 (#5965) * improves processing time by 10 * extend coverage unit test coverage * better implementation for the multi regression case * better comment, keep parallelization by trees when not enough trees * Initialize a structure in operator ReduceSum (#6005) * fix initialisation issue * Fuse MatMulIntegerToFloat only when scales are scalar (#6008) MatMulIntegerToFloat fusion fuses per-row and per-column MatMulInteger, which is not supported by the MatMulIntegerToFloat kernel now. Limit the fusion to per-matrix only before we supporting the per-channel fully. * Disable Python 3.9 for training Python packaging build. (#6012) Disable Python 3.9 for training Python packaging build. Python 3.9 is not supported by the PyTorch dependency. * Fix bugs for 1: Calibrator should check model inputs; 2: (#6017) quantize_inupts forgot to use parameter initializer_use_weight_qtyp. * Bump highlight.js from 10.2.1 to 10.4.1 in /nodejs Bumps [highlight.js](https://github.com/highlightjs/highlight.js) from 10.2.1 to 10.4.1. - [Release notes](https://github.com/highlightjs/highlight.js/releases) - [Changelog](https://github.com/highlightjs/highlight.js/blob/master/CHANGES.md) - [Commits](https://github.com/highlightjs/highlight.js/compare/10.2.1...10.4.1) Signed-off-by: dependabot[bot] <support@github.com> * work around of the build break in mac (#6069) * Fix the build break in macos release * revert android change * Bump up API version for 1.6 release (#6076) * Update version to 1.6.0 (#6041) * Update version to 1.6.0 * Add v 1.5.3 info * Updating WindowsAI and ONNX version Co-authored-by: Du Li <duli@OrtTrainingDev0.af05slrtruoetgaxwwjv5nsq5e.px.internal.cloudapp.net> * Rsevert "Fuse MatMulIntegerToFloat only when scales are scalar (#6008)" This reverts commit beb950eb66308eeaa8c60e4db9a006948e2ba7bb. Co-authored-by: Xavier Dupré <xadupre@users.noreply.github.com> Co-authored-by: Yufeng Li <liyufeng1987@gmail.com> Co-authored-by: Edward Chen <18449977+edgchen1@users.noreply.github.com> Co-authored-by: Zhang Lei <zhang.huanning@hotmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pranav Sharma <prs@microsoft.com> Co-authored-by: Du Li <duli@OrtTrainingDev0.af05slrtruoetgaxwwjv5nsq5e.px.internal.cloudapp.net>
72 lines
No EOL
2.1 KiB
JSON
72 lines
No EOL
2.1 KiB
JSON
{
|
|
"name": "onnxruntime",
|
|
"description": "Node.js binding of ONNXRuntime",
|
|
"version": "1.6.0",
|
|
"main": "./lib/index.js",
|
|
"types": "./types/lib/index.d.ts",
|
|
"scripts": {
|
|
"install": "prebuild-install -r napi || (tsc && node ./script/build)",
|
|
"build": "tsc && node ./script/build",
|
|
"buildd": "tsc && node ./script/build --config=Debug",
|
|
"buildr": "tsc && node ./script/build --config=RelWithDebInfo",
|
|
"rebuild": "tsc && node ./script/build --rebuild",
|
|
"rebuildd": "tsc && node ./script/build --rebuild --config=Debug",
|
|
"rebuildr": "tsc && node ./script/build --rebuild --config=RelWithDebInfo",
|
|
"test": "mocha ./test/test-main",
|
|
"lint": "eslint . --ext .ts",
|
|
"prepack": "node ./script/pack-prebuild",
|
|
"format": "clang-format --glob=\"{{lib,test,script}/**/*.ts,src/**/*.{cc,h}}\" --style=file -i"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/onnxruntime.git"
|
|
},
|
|
"keywords": [
|
|
"ONNX",
|
|
"ONNX Runtime"
|
|
],
|
|
"os": [
|
|
"win32",
|
|
"darwin",
|
|
"linux"
|
|
],
|
|
"binary": {
|
|
"module_path": "./bin",
|
|
"host": "https://onnxruntimetestdata.blob.core.windows.net/onnxruntime-node-prebuild/",
|
|
"napi_versions": [
|
|
3
|
|
]
|
|
},
|
|
"author": "fs-eire",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/fs-extra": "^8.1.0",
|
|
"@types/klaw-sync": "^6.0.0",
|
|
"@types/minimist": "1.2.0",
|
|
"@types/mocha": "^7.0.2",
|
|
"@types/tar-stream": "^2.1.0",
|
|
"@typescript-eslint/eslint-plugin": "^2.29.0",
|
|
"@typescript-eslint/parser": "^2.29.0",
|
|
"clang-format": "^1.4.0",
|
|
"cmake-js": "^6.1.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-plugin-import": "^2.20.2",
|
|
"eslint-plugin-jsdoc": "^24.0.0",
|
|
"eslint-plugin-prefer-arrow": "^1.2.0",
|
|
"fs-extra": "^9.0.0",
|
|
"globby": "^11.0.0",
|
|
"jsonc": "^2.0.0",
|
|
"klaw-sync": "^6.0.0",
|
|
"minimist": "^1.2.5",
|
|
"mocha": "^7.1.1",
|
|
"node-addon-api": "^3.0.0",
|
|
"node-pre-gyp-github": "^1.4.3",
|
|
"onnx-proto": "^4.0.4",
|
|
"tar-stream": "^2.1.4",
|
|
"typedoc": "^0.17.3",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"dependencies": {
|
|
"prebuild-install": "^5.3.5"
|
|
}
|
|
} |