# graph for pmpi_data #output to a file, set some fonts, sizes #set terminal png nocrop font ",10" size 640,380 #graph title set notitle #colorbox set cblabel 'avg time (s)' set colorbox horiz user origin 0.04,0.90 size 0.54,0.02 set format cb "%1.0e" set cblabel offset 0,4.4 #default color scheme wasn't #varied enough for good detail set palette model RGB set palette defined #this wasn't useful and just got #in the way unset key #axis labels set xlabel 'rank' set ylabel 'rank' #have this label be rotated to be vertical set zlabel 'send count' rotate by 90 left #the best view I could find set view 50,24 #this was run with 64 processors set xrange[0:63] set yrange[0:63] #output file #set output 'pmpi_data.png' #plot command - ignores send_count=0 data points splot 'matrix.data' using ($3>0?$1:NaN):2:3:4 with points pointtype 7 pointsize 1.0 palette notitle