예제 #1
0
def create_plots(res_write, res_read, outdir, name):
    create_execution_histogram(res_write, res_read,
                               "{}/{}_execution.png".format(outdir, name))
    create_rates_histogram(res_write, res_read,
                           "{}/{}_rates.png".format(outdir, name))
    create_agg_bdwth_plot(res_write, res_read,
                          "{}/{}_agg_bdwth.png".format(outdir, name))
예제 #2
0
def create_plots(data, outdir, name):
    create_execution_histogram(data,
                               "{}/{}_execution.png".format(outdir, name))
    create_rates_histogram(data, "{}/{}_rates.png".format(outdir, name))
    create_total_gflops_plot(data, "{}/{}_gflops.png".format(outdir, name))