Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .github/workflows/publish-c-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- include/onnxruntime/core/session/**
- orttraining/orttraining/training_api/include/**
schedule:
- cron: '0 0 1,15 * *'
- cron: '0 0 * * 0'
workflow_dispatch:

concurrency:
Expand Down Expand Up @@ -53,4 +53,4 @@ jobs:
with:
name: onnxruntime-c-apidocs
path: _site
retention-days: 30
retention-days: 10
4 changes: 2 additions & 2 deletions .github/workflows/publish-csharp-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
paths:
- csharp/**
schedule:
- cron: '0 0 1,15 * *'
- cron: '0 0 * * 0'
workflow_dispatch:

concurrency:
Expand Down Expand Up @@ -64,4 +64,4 @@ jobs:
with:
name: onnxruntime-csharp-apidocs
path: _site
retention-days: 30
retention-days: 10
4 changes: 2 additions & 2 deletions .github/workflows/publish-java-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
paths:
- java/**
schedule:
- cron: '0 0 1,15 * *'
- cron: '0 0 * * 0'
workflow_dispatch:

concurrency:
Expand Down Expand Up @@ -51,4 +51,4 @@ jobs:
with:
name: onnxruntime-java-apidocs
path: _site
retention-days: 30
retention-days: 10
4 changes: 2 additions & 2 deletions .github/workflows/publish-js-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
paths:
- js/common/**
schedule:
- cron: '0 0 1,15 * *'
- cron: '0 0 * * 0'
workflow_dispatch:

concurrency:
Expand Down Expand Up @@ -51,4 +51,4 @@ jobs:
with:
name: onnxruntime-node-apidocs
path: _site
retention-days: 30
retention-days: 10
4 changes: 2 additions & 2 deletions .github/workflows/publish-objectivec-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
paths:
- objectivec/**
schedule:
- cron: '0 0 1,15 * *'
- cron: '0 0 * * 0'
workflow_dispatch:

concurrency:
Expand Down Expand Up @@ -56,4 +56,4 @@ jobs:
with:
name: onnxruntime-objectivec-apidocs
path: ./_site
retention-days: 30
retention-days: 10
4 changes: 2 additions & 2 deletions .github/workflows/publish-python-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- onnxruntime/python/**
- docs/python/**
schedule:
- cron: '0 0 1,15 * *'
- cron: '0 0 * * 0'
workflow_dispatch:

concurrency:
Expand Down Expand Up @@ -58,4 +58,4 @@ jobs:
with:
name: onnxruntime-python-apidocs
path: _site
retention-days: 30
retention-days: 10
4 changes: 2 additions & 2 deletions onnxruntime/test/autoep/library/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ used for testing and as reference examples.
used for cross compiling models for different targets.

- `example_plugin_ep_kernel_registry/`
Contains a basic plugin execution provider that registers operator kernels with ONNX Runtime, as opposed to compiling
Contains a basic plugin execution provider that registers operator kernels with ONNX Runtime, as opposed to compiling
nodes.

- `plugin_ep_utils.h`
Expand All @@ -39,4 +39,4 @@ used for testing and as reference examples.
---

For more information, see the ONNX Runtime documentation on
[plugin execution providers](https://onnxruntime.ai/docs/execution-providers/plugin-ep-libraries.html).
[plugin execution providers](https://onnxruntime.ai/docs/execution-providers/plugin-ep-libraries/).
Loading