File tree Expand file tree Collapse file tree
gen/java/org/bytedeco/onnxruntime
main/java/org/bytedeco/onnxruntime/presets Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export COREML_FLAGS=
1414export OPENVINO_FLAGS=
1515export OPENVINO_CMAKE_DIR=
1616export OPENMP_FLAGS= # "--use_openmp"
17- export TRAINING_FLAGS= # --enable_training_apis --enable_training_ops
17+ export TRAINING_FLAGS=" --enable_training_apis --enable_training_ops"
1818export CUDAFLAGS=" -v"
1919export CUDACXX=" /usr/local/cuda/bin/nvcc"
2020export CUDA_HOME=" /usr/local/cuda"
Original file line number Diff line number Diff line change 1+ // Targeted by JavaCPP version 1.5.14-SNAPSHOT: DO NOT EDIT THIS FILE
2+
3+ package org .bytedeco .onnxruntime ;
4+
5+ import java .nio .*;
6+ import org .bytedeco .javacpp .*;
7+ import org .bytedeco .javacpp .annotation .*;
8+
9+ import static org .bytedeco .javacpp .presets .javacpp .*;
10+ import org .bytedeco .opencl .*;
11+ import static org .bytedeco .opencl .global .OpenCL .*;
12+ import org .bytedeco .dnnl .*;
13+ import static org .bytedeco .dnnl .global .dnnl .*;
14+
15+ import static org .bytedeco .onnxruntime .global .onnxruntime .*;
16+ // Type that enables performing training for the given user models.
17+ @ Opaque @ Properties (inherit = org .bytedeco .onnxruntime .presets .onnxruntime .class )
18+ public class OrtCheckpointState extends Pointer {
19+ /** Empty constructor. Calls {@code super((Pointer)null)}. */
20+ public OrtCheckpointState () { super ((Pointer )null ); }
21+ /** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
22+ public OrtCheckpointState (Pointer p ) { super (p ); }
23+ }
You can’t perform that action at this time.
0 commit comments