mirror of
https://github.com/amd/blis.git
synced 2026-05-04 22:41:11 +00:00
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).
36 lines
612 B
Matlab
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')
|