Skip to content

Commit

Permalink
* Upgrade presets for ONNX 1.6.0 (pull #795)
Browse files Browse the repository at this point in the history
  • Loading branch information
EmergentOrder authored and saudet committed Oct 2, 2019
1 parent e5aa2cd commit 63cad2e
Show file tree
Hide file tree
Showing 500 changed files with 2,104 additions and 536 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Add profiles to parent `pom.xml` to detect host and use its artifacts: `mvn -Djavacpp.platform.custom -Djavacpp.platform.host ...`
* Add `-platform-gpu`, `-platform-python`, `-platform-python-gpu`, and `-platform-redist` artifacts for convenience
* Add presets for librealsense2 2.25.0, DNNL 1.1-rc
* Upgrade presets for OpenCV 4.1.1, FFmpeg 4.2.1, librealsense 1.12.4, MKL 2019.5, MKL-DNN 0.21.1, LLVM 9.0.0, OpenBLAS 0.3.7, GSL 2.6, CPython 3.7.4, NumPy 1.17.2, CUDA 10.1 Update 2, cuDNN 7.6.2, NCCL 2.4.8, LLVM 8.0.1, MXNet 1.5.1.rc0, TensorFlow 1.15.0-rc1, TensorRT 6.0, nGraph 0.25.0, Qt 5.13.1, cpu_features 0.4.1, and their dependencies
* Upgrade presets for OpenCV 4.1.1, FFmpeg 4.2.1, librealsense 1.12.4, MKL 2019.5, MKL-DNN 0.21.1, LLVM 9.0.0, OpenBLAS 0.3.7, GSL 2.6, CPython 3.7.4, NumPy 1.17.2, CUDA 10.1 Update 2, cuDNN 7.6.2, NCCL 2.4.8, LLVM 8.0.1, MXNet 1.5.1.rc0, TensorFlow 1.15.0-rc1, TensorRT 6.0, ONNX 1.6.0, nGraph 0.25.0, Qt 5.13.1, cpu_features 0.4.1, and their dependencies

### July 9, 2019 version 1.5.1
* Add `linux-arm64` CI builds for OpenCV, FFmpeg, OpenBLAS, FFTW, GSL, Leptonica, Tesseract, and others ([issue bytedeco/javacv#1021](https://github.com/bytedeco/javacv/issues/1021))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Each child module in turn relies by default on the included [`cppbuild.sh` scrip
* TensorFlow 1.15.0 https://github.com/tensorflow/tensorflow
* TensorRT 6.0 https://developer.nvidia.com/tensorrt
* The Arcade Learning Environment 0.6.0 https://github.com/mgbellemare/Arcade-Learning-Environment
* ONNX 1.5.0 https://github.com/onnx/onnx
* ONNX 1.6.0 https://github.com/onnx/onnx
* nGraph 0.25.0 https://github.com/NervanaSystems/ngraph
* LiquidFun http://google.github.io/liquidfun/
* Qt 5.13.x https://download.qt.io/archive/qt/
Expand Down
6 changes: 3 additions & 3 deletions onnx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Introduction
------------
This directory contains the JavaCPP Presets module for:

* ONNX 1.5.0 https://onnx.ai/
* ONNX 1.6.0 https://onnx.ai/

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

Expand Down Expand Up @@ -35,15 +35,15 @@ We can use [Maven 3](http://maven.apache.org/) to download and install automatic
<modelVersion>4.0.0</modelVersion>
<groupId>org.bytedeco.onnx</groupId>
<artifactId>loadmodel</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
<properties>
<exec.mainClass>LoadModel</exec.mainClass>
</properties>
<dependencies>
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>onnx-platform</artifactId>
<version>1.5.0-1.5.1</version>
<version>1.6.0-1.5.2-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
Expand Down
4 changes: 2 additions & 2 deletions onnx/cppbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ if [[ $PLATFORM == windows* ]]; then
exit 1
fi

export ONNX=1.5.0
export ONNX=1.6.0
export PROTO=3.7.1
export PYBIND=2.2.4
export PYBIND=2.4.2

download https://github.com/onnx/onnx/archive/v$ONNX.tar.gz onnx-$ONNX.tar.gz
download https://github.com/google/protobuf/releases/download/v$PROTO/protobuf-cpp-$PROTO.tar.gz protobuf-$PROTO.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion onnx/platform/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<properties>
<javacpp.moduleId>onnx</javacpp.moduleId>
<revision>1.5.0-${project.parent.version}</revision>
<revision>1.6.0-${project.parent.version}</revision>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion onnx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<name>JavaCPP Presets for ONNX</name>

<properties>
<revision>1.5.0-${project.parent.version}</revision>
<revision>1.6.0-${project.parent.version}</revision>
</properties>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions onnx/samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.bytedeco.onnx</groupId>
<artifactId>loadmodel</artifactId>
<version>1.5.1</version>
<version>1.5.2-SNAPSHOT</version>
<properties>
<exec.mainClass>LoadModel</exec.mainClass>
</properties>
<dependencies>
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>onnx-platform</artifactId>
<version>1.5.0-1.5.1</version>
<version>1.6.0-1.5.2-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/Abs_Onnx_ver1.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/Abs_Onnx_ver6.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/Acos_Onnx_ver7.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/Acosh_Onnx_ver9.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/Adapter.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/Add_Onnx_ver1.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/Add_Onnx_ver6.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/Add_Onnx_ver7.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/And_Onnx_ver1.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/And_Onnx_ver7.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/Arena.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/ArenaOptions.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/ArenaStringPtr.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/ArgMax_Onnx_ver1.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
17 changes: 17 additions & 0 deletions onnx/src/gen/java/org/bytedeco/onnx/ArgMax_Onnx_ver11.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

import java.nio.*;
import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;

import static org.bytedeco.onnx.global.onnx.*;

@Namespace("onnx") @Opaque @Properties(inherit = org.bytedeco.onnx.presets.onnx.class)
public class ArgMax_Onnx_ver11 extends Pointer {
/** Empty constructor. Calls {@code super((Pointer)null)}. */
public ArgMax_Onnx_ver11() { super((Pointer)null); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public ArgMax_Onnx_ver11(Pointer p) { super(p); }
}
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/ArgMin_Onnx_ver1.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
17 changes: 17 additions & 0 deletions onnx/src/gen/java/org/bytedeco/onnx/ArgMin_Onnx_ver11.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

import java.nio.*;
import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;

import static org.bytedeco.onnx.global.onnx.*;

@Namespace("onnx") @Opaque @Properties(inherit = org.bytedeco.onnx.presets.onnx.class)
public class ArgMin_Onnx_ver11 extends Pointer {
/** Empty constructor. Calls {@code super((Pointer)null)}. */
public ArgMin_Onnx_ver11() { super((Pointer)null); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public ArgMin_Onnx_ver11(Pointer p) { super(p); }
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/Asin_Onnx_ver7.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/Asinh_Onnx_ver9.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/Atan_Onnx_ver7.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/Atanh_Onnx_ver9.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
25 changes: 24 additions & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/AttributeProto.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down Expand Up @@ -88,6 +88,8 @@ public native void SerializeWithCachedSizes(
public static final int TENSOR = TENSOR();
@MemberGetter public static native @Cast("const onnx::AttributeProto::AttributeType") int GRAPH();
public static final int GRAPH = GRAPH();
@MemberGetter public static native @Cast("const onnx::AttributeProto::AttributeType") int SPARSE_TENSOR();
public static final int SPARSE_TENSOR = SPARSE_TENSOR();
@MemberGetter public static native @Cast("const onnx::AttributeProto::AttributeType") int FLOATS();
public static final int FLOATS = FLOATS();
@MemberGetter public static native @Cast("const onnx::AttributeProto::AttributeType") int INTS();
Expand All @@ -98,6 +100,8 @@ public native void SerializeWithCachedSizes(
public static final int TENSORS = TENSORS();
@MemberGetter public static native @Cast("const onnx::AttributeProto::AttributeType") int GRAPHS();
public static final int GRAPHS = GRAPHS();
@MemberGetter public static native @Cast("const onnx::AttributeProto::AttributeType") int SPARSE_TENSORS();
public static final int SPARSE_TENSORS = SPARSE_TENSORS();
public static native @Cast("bool") boolean AttributeType_IsValid(int value);
@MemberGetter public static native @Cast("const onnx::AttributeProto::AttributeType") int AttributeType_MIN();
public static final int AttributeType_MIN = AttributeType_MIN();
Expand Down Expand Up @@ -177,6 +181,15 @@ public native void SerializeWithCachedSizes(
public native @Const @ByRef GraphProto graphs(int index);
public native GraphProto add_graphs();

// repeated .onnx.SparseTensorProto sparse_tensors = 23;
public native int sparse_tensors_size();
public native void clear_sparse_tensors();
@MemberGetter public static native int kSparseTensorsFieldNumber();
public static final int kSparseTensorsFieldNumber = kSparseTensorsFieldNumber();
public native SparseTensorProto mutable_sparse_tensors(int index);
public native @Const @ByRef SparseTensorProto sparse_tensors(int index);
public native SparseTensorProto add_sparse_tensors();

// optional string name = 1;
public native @Cast("bool") boolean has_name();
public native void clear_name();
Expand Down Expand Up @@ -260,6 +273,16 @@ public native void SerializeWithCachedSizes(
public native GraphProto mutable_g();
public native void set_allocated_g(GraphProto g);

// optional .onnx.SparseTensorProto sparse_tensor = 22;
public native @Cast("bool") boolean has_sparse_tensor();
public native void clear_sparse_tensor();
@MemberGetter public static native int kSparseTensorFieldNumber();
public static final int kSparseTensorFieldNumber = kSparseTensorFieldNumber();
public native @Const @ByRef SparseTensorProto sparse_tensor();
public native SparseTensorProto release_sparse_tensor();
public native SparseTensorProto mutable_sparse_tensor();
public native void set_allocated_sparse_tensor(SparseTensorProto sparse_tensor);

// optional int64 i = 3;
public native @Cast("bool") boolean has_i();
public native void clear_i();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
2 changes: 1 addition & 1 deletion onnx/src/gen/java/org/bytedeco/onnx/AttributeValue.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
17 changes: 17 additions & 0 deletions onnx/src/gen/java/org/bytedeco/onnx/AveragePool_Onnx_ver11.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

import java.nio.*;
import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;

import static org.bytedeco.onnx.global.onnx.*;

@Namespace("onnx") @Opaque @Properties(inherit = org.bytedeco.onnx.presets.onnx.class)
public class AveragePool_Onnx_ver11 extends Pointer {
/** Empty constructor. Calls {@code super((Pointer)null)}. */
public AveragePool_Onnx_ver11() { super((Pointer)null); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public AveragePool_Onnx_ver11(Pointer p) { super(p); }
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
// Targeted by JavaCPP version 1.5.2-SNAPSHOT: DO NOT EDIT THIS FILE

package org.bytedeco.onnx;

Expand Down
Loading

0 comments on commit 63cad2e

Please sign in to comment.