Files
blis/test/3/matlab/gen_opnames.m
Field G. Van Zee b938c16b0c Renamed test/3m4m to test/3.
Details:
- Renamed '3m4m' directory to '3', which captures the directory nicely
  since it builds test drivers to test level-3 operations.
- These test drivers ceased to be used to test the 3m and 4m (or even
  1m) induced methods long ago, hence the name change.
2019-03-07 16:40:39 -06:00

24 lines
264 B
Matlab

function r_val = gen_opnames( ops, dts )
nops = size( ops, 1 );
ndts = size( dts, 2 );
i = 1;
for id = 1:ndts
dt = dts( id );
for io = 1:nops
op = ops( io, : );
opnames( i, : ) = sprintf( '%c%s', dt, op );
i = i + 1;
end
end
r_val = opnames;
end