Files
blis/test/studies/skx/plot_skx_perf.m
Devangi N. Parikh 73b0b2a3ac Created hardware-specific test driver directory.
Details:
- Created a 'studies' subdirectory within 'test' to be used to house
   test drivers, makefiles, run scripts, matlab plot code, and related
   files that have been customized for collecting performance data on
   specific host machines or product lines. This new setup will help us
   catalog, track, and share test driver materials over time, and in a
   way that facilitates reproducibility.
- Created an 'skx' subdirectory within 'test/studies' to house various
   level-3 test driver files used to measure performance on SkylakeX
   nodes (specifically, those nodes used by TACC's stampede2 system).
2018-07-12 16:58:41 -05:00

36 lines
612 B
Matlab

fontsize = 6;
numcores = 4;
freq = 3.5;
sflopspercycle = 64;
dflopspercycle = 32;
speak = sflopspercycle*freq;
dpeak = dflopspercycle*freq;
xmax_mt = 5000;
fig1 = figure(1);
clf(fig1)
%
pathname = './20180711/';
plot_gemm_st_perf
plot_syrk_st_perf
plot_hemm_st_perf
plot_trmm_st_perf
fig1.PaperPositionMode = 'auto';
orient(fig1,'landscape')
print(fig1, 'skx-st', '-dpdf','-fillpage')
% fig1 = figure(2);
% clf;
%
% plot_gemm_mt_perf
% plot_syrk_mt_perf
% plot_hemm_mt_perf
% plot_trmm_mt_perf
%
% fig1.PaperPositionMode = 'auto';
% orient(fig1,'landscape')
% print(fig1, 'A57-mt', '-dpdf','-fillpage')