org.bytedeco.caffe.DoubleCuDNNSigmoidLayer Maven / Gradle / Ivy
// Targeted by JavaCPP version 1.5.1: DO NOT EDIT THIS FILE
package org.bytedeco.caffe;
import java.nio.*;
import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;
import static org.bytedeco.openblas.global.openblas_nolapack.*;
import static org.bytedeco.openblas.global.openblas.*;
import org.bytedeco.opencv.opencv_core.*;
import static org.bytedeco.opencv.global.opencv_core.*;
import org.bytedeco.opencv.opencv_imgproc.*;
import static org.bytedeco.opencv.global.opencv_imgproc.*;
import static org.bytedeco.opencv.global.opencv_imgcodecs.*;
import org.bytedeco.opencv.opencv_videoio.*;
import static org.bytedeco.opencv.global.opencv_videoio.*;
import org.bytedeco.opencv.opencv_highgui.*;
import static org.bytedeco.opencv.global.opencv_highgui.*;
import org.bytedeco.hdf5.*;
import static org.bytedeco.hdf5.global.hdf5.*;
import static org.bytedeco.caffe.global.caffe.*;
@Platform(value = {"linux-x86_64", "macosx-x86_64"}, extension = "-gpu") @Name("caffe::CuDNNSigmoidLayer") @NoOffset @Properties(inherit = org.bytedeco.caffe.presets.caffe.class)
public class DoubleCuDNNSigmoidLayer extends DoubleSigmoidLayer {
static { Loader.load(); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public DoubleCuDNNSigmoidLayer(Pointer p) { super(p); }
public DoubleCuDNNSigmoidLayer(@Const @ByRef LayerParameter param) { super((Pointer)null); allocate(param); }
private native @Platform(value = {"linux-x86_64", "macosx-x86_64"}, extension = "-gpu") void allocate(@Const @ByRef LayerParameter param);
@Virtual public native void LayerSetUp(@Const @ByRef DoubleBlobVector bottom,
@Const @ByRef DoubleBlobVector top);
@Virtual public native void Reshape(@Const @ByRef DoubleBlobVector bottom,
@Const @ByRef DoubleBlobVector top);
@Virtual protected native void Forward_gpu(@Const @ByRef DoubleBlobVector bottom,
@Const @ByRef DoubleBlobVector top);
@Virtual protected native void Backward_gpu(@Const @ByRef DoubleBlobVector top,
@Const @ByRef BoolVector propagate_down, @Const @ByRef DoubleBlobVector bottom);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy