Skip to content

Commit 9f6dc85

Browse files
authored
* Upgrade presets for ONNX Runtime 1.27.1 (pull bytedeco#1789)
1 parent a53b7be commit 9f6dc85

8 files changed

Lines changed: 11 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Add new `SampleOnnxMNIST` in samples for TensorRT ([pull #1742](https://github.com/bytedeco/javacpp-presets/pull/1742))
1010
* Fix loading issues with `libomp.dylib` and `libiomp5.dylib` for DNNL and PyTorch on Mac
1111
* Include `model_package_loader.h` header file in presets for PyTorch ([issue #1729](https://github.com/bytedeco/javacpp-presets/issues/1729))
12-
* Upgrade presets for FFmpeg 8.1.1, MKL 2026.0.0, DNNL 3.12.2, OpenBLAS 0.3.33, CUDA 13.3.1, cuDNN 9.24.0.43, NCCL 2.30.7, nvCOMP 5.2.0.10, NVIDIA Video Codec SDK 13.1.15, OpenCL 3.1.1, FFTW 3.3.11, CPython 3.14.6, NumPy 2.5.0, SciPy 1.18.0, LLVM 22.1.7, PyTorch 2.13.0, TensorFlow Lite 2.21.0, TensorRT 11.1.0.106, Triton Inference Server 2.70.0, ONNX 1.22.0, ONNX Runtime 1.27.0 ([pull #1753](https://github.com/bytedeco/javacpp-presets/pull/1753)), and their dependencies
12+
* Upgrade presets for FFmpeg 8.1.1, MKL 2026.0.0, DNNL 3.12.2, OpenBLAS 0.3.33, CUDA 13.3.1, cuDNN 9.24.0.43, NCCL 2.30.7, nvCOMP 5.2.0.10, NVIDIA Video Codec SDK 13.1.15, OpenCL 3.1.1, FFTW 3.3.11, CPython 3.14.6, NumPy 2.5.0, SciPy 1.18.0, LLVM 22.1.7, PyTorch 2.13.0, TensorFlow Lite 2.21.0, TensorRT 11.1.0.106, Triton Inference Server 2.70.0, ONNX 1.22.0, ONNX Runtime 1.27.1 ([pull #1789](https://github.com/bytedeco/javacpp-presets/pull/1789)), and their dependencies
1313
* Compile classes with `parameters` bumping minimum requirements to Java SE 8 and Android 7.0 ([issue #1739](https://github.com/bytedeco/javacpp-presets/issues/1739))
1414

1515
### February 22, 2026 version 1.5.13

onnxruntime/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Introduction
99
------------
1010
This directory contains the JavaCPP Presets module for:
1111

12-
* ONNX Runtime 1.27.0 https://microsoft.github.io/onnxruntime/
12+
* ONNX Runtime 1.27.1 https://microsoft.github.io/onnxruntime/
1313

1414
Please refer to the parent README.md file for more detailed information about the JavaCPP Presets.
1515

@@ -46,14 +46,14 @@ We can use [Maven 3](http://maven.apache.org/) to download and install automatic
4646
<dependency>
4747
<groupId>org.bytedeco</groupId>
4848
<artifactId>onnxruntime-platform</artifactId>
49-
<version>1.27.0-1.5.14-SNAPSHOT</version>
49+
<version>1.27.1-1.5.14-SNAPSHOT</version>
5050
</dependency>
5151

5252
<!-- Additional dependencies required to use CUDA and cuDNN -->
5353
<dependency>
5454
<groupId>org.bytedeco</groupId>
5555
<artifactId>onnxruntime-platform-gpu</artifactId>
56-
<version>1.27.0-1.5.14-SNAPSHOT</version>
56+
<version>1.27.1-1.5.14-SNAPSHOT</version>
5757
</dependency>
5858

5959
<!-- Additional dependencies to use bundled CUDA and cuDNN -->

onnxruntime/cppbuild.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if [[ "$EXTENSION" == *gpu ]]; then
2828
GPU_FLAGS="--use_cuda --nvcc_threads 1"
2929
fi
3030

31-
ONNXRUNTIME=1.27.0
31+
ONNXRUNTIME=1.27.1
3232

3333
mkdir -p "$PLATFORM$EXTENSION"
3434
cd "$PLATFORM$EXTENSION"

onnxruntime/platform/gpu/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>org.bytedeco</groupId>
1414
<artifactId>onnxruntime-platform-gpu</artifactId>
15-
<version>1.27.0-${project.parent.version}</version>
15+
<version>1.27.1-${project.parent.version}</version>
1616
<name>JavaCPP Presets Platform GPU for ONNX Runtime</name>
1717

1818
<properties>

onnxruntime/platform/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>org.bytedeco</groupId>
1414
<artifactId>onnxruntime-platform</artifactId>
15-
<version>1.27.0-${project.parent.version}</version>
15+
<version>1.27.1-${project.parent.version}</version>
1616
<name>JavaCPP Presets Platform for ONNX Runtime</name>
1717

1818
<properties>

onnxruntime/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>org.bytedeco</groupId>
1313
<artifactId>onnxruntime</artifactId>
14-
<version>1.27.0-${project.parent.version}</version>
14+
<version>1.27.1-${project.parent.version}</version>
1515
<name>JavaCPP Presets for ONNX Runtime</name>
1616

1717
<properties>

onnxruntime/samples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<dependency>
1313
<groupId>org.bytedeco</groupId>
1414
<artifactId>onnxruntime-platform</artifactId>
15-
<version>1.27.0-1.5.14-SNAPSHOT</version>
15+
<version>1.27.1-1.5.14-SNAPSHOT</version>
1616
</dependency>
1717
</dependencies>
1818
<profiles>
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>org.bytedeco</groupId>
2525
<artifactId>onnxruntime-platform-gpu</artifactId>
26-
<version>1.27.0-1.5.14-SNAPSHOT</version>
26+
<version>1.27.1-1.5.14-SNAPSHOT</version>
2727
</dependency>
2828

2929
<!-- Additional dependencies to use bundled CUDA and cuDNN -->

platform/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@
348348
<dependency>
349349
<groupId>org.bytedeco</groupId>
350350
<artifactId>onnxruntime-platform</artifactId>
351-
<version>1.27.0-${project.version}</version>
351+
<version>1.27.1-${project.version}</version>
352352
</dependency>
353353
<!-- <dependency>-->
354354
<!-- <groupId>org.bytedeco</groupId>-->

0 commit comments

Comments
 (0)