Go to the source code of this file.
|
| saber_plot.parser = argparse.ArgumentParser() |
|
| saber_plot.help |
|
| saber_plot.args = parser.parse_args() |
|
list | saber_plot.plot_list = ["avg","diag","dirac","lct","lct_cor","local_diag_cor","local_diag_loc","normality","randomization","sampling_grids","umf","var"] |
|
list | saber_plot.done_list = ["normality","sampling_grids","lct","lct_cor"] |
|
dictionary | saber_plot.done = {} |
|
dictionary | saber_plot.alias_list |
|
string | saber_plot.testfig = args.testdata + "/" + args.test + "/fig" |
|
| saber_plot.suffix = f.split("test_" + args.mpi + "-" + args.omp + "_")[1][:-(len(f.rsplit(".")[-1])+1)] |
|
dictionary | saber_plot.plot_alias = alias_list[plot] |
|
| saber_plot.module = __import__(plot_alias) |
|
| saber_plot.func = getattr(module, plot_alias) |
|
string | saber_plot.message = "<html><head></head><body><h1>" + args.test + "</h1><ul>" |
|
| saber_plot.short_name = f.replace("test_" + args.mpi + "-" + args.omp + "_", "").replace(".jpg", "") |
|
string | saber_plot.cmd = "mogrify -trim " + os.path.join(args.testdata, args.test, "fig", f) |
|
| saber_plot.f = open(os.path.join(args.testdata, args.test, "fig", "index_" + args.mpi + "-" + args.omp + ".html"), "w") |
|