Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: address commit comments from bc90eba (#5861) #6210

Closed
wants to merge 9 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,12 @@
/**
* Plugin to list package names.
*
* @module @stdlib/_tools/makie/plugins/makie-list-pkgs-names

Check warning on line 24 in lib/node_modules/@stdlib/_tools/makie/plugins/makie-list-pkgs-names/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "makie"

Check warning on line 24 in lib/node_modules/@stdlib/_tools/makie/plugins/makie-list-pkgs-names/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "makie"
*
* @example
* var plugin = require( '@stdlib/_tools/makie/plugins/makie-list-pkgs-names' );
* var makie = require( '@stdlib/_tools/makie' );
* var plugin = require( '@stdlib/_tools/makie/plugins/makie-list-pkgs-names' );
*
* var opts = {
* 'plugins': {
* 'benchmark': plugin
Expand All @@ -40,7 +41,6 @@

var main = require( './main.js' );


// EXPORTS //

Check failure on line 44 in lib/node_modules/@stdlib/_tools/makie/plugins/makie-list-pkgs-names/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Header comment must be preceded by one additional empty line

module.exports = main;
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#define NAME "ccis"
#define ITERATIONS 1000000
#define REPEATS 3
#define ARRAY_SIZE 100 // For our re/im arrays

/**
* Prints the TAP version.
Expand Down Expand Up @@ -73,7 +74,7 @@ static void print_results( double elapsed ) {
static double tic( void ) {
struct timeval now;
gettimeofday( &now, NULL );
return (double)now.tv_sec + (double)now.tv_usec/1.0e6;
return (double)now.tv_sec + (double)now.tv_usec / 1.0e6;
}

/**
Expand All @@ -98,6 +99,16 @@ static double benchmark( void ) {
double t;
int i;

// Arrays to store 100 random real and imaginary values:
double re_array[ ARRAY_SIZE ];
double im_array[ ARRAY_SIZE ];

// Initialize re and im arrays with random values:
for ( i = 0; i < ARRAY_SIZE; i++ ) {
re_array[ i ] = ( 1000.0 * rand_double() ) - 500.0;
im_array[ i ] = ( 1000.0 * rand_double() ) - 500.0;
}

stdlib_complex128_t z1;
stdlib_complex128_t z2;

Expand All @@ -107,20 +118,26 @@ static double benchmark( void ) {
}

t = tic();

for ( i = 0; i < ITERATIONS; i++ ) {
z1 = stdlib_complex128( re[ i%100 ], im[ i%100 ] );

// Get real and imaginary values from the arrays using i % 100:
z1 = stdlib_complex128( re_array[ i % ARRAY_SIZE ], im_array[ i % ARRAY_SIZE ] );

z2 = stdlib_base_ccis( z1 );
stdlib_complex128_reim( z2, &re[ i%100 ], &im[ i%100 ] );
if ( re != re ) {
printf( "should not return NaN\n" );
break;

// Overwrite the original arrays with the result:
stdlib_complex128_reim( z2, &re_array[ i % ARRAY_SIZE ], &im_array[ i % ARRAY_SIZE ] );

// Check if the real part becomes NaN:
if ( isnan( re_array[ i % ARRAY_SIZE ] ) ) {
printf( "should not return NaN at index %d\n", i % ARRAY_SIZE );
break;
}
}

elapsed = tic() - t;
if ( im != im ) {
printf( "should not return NaN\n" );
}

return elapsed;
}

Expand All @@ -135,11 +152,13 @@ int main( void ) {
srand( time( NULL ) );

print_version();

for ( i = 0; i < REPEATS; i++ ) {
printf( "# c::native::%s\n", NAME );
elapsed = benchmark();
print_results( elapsed );
printf( "ok %d benchmark finished\n", i+1 );
printf( "ok %d benchmark finished\n", i + 1 );
}

print_summary( REPEATS, REPEATS );
}
80 changes: 40 additions & 40 deletions lib/node_modules/@stdlib/ndarray/base/nullary/src/f_as_t.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ int8_t stdlib_ndarray_f_as_t_0d( struct ndarray *arrays[], void *fcn ) {
*/
int8_t stdlib_ndarray_f_as_t_1d( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_1D_LOOP_CLBK( float )
func_type *f = (const func_type *)fcn;
STDLIB_NDARRAY_NULLARY_1D_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -275,8 +275,8 @@ int8_t stdlib_ndarray_f_as_t_1d( struct ndarray *arrays[], void *fcn ) {
*/
int8_t stdlib_ndarray_f_as_t_2d( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_2D_LOOP_CLBK( float )
func_type *f = (const func_type *)fcn;
STDLIB_NDARRAY_NULLARY_2D_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -358,8 +358,8 @@ int8_t stdlib_ndarray_f_as_t_2d( struct ndarray *arrays[], void *fcn ) {
*/
int8_t stdlib_ndarray_f_as_t_2d_blocked( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_2D_BLOCKED_LOOP_CLBK( float )
func_type *f = (const func_type *)fcn;
STDLIB_NDARRAY_NULLARY_2D_BLOCKED_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -440,9 +440,9 @@ int8_t stdlib_ndarray_f_as_t_2d_blocked( struct ndarray *arrays[], void *fcn ) {
* stdlib_ndarray_free( x );
*/
int8_t stdlib_ndarray_f_as_t_3d( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
typedef uint16_t func_type(const void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_3D_LOOP_CLBK( float )
STDLIB_NDARRAY_NULLARY_3D_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -523,9 +523,9 @@ int8_t stdlib_ndarray_f_as_t_3d( struct ndarray *arrays[], void *fcn ) {
* stdlib_ndarray_free( x );
*/
int8_t stdlib_ndarray_f_as_t_3d_blocked( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
typedef uint16_t func_type(const void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_3D_BLOCKED_LOOP_CLBK( float )
STDLIB_NDARRAY_NULLARY_3D_BLOCKED_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -606,9 +606,9 @@ int8_t stdlib_ndarray_f_as_t_3d_blocked( struct ndarray *arrays[], void *fcn ) {
* stdlib_ndarray_free( x );
*/
int8_t stdlib_ndarray_f_as_t_4d( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
typedef uint16_t func_type(const void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_4D_LOOP_CLBK( float )
STDLIB_NDARRAY_NULLARY_4D_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -689,9 +689,9 @@ int8_t stdlib_ndarray_f_as_t_4d( struct ndarray *arrays[], void *fcn ) {
* stdlib_ndarray_free( x );
*/
int8_t stdlib_ndarray_f_as_t_4d_blocked( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
typedef uint16_t func_type(const void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_4D_BLOCKED_LOOP_CLBK( float )
STDLIB_NDARRAY_NULLARY_4D_BLOCKED_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -772,9 +772,9 @@ int8_t stdlib_ndarray_f_as_t_4d_blocked( struct ndarray *arrays[], void *fcn ) {
* stdlib_ndarray_free( x );
*/
int8_t stdlib_ndarray_f_as_t_5d( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
typedef uint16_t func_type(const void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_5D_LOOP_CLBK( float )
STDLIB_NDARRAY_NULLARY_5D_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -855,9 +855,9 @@ int8_t stdlib_ndarray_f_as_t_5d( struct ndarray *arrays[], void *fcn ) {
* stdlib_ndarray_free( x );
*/
int8_t stdlib_ndarray_f_as_t_5d_blocked( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
typedef uint16_t func_type(const void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_5D_BLOCKED_LOOP_CLBK( float )
STDLIB_NDARRAY_NULLARY_5D_BLOCKED_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -938,9 +938,9 @@ int8_t stdlib_ndarray_f_as_t_5d_blocked( struct ndarray *arrays[], void *fcn ) {
* stdlib_ndarray_free( x );
*/
int8_t stdlib_ndarray_f_as_t_6d( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
typedef uint16_t func_type(const void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_6D_LOOP_CLBK( float )
STDLIB_NDARRAY_NULLARY_6D_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -1021,9 +1021,9 @@ int8_t stdlib_ndarray_f_as_t_6d( struct ndarray *arrays[], void *fcn ) {
* stdlib_ndarray_free( x );
*/
int8_t stdlib_ndarray_f_as_t_6d_blocked( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
typedef uint16_t func_type(const void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_6D_BLOCKED_LOOP_CLBK( float )
STDLIB_NDARRAY_NULLARY_6D_BLOCKED_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -1104,9 +1104,9 @@ int8_t stdlib_ndarray_f_as_t_6d_blocked( struct ndarray *arrays[], void *fcn ) {
* stdlib_ndarray_free( x );
*/
int8_t stdlib_ndarray_f_as_t_7d( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
typedef uint16_t func_type(const void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_7D_LOOP_CLBK( float )
STDLIB_NDARRAY_NULLARY_7D_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -1187,9 +1187,9 @@ int8_t stdlib_ndarray_f_as_t_7d( struct ndarray *arrays[], void *fcn ) {
* stdlib_ndarray_free( x );
*/
int8_t stdlib_ndarray_f_as_t_7d_blocked( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
typedef uint16_t func_type(const void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_7D_BLOCKED_LOOP_CLBK( float )
STDLIB_NDARRAY_NULLARY_7D_BLOCKED_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -1270,9 +1270,9 @@ int8_t stdlib_ndarray_f_as_t_7d_blocked( struct ndarray *arrays[], void *fcn ) {
* stdlib_ndarray_free( x );
*/
int8_t stdlib_ndarray_f_as_t_8d( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
typedef uint16_t func_type(const void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_8D_LOOP_CLBK( float )
STDLIB_NDARRAY_NULLARY_8D_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -1353,9 +1353,9 @@ int8_t stdlib_ndarray_f_as_t_8d( struct ndarray *arrays[], void *fcn ) {
* stdlib_ndarray_free( x );
*/
int8_t stdlib_ndarray_f_as_t_8d_blocked( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
typedef uint16_t func_type(const void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_8D_BLOCKED_LOOP_CLBK( float )
STDLIB_NDARRAY_NULLARY_8D_BLOCKED_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -1436,9 +1436,9 @@ int8_t stdlib_ndarray_f_as_t_8d_blocked( struct ndarray *arrays[], void *fcn ) {
* stdlib_ndarray_free( x );
*/
int8_t stdlib_ndarray_f_as_t_9d( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
typedef uint16_t func_type(const void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_9D_LOOP_CLBK( float )
STDLIB_NDARRAY_NULLARY_9D_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -1519,9 +1519,9 @@ int8_t stdlib_ndarray_f_as_t_9d( struct ndarray *arrays[], void *fcn ) {
* stdlib_ndarray_free( x );
*/
int8_t stdlib_ndarray_f_as_t_9d_blocked( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
typedef uint16_t func_type(const void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_9D_BLOCKED_LOOP_CLBK( float )
STDLIB_NDARRAY_NULLARY_9D_BLOCKED_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -1602,9 +1602,9 @@ int8_t stdlib_ndarray_f_as_t_9d_blocked( struct ndarray *arrays[], void *fcn ) {
* stdlib_ndarray_free( x );
*/
int8_t stdlib_ndarray_f_as_t_10d( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
typedef uint16_t func_type(const void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_10D_LOOP_CLBK( float )
STDLIB_NDARRAY_NULLARY_10D_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -1685,9 +1685,9 @@ int8_t stdlib_ndarray_f_as_t_10d( struct ndarray *arrays[], void *fcn ) {
* stdlib_ndarray_free( x );
*/
int8_t stdlib_ndarray_f_as_t_10d_blocked( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
typedef uint16_t func_type(const void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_10D_BLOCKED_LOOP_CLBK( float )
STDLIB_NDARRAY_NULLARY_10D_BLOCKED_LOOP_CLBK(const float )
return 0;
}

Expand Down Expand Up @@ -1768,9 +1768,9 @@ int8_t stdlib_ndarray_f_as_t_10d_blocked( struct ndarray *arrays[], void *fcn )
* stdlib_ndarray_free( x );
*/
int8_t stdlib_ndarray_f_as_t_nd( struct ndarray *arrays[], void *fcn ) {
typedef uint16_t func_type( void );
typedef uint16_t func_type(const void );
func_type *f = (func_type *)fcn;
STDLIB_NDARRAY_NULLARY_ND_LOOP_CLBK( float )
STDLIB_NDARRAY_NULLARY_ND_LOOP_CLBK(const float )
return 0;
}

Expand Down
Loading
Loading