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)
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)