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