예제 #1
0
def main(readcsv=read_csv, method='defaultDense'):
    infile = "./data/batch/cholesky.csv"

    # configure a cholesky object
    algo = d4p.cholesky()

    # let's provide a file directly, not a table/array
    return algo.compute(infile)
예제 #2
0
def main():
    infile = "./data/batch/cholesky.csv"

    # configure a cholesky object
    algo = d4p.cholesky()

    # let's provide a file directly, not a table/array
    return algo.compute(infile)