org.bytedeco.pytorch.AnnotatedSchema Maven / Gradle / Ivy
// Targeted by JavaCPP version 1.5.7: DO NOT EDIT THIS FILE
package org.bytedeco.pytorch;
import org.bytedeco.pytorch.Allocator;
import org.bytedeco.pytorch.Function;
import org.bytedeco.pytorch.Module;
import java.nio.*;
import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;
import static org.bytedeco.javacpp.presets.javacpp.*;
import static org.bytedeco.openblas.global.openblas_nolapack.*;
import static org.bytedeco.openblas.global.openblas.*;
import static org.bytedeco.pytorch.global.torch.*;
// This data structure represents operator schema, with metadata specifying
// where the registration of this schema occurred
@Namespace("c10::impl") @NoOffset @Properties(inherit = org.bytedeco.pytorch.presets.torch.class)
public class AnnotatedSchema extends Pointer {
static { Loader.load(); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public AnnotatedSchema(Pointer p) { super(p); }
public AnnotatedSchema(@ByVal FunctionSchema s, @StdString BytePointer d) { super((Pointer)null); allocate(s, d); }
private native void allocate(@ByVal FunctionSchema s, @StdString BytePointer d);
public AnnotatedSchema(@ByVal FunctionSchema s, @StdString String d) { super((Pointer)null); allocate(s, d); }
private native void allocate(@ByVal FunctionSchema s, @StdString String d);
public native @ByRef FunctionSchema schema(); public native AnnotatedSchema schema(FunctionSchema setter);
public native @StdString BytePointer debug(); public native AnnotatedSchema debug(BytePointer setter);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy