diff --git a/figures/cpu_matvec.pdf b/figures/cpu_matvec.pdf index 0b8a10f..d1e9366 100644 Binary files a/figures/cpu_matvec.pdf and b/figures/cpu_matvec.pdf differ diff --git a/figures/cpu_matvec.png b/figures/cpu_matvec.png index b4f7b4f..fd5823c 100644 Binary files a/figures/cpu_matvec.png and b/figures/cpu_matvec.png differ diff --git a/figures/cpu_matvec.py b/figures/cpu_matvec.py index 7789599..9c1ee94 100644 --- a/figures/cpu_matvec.py +++ b/figures/cpu_matvec.py @@ -11,14 +11,14 @@ BBOX_INCHES='tight' path = 'figures/cpu_matvec' fig, ax = plt.subplots(figsize=(6, 3)) systems = ('XE (32T)', "S822LC (160T)") -mlfmm = (8.65e4, 4.84e4) -total = (1.2e5, 5.77e4) +mlfmm = (8.65e1, 4.84e1) +total = (1.2e2, 5.77e1) x_pos = np.arange(len(systems)) ax.bar(x_pos, mlfmm, color='0.4', label='MLFMM') ax.bar(x_pos, [i-j for i,j in zip(total, mlfmm)], color='0.8', bottom=mlfmm, label='Non-MLFMM') ax.set_xticks(x_pos) ax.set_xticklabels(systems) -ax.set_ylabel("Execution Time (ms)") +ax.set_ylabel("Execution Time (s)") handles, labels = ax.get_legend_handles_labels() ax.legend(handles, labels) sns.despine(trim=True) diff --git a/figures/mlfmm_bw.pdf b/figures/mlfmm_bw.pdf index 7d7213f..bd0b42a 100644 Binary files a/figures/mlfmm_bw.pdf and b/figures/mlfmm_bw.pdf differ diff --git a/figures/mlfmm_minsky.pdf b/figures/mlfmm_minsky.pdf index 764e0b8..e97c79e 100644 Binary files a/figures/mlfmm_minsky.pdf and b/figures/mlfmm_minsky.pdf differ