From 24d52b500149780a9f11f8433afbe83cbfd99d86 Mon Sep 17 00:00:00 2001 From: JaySoni1 Date: Wed, 19 Mar 2025 17:15:23 +0530 Subject: [PATCH 1/3] chore: fixed C lint errors --- lib/node_modules/@stdlib/ndarray/base/nullary/src/f_as_t.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/ndarray/base/nullary/src/f_as_t.c b/lib/node_modules/@stdlib/ndarray/base/nullary/src/f_as_t.c index 8047260975ee..86f8b32eeb97 100644 --- a/lib/node_modules/@stdlib/ndarray/base/nullary/src/f_as_t.c +++ b/lib/node_modules/@stdlib/ndarray/base/nullary/src/f_as_t.c @@ -192,7 +192,7 @@ 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; + func_type *f = (const func_type *)fcn; STDLIB_NDARRAY_NULLARY_1D_LOOP_CLBK( float ) return 0; } From 1c4a2e33fb0764eca8c6d3a28ae381e56ba1cbc7 Mon Sep 17 00:00:00 2001 From: JaySoni1 Date: Wed, 19 Mar 2025 17:40:56 +0530 Subject: [PATCH 2/3] chore: fixed C lint errors --- .../@stdlib/ndarray/base/nullary/src/f_as_t.c | 78 +++++++++---------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/lib/node_modules/@stdlib/ndarray/base/nullary/src/f_as_t.c b/lib/node_modules/@stdlib/ndarray/base/nullary/src/f_as_t.c index 86f8b32eeb97..0d41fe38d73c 100644 --- a/lib/node_modules/@stdlib/ndarray/base/nullary/src/f_as_t.c +++ b/lib/node_modules/@stdlib/ndarray/base/nullary/src/f_as_t.c @@ -193,7 +193,7 @@ 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 = (const func_type *)fcn; - STDLIB_NDARRAY_NULLARY_1D_LOOP_CLBK( float ) + STDLIB_NDARRAY_NULLARY_1D_LOOP_CLBK(const float ) return 0; } @@ -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; } @@ -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; } @@ -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; } @@ -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; } @@ -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; } @@ -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; } @@ -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; } @@ -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; } @@ -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; } @@ -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; } @@ -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; } @@ -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; } @@ -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; } @@ -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; } @@ -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; } @@ -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; } @@ -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; } @@ -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; } @@ -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; } From 80300dc5b027508b53794ca1997cf9804922d5f9 Mon Sep 17 00:00:00 2001 From: JaySoni1 Date: Sat, 22 Mar 2025 01:12:35 +0530 Subject: [PATCH 3/3] Update f_as_t.c Signed-off-by: JaySoni1