Skip to content
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

onnxruntimeのバージョンを1.15.1に上げる #25

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
a62d867
const ORT_VERSION: &str = "1.15.1";
Hiroshiba Jun 20, 2023
12e2c46
Automated generate bindings for x86_64-apple-darwin
Hiroshiba Jun 20, 2023
3354d55
Automated generate bindings for x86_64-unknown-linux-gnu
Hiroshiba Jun 20, 2023
ece89ed
Automated generate bindings for aarch64-linux-android
Hiroshiba Jun 20, 2023
0d6d480
Automated generate bindings for aarch64-unknown-linux-gnu
Hiroshiba Jun 20, 2023
f74ed77
Automated generate bindings for x86_64-linux-android
Hiroshiba Jun 20, 2023
f58900f
Automated generate bindings for aarch64-apple-darwin
Hiroshiba Jun 20, 2023
ef03688
Automated generate bindings for x86_64-pc-windows-msvc
Hiroshiba Jun 20, 2023
66c2370
Merge pull request #1 from Hiroshiba/onnxruntimeのバージョンを1.15.1に上げ_auto…
Hiroshiba Jun 20, 2023
af2cebb
Merge pull request #2 from Hiroshiba/onnxruntimeのバージョンを1.15.1に上げ_auto…
Hiroshiba Jun 20, 2023
df11e46
Merge pull request #3 from Hiroshiba/onnxruntimeのバージョンを1.15.1に上げ_auto…
Hiroshiba Jun 20, 2023
cf3f268
Automated generate bindings for i686-pc-windows-msvc
Hiroshiba Jun 20, 2023
da65b86
Automated generate bindings for x86_64-pc-windows-msvc
Hiroshiba Jun 20, 2023
ec14b37
readmeにヘッダー更新方法を追記
Hiroshiba Jun 20, 2023
fd2b705
Merge branch 'onnxruntimeのバージョンを1.15.1に上げ' of github.com:Hiroshiba/on…
Hiroshiba Jun 20, 2023
6ddf0a7
Merge pull request #9 from Hiroshiba/onnxruntimeのバージョンを1.15.1に上げ_auto…
Hiroshiba Jun 20, 2023
d550eec
Merge pull request #8 from Hiroshiba/onnxruntimeのバージョンを1.15.1に上げ_auto…
Hiroshiba Jun 20, 2023
457adb6
Merge pull request #7 from Hiroshiba/onnxruntimeのバージョンを1.15.1に上げ_auto…
Hiroshiba Jun 20, 2023
586bc21
Merge pull request #6 from Hiroshiba/onnxruntimeのバージョンを1.15.1に上げ_auto…
Hiroshiba Jun 20, 2023
689928c
Merge pull request #4 from Hiroshiba/onnxruntimeのバージョンを1.15.1に上げ_auto…
Hiroshiba Jun 20, 2023
6c3d803
Merge pull request #5 from Hiroshiba/onnxruntimeのバージョンを1.15.1に上げ_auto…
Hiroshiba Jun 20, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# VOICEVOX ONNX Runtime

onnxruntime-rsのフォークです。onnxruntimeのバージョンなどをVOICEVOX独自のものに合わせています。

## onnxruntime のバージョン更新方法

0. forkし、fork先のリポジトリの `Workflow permissions` で書き込み権限やプルリクエスト作成権限を付与しておく
1. `onnxruntime-sys` の `build.rs` にある `ORT_VERSION` 定数のバージョンを更新
2. GithubにpushするとCIからヘッダー更新のプルリクエストが届くので全部マージする
3. このリポジトリにプルリクエストを出す

---

以下は元リポジトリの README です。

# ONNX Runtime

[<img alt="github" src="https://img.shields.io/badge/github-nbigaouette/onnxruntime_rs-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">](https://github.com/nbigaouette/onnxruntime-rs)
Expand Down
2 changes: 1 addition & 1 deletion onnxruntime-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use std::{
/// WARNING: If version is changed, bindings for all platforms will have to be re-generated.
/// To do so, run this:
/// cargo build --package onnxruntime-sys --features generate-bindings
const ORT_VERSION: &str = "1.14.0";
const ORT_VERSION: &str = "1.15.1";

/// Base Url from which to download pre-built releases/
const ORT_RELEASE_BASE_URL: &str = "https://github.com/microsoft/onnxruntime/releases/download";
Expand Down
Loading