From b848313eb619ef16a9e9388fce5c45c9dfd29375 Mon Sep 17 00:00:00 2001 From: Neerajpathak07 Date: Fri, 3 Jan 2025 18:07:48 +0530 Subject: [PATCH 1/2] chore: minor clean up --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: passed - task: run_c_examples status: failed --- --- lib/node_modules/@stdlib/stats/base/dsnanmeanwd/src/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dsnanmeanwd/src/main.c b/lib/node_modules/@stdlib/stats/base/dsnanmeanwd/src/main.c index 67eec4aa84fb..770764e2a7c5 100644 --- a/lib/node_modules/@stdlib/stats/base/dsnanmeanwd/src/main.c +++ b/lib/node_modules/@stdlib/stats/base/dsnanmeanwd/src/main.c @@ -46,9 +46,9 @@ * @param strideX stride length * @return output value */ -double API_SUFFIX(stdlib_strided_dsnanmean)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX ) { +double API_SUFFIX(stdlib_strided_dsnanmeanwd)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX ) { const CBLAS_INT ox = stdlib_strided_stride2offset( N, strideX ); - return API_SUFFIX(stdlib_strided_dsnanmean_ndarray)( N, X, strideX, ox ); + return API_SUFFIX(stdlib_strided_dsnanmeanwd_ndarray)( N, X, strideX, ox ); } /** @@ -60,7 +60,7 @@ double API_SUFFIX(stdlib_strided_dsnanmean)( const CBLAS_INT N, const float *X, * @param offsetX starting index for X * @return output value */ -double API_SUFFIX(stdlib_strided_dsnanmean_ndarray)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX ) { +double API_SUFFIX(stdlib_strided_dsnanmeanwd_ndarray)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX ) { CBLAS_INT ix; CBLAS_INT i; CBLAS_INT n; From 11e852cbd83e68a707cc8384e93185969d8dcc3d Mon Sep 17 00:00:00 2001 From: Neerajpathak07 Date: Fri, 3 Jan 2025 18:15:41 +0530 Subject: [PATCH 2/2] chore: minor clean up --- lib/node_modules/@stdlib/stats/base/dsnanmeanwd/src/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dsnanmeanwd/src/main.c b/lib/node_modules/@stdlib/stats/base/dsnanmeanwd/src/main.c index 67eec4aa84fb..770764e2a7c5 100644 --- a/lib/node_modules/@stdlib/stats/base/dsnanmeanwd/src/main.c +++ b/lib/node_modules/@stdlib/stats/base/dsnanmeanwd/src/main.c @@ -46,9 +46,9 @@ * @param strideX stride length * @return output value */ -double API_SUFFIX(stdlib_strided_dsnanmean)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX ) { +double API_SUFFIX(stdlib_strided_dsnanmeanwd)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX ) { const CBLAS_INT ox = stdlib_strided_stride2offset( N, strideX ); - return API_SUFFIX(stdlib_strided_dsnanmean_ndarray)( N, X, strideX, ox ); + return API_SUFFIX(stdlib_strided_dsnanmeanwd_ndarray)( N, X, strideX, ox ); } /** @@ -60,7 +60,7 @@ double API_SUFFIX(stdlib_strided_dsnanmean)( const CBLAS_INT N, const float *X, * @param offsetX starting index for X * @return output value */ -double API_SUFFIX(stdlib_strided_dsnanmean_ndarray)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX ) { +double API_SUFFIX(stdlib_strided_dsnanmeanwd_ndarray)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX ) { CBLAS_INT ix; CBLAS_INT i; CBLAS_INT n;