Fixed benchmark figure size output

This commit is contained in:
Stephen Kiazyk 2014-10-21 11:00:17 -04:00
parent 1086423717
commit b7897bced0
4 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ if plotFileBase != None:
plotCommands.append('"%s" using 1:%d with lines title "%s"' % (make_model_data_file_name(dataFileBase, k), runParams[1], os.path.basename(k)));
plotCommand = "plot " + ', '.join(plotCommands);
plotCommandFile = tempfile.TemporaryFile();
plotCommandFile.write('set terminal png size 1280,960;\n');
plotCommandFile.write('set terminal png size 640,480;\n');
plotCommandFile.write('set output "%s";\n' % make_figure_file_name(plotFileBase, runParams[0]));
plotCommandFile.write('set xlabel "Number of Source Points";\n');
plotCommandFile.write('set ylabel "%s";\n' % runParams[2]);

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 14 KiB