Files
blis/test/mixeddt/matlab/plot_dom_all.m
Field G. Van Zee 6885051a16 Generalizations/cleanup to mixeddt matlab scripts.
Details:
- Parameterized, reorganized, and added comments to matlab scripts in
  test/mixeddt/matlab.
- Reordered some lines of code and added comments to plot_l3_perf.m in
  test/3m4m/matlab.
2018-12-05 14:45:39 -06:00

31 lines
629 B
Matlab

function r_val = plot_dom_all( cfreq, ...
dflopspercycle, ...
nth, ...
dirpath )
cases( 1, : ) = [ 'rrr' ];
cases( 2, : ) = [ 'rrc' ];
cases( 3, : ) = [ 'rcr' ];
cases( 4, : ) = [ 'rcc' ];
cases( 5, : ) = [ 'crr' ];
cases( 6, : ) = [ 'crc' ];
cases( 7, : ) = [ 'ccr' ];
cases( 8, : ) = [ 'ccc' ];
n_cases = size(cases,1);
for i = 1:n_cases
thecase = cases( i, : );
plot_dom_case( thecase, ...
cfreq, ...
dflopspercycle, ...
nth, ...
dirpath );
end
r_val = 0;
end