Skip to content

Commit

Permalink
plotting barrier for npes = 1
Browse files Browse the repository at this point in the history
jamesaross committed Nov 3, 2017
1 parent 812779b commit c261dfc
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/barrier.c
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@ int main (void)
"# NPES\tLatency (nanoseconds)\n");
}

for (npe = 2; npe <= npes; npe++)
for (npe = 1; npe <= npes; npe++)
{
shmem_barrier_all();
ctimer_start();
2 changes: 1 addition & 1 deletion test/figures/barrier.gnuplot
Original file line number Diff line number Diff line change
@@ -5,6 +5,6 @@ set title "Epiphany-III OpenSHMEM Barrier Performance (Dissemination)"
set xlabel "Number of Processing Elements"
set ylabel "Latency (μsec)"
set key bottom right
set xr [2:16]
set xr [1:16]
set style circle
plot "barrier.dat" using 1:($2/1000) title 'Runtime w/ variable #PEs' with linespoints,

0 comments on commit c261dfc

Please sign in to comment.