
org.nd4j.nativeblas.NativeLapack Maven / Gradle / Ivy
package org.nd4j.nativeblas;
import org.bytedeco.javacpp.Loader;
import org.bytedeco.javacpp.Pointer;
import org.bytedeco.javacpp.annotation.Platform;
/**
* Created by agibsonccc on 2/20/16.
*/
@Platform(include = "NativeLapack.h", compiler = "cpp11", link = "nd4j", library = "jnind4j")
public class NativeLapack extends Pointer {
static {
// using our custom platform properties from resources, load
// in priority libraries found in library path over bundled ones
String platform = Loader.getPlatform();
Loader.load(NativeLapack.class, Loader.loadProperties(platform + "-nd4j", platform), true);
}
public NativeLapack() {
}
// LU decomoposition of a general matrix
/**
* LU decomposiiton of a matrix
* @param M
* @param N
* @param A
* @param lda
* @param IPIV
* @param INFO
*/
public native void dgetrf(long[] extraPointers,int M, int N, long A, int lda, int[] IPIV, int INFO);
// generate inverse of a matrix given its LU decomposition
/**
* Generate inverse ggiven LU decomp
* @param N
* @param A
* @param lda
* @param IPIV
* @param WORK
* @param lwork
* @param INFO
*/
public native void dgetri(long[] extraPointers,int N, long A, int lda, int[] IPIV, long WORK, int lwork, int INFO);
// LU decomoposition of a general matrix
/**
* LU decomposiiton of a matrix
* @param M
* @param N
* @param A
* @param lda
* @param IPIV
* @param INFO
*/
public native void sgetrf(long[] extraPointers,int M, int N, long A, int lda, int[] IPIV, int INFO);
// generate inverse of a matrix given its LU decomposition
/**
* Generate inverse ggiven LU decomp
* @param N
* @param A
* @param lda
* @param IPIV
* @param WORK
* @param lwork
* @param INFO
*/
public native void sgetri(long[] extraPointers,int N, long A, int lda, int[] IPIV, long WORK, int lwork, int INFO);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy