forked from pykeio/ort
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge v2.0.0-rc.4, keeping ONNX Runtime v1.17 #7
Merged
Merged
Changes from all commits
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
05bc4fb
examples(webassembly): use MNIST as test model
decahedron1 8ae23f2
fix: stub c++ exception handling for wasm
decahedron1 80be206
chore(sys): update WASM build
decahedron1 9b8bdf9
docs: update readme
decahedron1 1c0a5e4
feat: direct downcasts of `ValueRef` & `ValueRefMut`
decahedron1 1d8b815
feat: implement more kernel attribute types
decahedron1 076ddf4
fix: kernel array attribute size type
decahedron1 ba0867d
fix: exclude null byte in string kernel attribute extraction
decahedron1 9c80410
fix: bad cfg values
decahedron1 58ba991
chore: remove old widestring error
decahedron1 ce5aaba
feat: add telemetry option to environment builder, closes #203
decahedron1 17b4170
chore: update ONNX Runtime to v1.18.0
decahedron1 943a797
fix(sys): update API to 1.18
decahedron1 fd41c8f
ci(test): run wasm test with `--debug`
decahedron1 9a7f046
Revert "ci(test): run wasm test with `--debug`"
decahedron1 9453d04
fix(wasm): disable `image::load_from_memory`
decahedron1 eb0f402
fix(wasm): update artifact
decahedron1 721bf00
ci(test): run if examples or dist.txt changed
decahedron1 5dce2c2
fix(sys): update windows artifacts to include DirectML again
decahedron1 1d89f82
feat(sys): support `pkg-config`
fkasischke b00c934
docs: nuke mintlify
decahedron1 812fdb0
config: add python venv to gitignore
decahedron1 23fce78
feat: option to error out session builder if EP registration fails
decahedron1 a92dd30
fix(sys): enable SOCKS proxy support, closes #210
decahedron1 19d66de
feat: MIGraphX execution provider, ref #212
decahedron1 c64b8ea
refactor: usability
decahedron1 882f657
fix: bundle libonnxruntime in rlib/staticlib builds (#215)
cagnolone 668260c
fix: ARM build
decahedron1 860e449
fix: `i686-pc-windows-msvc` build (#218)
qryxip d59ac43
refactor: take `RunOptions` by reference, add `run_async_with_options`
decahedron1 8d1f6b6
feat: `OutputSelector`
decahedron1 8f8bbfb
chore: update to ONNX Runtime v1.18.1
decahedron1 e1d77b4
refactor: simplify `run_async`
decahedron1 920cee9
refactor: simplify logging function
decahedron1 3b93e73
chore: remove unused imports
decahedron1 a127d0f
refactor: typestate for `RunOptions` that have selected outputs
decahedron1 dc79ade
chore: more readable imports
decahedron1 b69f41d
feat: most missing custom operator methods
decahedron1 e59d0c7
fix arm build
decahedron1 66b0cb2
fix(sys): only link nsync if required, closes #223
decahedron1 bf10c18
docs: Add Magika to projects using ort (#224)
ia0 1bff72d
fix: TVM EP register function definition for non-`load-dynamic`, clos…
decahedron1 0407adb
fix: link missing absl libraries, closes #228
decahedron1 0a43482
feat: training (#202)
decahedron1 3dec017
2.0.0-rc.3
decahedron1 bb57252
fix(sys): more robust CUDA version check. fixes #234
decahedron1 b2f4e1f
fix: create an environment if one does not exist when registering Ten…
decahedron1 bc764d3
feat(sys): CUDA 12 + cuDNN 8 builds, ref #235
decahedron1 04da381
2.0.0-rc.4
decahedron1 45785b9
Merge tag 'v2.0.0-rc.4' into HEAD
qryxip File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/// <reference types="next" /> | ||
/// <reference types="next/image-types/global" /> | ||
|
||
// NOTE: This file should not be edited | ||
// see https://nextjs.org/docs/basic-features/typescript for more information. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import nextra from 'nextra'; | ||
|
||
export default nextra({ | ||
theme: 'nextra-theme-docs', | ||
themeConfig: './theme.config.jsx' | ||
})({ | ||
output: 'export', | ||
images: { | ||
unoptimized: true | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"private": true, | ||
"name": "ort-docs", | ||
"version": "0.0.0", | ||
"scripts": { | ||
"dev": "next dev", | ||
"build": "next build", | ||
"start": "next start" | ||
}, | ||
"dependencies": { | ||
"next": "^14.2.3", | ||
"nextra": "^2.13.4", | ||
"nextra-theme-docs": "^2.13.4", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "20.14.2", | ||
"@types/react": "^18.3.3", | ||
"@types/react-dom": "^18.3.0", | ||
"typescript": "^5.4.5" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import font from 'next/font/google'; | ||
|
||
export default function App({ Component, pageProps }) { | ||
return <Component {...pageProps} />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"-- Links": { | ||
"type": "separator", | ||
"title": "Links" | ||
}, | ||
"link-oc": { | ||
"title": "Sponsor ↗", | ||
"href": "https://opencollective.com/pyke-osai", | ||
"newWindow": true | ||
}, | ||
"link-api": { | ||
"title": "API Reference ↗", | ||
"href": "https://docs.rs/ort/2.0.0-rc.4/ort" | ||
}, | ||
"link-crates": { | ||
"title": "Crates.io ↗", | ||
"href": "https://crates.io/crates/ort", | ||
"newWindow": true | ||
}, | ||
"-- Docs": { | ||
"type": "separator", | ||
"title": "Docs" | ||
}, | ||
"index": "Introduction", | ||
"setup": { | ||
"title": "Setup" | ||
}, | ||
"perf": { | ||
"title": "Performance" | ||
}, | ||
"troubleshooting": { | ||
"title": "Troubleshooting" | ||
}, | ||
"migrating": { | ||
"title": "Migration & versioning" | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ort-sys/src/lib.rsをv2.0.0-rc.2時点に留めていることで pykeio#202 で追加された
training
機能のコンパイルが通らなくなっているため、examples/trainingをClippyの対象から外す。APIの辻褄合わせはできるだろうが、我々が使わないであろう
training
機能を維持するよりは捨てる方向にした方がよいと思った。There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
賛成です!
乖離しすぎるとそれはそれで追従が大変になってくるので、もしそうだったら再考してもいいかも。