mirror of
https://github.com/amd/blis.git
synced 2026-05-11 17:50:00 +00:00
Fixed syntax artifacts from 4b36e85 in examples.
Details:
- Fixed artifacts of malformed recursive sed expressions used when
preparing 4b36e85, in which most function-like macros were converted
to static functions. The syntactically defective code was contained
entirely in examples/oapi. Thanks to Tony Skjellum for reporting this
issue.
- Update to CREDITS file.
This commit is contained in:
@@ -122,7 +122,7 @@ int main( int argc, char** argv )
|
||||
// Let's inspect the amount of padding inserted for alignment. Note
|
||||
// the difference between the m dimension and the column stride.
|
||||
printf( "datatype %s\n", bli_dt_string( bli_obj_dt( &a8 ) ) );
|
||||
printf( "datatype size %d bytes\n", bli_dt_size( bli_obj_dt( &a8 ) ) );
|
||||
printf( "datatype size %d bytes\n", ( int )bli_dt_size( bli_obj_dt( &a8 ) ) );
|
||||
printf( "m dim (# of rows): %d\n", ( int )bli_obj_length( &a8 ) );
|
||||
printf( "n dim (# of cols): %d\n", ( int )bli_obj_width( &a8 ) );
|
||||
printf( "row stride: %d\n", ( int )bli_obj_row_stride( &a8 ) );
|
||||
@@ -140,7 +140,7 @@ int main( int argc, char** argv )
|
||||
bli_obj_create( BLIS_DCOMPLEX, 3, 5, 0, 0, &a11 );
|
||||
|
||||
printf( "datatype %s\n", bli_dt_string( bli_obj_dt( &a9 ) ) );
|
||||
printf( "datatype size %d bytes\n", bli_dt_size( bli_obj_dt( &a9 ) ) );
|
||||
printf( "datatype size %d bytes\n", ( int )bli_dt_size( bli_obj_dt( &a9 ) ) );
|
||||
printf( "m dim (# of rows): %d\n", ( int )bli_obj_length( &a9 ) );
|
||||
printf( "n dim (# of cols): %d\n", ( int )bli_obj_width( &a9 ) );
|
||||
printf( "row stride: %d\n", ( int )bli_obj_row_stride( &a9 ) );
|
||||
@@ -148,7 +148,7 @@ int main( int argc, char** argv )
|
||||
|
||||
printf( "\n" );
|
||||
printf( "datatype %s\n", bli_dt_string( bli_obj_dt( &a10 ) ) );
|
||||
printf( "datatype size %d bytes\n", bli_dt_size( bli_obj_dt( &a10 ) ) );
|
||||
printf( "datatype size %d bytes\n", ( int )bli_dt_size( bli_obj_dt( &a10 ) ) );
|
||||
printf( "m dim (# of rows): %d\n", ( int )bli_obj_length( &a10 ) );
|
||||
printf( "n dim (# of cols): %d\n", ( int )bli_obj_width( &a10 ) );
|
||||
printf( "row stride: %d\n", ( int )bli_obj_row_stride( &a10 ) );
|
||||
@@ -156,7 +156,7 @@ int main( int argc, char** argv )
|
||||
|
||||
printf( "\n" );
|
||||
printf( "datatype %s\n", bli_dt_string( bli_obj_dt( &a11 ) ) );
|
||||
printf( "datatype size %d bytes\n", bli_dt_size( bli_obj_dt( &a11 ) ) );
|
||||
printf( "datatype size %d bytes\n", ( int )bli_dt_size( bli_obj_dt( &a11 ) ) );
|
||||
printf( "m dim (# of rows): %d\n", ( int )bli_obj_length( &a11 ) );
|
||||
printf( "n dim (# of cols): %d\n", ( int )bli_obj_width( &a11 ) );
|
||||
printf( "row stride: %d\n", ( int )bli_obj_row_stride( &a11 ) );
|
||||
|
||||
Reference in New Issue
Block a user