-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into WindowsAI
- Loading branch information
Showing
913 changed files
with
37,198 additions
and
31,832 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Build | ||
description: issues related to builds | ||
title: "[Build] " | ||
labels: ["build"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
If your request is a question/idea or otherwise not related to a bug/issue or feature request, please submit to [ONNX Runtime GitHub Discussions](https://github.com/microsoft/onnxruntime/discussions). | ||
Before submitting your request, please review past submissions to ensure that it is not a duplicate of a known issue. | ||
- type: textarea | ||
id: issue-descript | ||
attributes: | ||
label: Describe the issue | ||
placeholder: Include your issue description and any additional context necessary for your issue to be addressed (e.g., screenshots, GPU model & memory, etc.). | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: urgency | ||
attributes: | ||
label: Urgency | ||
placeholder: Is your issue urgent? If important use cases are blocked, there is a regression in ONNX Runtime functionality, or you have a strict project deadline, please elaborate here. | ||
validations: | ||
required: false | ||
- type: input | ||
id: target-platform | ||
attributes: | ||
label: Target platform | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Build script | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Error / output | ||
validations: | ||
required: true | ||
- type: input | ||
id: vs-version | ||
attributes: | ||
label: Visual Studio Version | ||
validations: | ||
required: false | ||
- type: input | ||
id: comp-version | ||
attributes: | ||
label: GCC / Compiler Version | ||
validations: | ||
required: false |
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,24 @@ | ||
name: Documentation | ||
description: issues related to documentation additions and revisions | ||
title: "[Documentation] " | ||
labels: ["documentation"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
If your request is a question/idea or otherwise not related to a bug/issue or feature request, please submit to [ONNX Runtime GitHub Discussions](https://github.com/microsoft/onnxruntime/discussions). | ||
Before submitting your request, please review past submissions to ensure that it is not a duplicate of a known issue. | ||
- type: textarea | ||
id: doc-descript | ||
attributes: | ||
label: Describe the documentation issue | ||
placeholder: Provide a clear and concise description of the issue with current documentation. For simple fixes, please submit a PR by clicking on the "Edit Page in GitHub" link on any https://onnxruntime.ai/docs page. | ||
validations: | ||
required: true | ||
- type: input | ||
id: page-url | ||
attributes: | ||
label: Page / URL | ||
placeholder: Note the page/URL where the documentation issue occurs. | ||
validations: | ||
required: false |
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,136 @@ | ||
name: Mobile | ||
description: issues related to ONNX Runtime mobile | ||
title: "[Mobile] " | ||
labels: ["platform:mobile"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
If your request is a question/idea or otherwise not related to a bug/issue or feature request, please submit to [ONNX Runtime GitHub Discussions](https://github.com/microsoft/onnxruntime/discussions). | ||
Before submitting your request, please review past submissions to ensure that it is not a duplicate of a known issue. | ||
- type: textarea | ||
id: issue-descript | ||
attributes: | ||
label: Describe the issue | ||
placeholder: Include your issue description, expected behavior, and any additional context necessary for your issue to be addressed (e.g., screenshots, GPU model & memory, etc.). | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproducibility | ||
attributes: | ||
label: To reproduce | ||
placeholder: Steps to reproduce the issue. As applicable, please provide code and model(s) if possible. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: urgency | ||
attributes: | ||
label: Urgency | ||
placeholder: Is your issue urgent? If important use cases are blocked, there is a regression in ONNX Runtime functionality, or you have a strict project deadline, please elaborate here. | ||
validations: | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: | | ||
# System information | ||
For each of the following items, provide the information listed to ensure that your request is addressed in a timely manner. | ||
- type: dropdown | ||
id: inf-plat | ||
attributes: | ||
label: Platform | ||
options: | ||
- Android | ||
- iOS | ||
- Xamarin | ||
- MAUI | ||
- React Native | ||
- Other / Unknown | ||
validations: | ||
required: true | ||
- type: input | ||
id: os-dist | ||
attributes: | ||
label: OS Version | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: ort-installation | ||
attributes: | ||
label: ONNX Runtime Installation | ||
options: | ||
- Built from Source | ||
- Released Package | ||
- Other / Unknown | ||
validations: | ||
required: true | ||
- type: input | ||
id: compiler-version | ||
attributes: | ||
label: Compiler Version (if 'Built from Source') | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: package-name | ||
attributes: | ||
label: Package Name (if 'Released Package') | ||
options: | ||
- onnxruntime-mobile | ||
- onnxruntime-android | ||
- onnxruntime-mobile-objc/onnxruntime-mobile-c | ||
- onnxruntime-objc/onnxruntime-c | ||
- Microsoft.ML.OnnxRuntime | ||
- Microsoft.ML.OnnxRuntime.Managed | ||
- onnxruntime-react-native | ||
validations: | ||
required: false | ||
- type: input | ||
id: ort-version | ||
attributes: | ||
label: ONNX Runtime Version or Commit ID | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: inf-api | ||
attributes: | ||
label: ONNX Runtime API | ||
options: | ||
- C++/C | ||
- C# | ||
- Java/Kotlin | ||
- JavaScript | ||
- Objective-C/Swift | ||
- Other / Unknown | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: arch | ||
attributes: | ||
label: Architecture | ||
options: | ||
- X64 | ||
- X86 | ||
- ARM64 | ||
- ARM32 | ||
- Other / Unknown | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: ep | ||
attributes: | ||
label: Execution Provider | ||
options: | ||
- Default CPU | ||
- CoreML | ||
- NNAPI | ||
- SNPE | ||
- Other / Unknown | ||
multiple: yes | ||
validations: | ||
required: true | ||
- type: input | ||
id: ep-version | ||
attributes: | ||
label: Execution Provider Library Version | ||
placeholder: ex. CUDA 11.6 or ROCm 5.1.1 | ||
validations: | ||
required: false |
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,63 @@ | ||
name: Web | ||
description: issues related to ONNX Runtime web | ||
title: "[Web] " | ||
labels: ["platform:web"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
If your request is a question/idea or otherwise not related to a bug/issue or feature request, please submit to [ONNX Runtime GitHub Discussions](https://github.com/microsoft/onnxruntime/discussions). | ||
Before submitting your request, please review past submissions to ensure that it is not a duplicate of a known issue. | ||
- type: textarea | ||
id: issue-descript | ||
attributes: | ||
label: Describe the issue | ||
placeholder: Include your issue description, expected behavior, and any additional context necessary for your issue to be addressed (e.g., screenshots, GPU model & memory, etc.). | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproducibility | ||
attributes: | ||
label: To reproduce | ||
placeholder: Steps to reproduce the issue. As applicable, please provide code and model(s) if possible. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: urgency | ||
attributes: | ||
label: Urgency | ||
placeholder: Is your issue urgent? If important use cases are blocked, there is a regression in ONNX Runtime functionality, or you have a strict project deadline, please elaborate here. | ||
validations: | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: | | ||
# System information | ||
For each of the following items, provide the information listed to ensure that your request is addressed in a timely manner. | ||
- type: dropdown | ||
id: ort-installation | ||
attributes: | ||
label: ONNX Runtime Installation | ||
options: | ||
- Built from Source | ||
- Released Package | ||
- Other / Unknown | ||
validations: | ||
required: true | ||
- type: input | ||
id: ort-version | ||
attributes: | ||
label: ONNX Runtime Version or Commit ID | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: ep | ||
attributes: | ||
label: Execution Provider | ||
options: | ||
- WebGL | ||
- WASM | ||
- Other / Unknown | ||
multiple: yes | ||
validations: | ||
required: true |
Oops, something went wrong.