@Override
    public void dpotrf(byte uplo, int N, INDArray A, INDArray INFO) {
        int status = Nd4j.getBlasLapackDelegator().LAPACKE_dpotrf(getColumnOrder(A), uplo, N,
                (DoublePointer)A.data().addressPointer(), getLda(A) );
        if( status != 0 ) {