Skip to content

Commit e52924e

Browse files
committed
Move summation packages to extended BLAS namespace
1 parent 6464e6f commit e52924e

File tree

522 files changed

+2292
-2035
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

522 files changed

+2292
-2035
lines changed

lib/node_modules/@stdlib/stats/base/dnansum/README.md renamed to lib/node_modules/@stdlib/blas/ext/base/dnansum/README.md

+2-2

lib/node_modules/@stdlib/stats/base/dnansum/benchmark/c/benchmark.length.c renamed to lib/node_modules/@stdlib/blas/ext/base/dnansum/benchmark/c/benchmark.length.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Benchmark `dnansum`.
2121
*/
22-
#include "stdlib/stats/base/dnansum.h"
22+
#include "stdlib/blas/ext/base/dnansum.h"
2323
#include <stdlib.h>
2424
#include <stdio.h>
2525
#include <math.h>

lib/node_modules/@stdlib/stats/base/dnansum/examples/c/example.c renamed to lib/node_modules/@stdlib/blas/ext/base/dnansum/examples/c/example.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
#include "stdlib/stats/base/dnansum.h"
19+
#include "stdlib/blas/ext/base/dnansum.h"
2020
#include <stdint.h>
2121
#include <stdio.h>
2222

lib/node_modules/@stdlib/stats/base/dnansum/lib/index.js renamed to lib/node_modules/@stdlib/blas/ext/base/dnansum/lib/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
/**
2222
* Compute the sum of double-precision floating-point strided array elements, ignoring `NaN` values.
2323
*
24-
* @module @stdlib/stats/base/dnansum
24+
* @module @stdlib/blas/ext/base/dnansum
2525
*
2626
* @example
2727
* var Float64Array = require( '@stdlib/array/float64' );
28-
* var dnansum = require( '@stdlib/stats/base/dnansum' );
28+
* var dnansum = require( '@stdlib/blas/ext/base/dnansum' );
2929
*
3030
* var x = new Float64Array( [ 1.0, -2.0, NaN, 2.0 ] );
3131
* var N = x.length;
@@ -36,7 +36,7 @@
3636
* @example
3737
* var Float64Array = require( '@stdlib/array/float64' );
3838
* var floor = require( '@stdlib/math/base/special/floor' );
39-
* var dnansum = require( '@stdlib/stats/base/dnansum' );
39+
* var dnansum = require( '@stdlib/blas/ext/base/dnansum' );
4040
*
4141
* var x = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0, NaN, NaN ] );
4242
* var N = floor( x.length / 2 );

lib/node_modules/@stdlib/stats/base/dnansum/package.json renamed to lib/node_modules/@stdlib/blas/ext/base/dnansum/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@stdlib/stats/base/dnansum",
2+
"name": "@stdlib/blas/ext/base/dnansum",
33
"version": "0.0.0",
44
"description": "Calculate the sum of double-precision floating-point strided array elements, ignoring NaN values.",
55
"license": "Apache-2.0",
@@ -58,6 +58,8 @@
5858
"stats",
5959
"mathematics",
6060
"math",
61+
"blas",
62+
"extended",
6163
"sum",
6264
"total",
6365
"summation",

lib/node_modules/@stdlib/stats/base/dnansum/src/addon.cpp renamed to lib/node_modules/@stdlib/blas/ext/base/dnansum/src/addon.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Compute the sum of double-precision floating-point strided array elements, ignoring `NaN` values.
2121
*/
22-
#include "stdlib/stats/base/dnansum.h"
22+
#include "stdlib/blas/ext/base/dnansum.h"
2323
#include <node_api.h>
2424
#include <stdint.h>
2525
#include <stdbool.h>

lib/node_modules/@stdlib/stats/base/dnansum/src/dnansum.c renamed to lib/node_modules/@stdlib/blas/ext/base/dnansum/src/dnansum.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Compute the sum of double-precision floating-point strided array elements, ignoring `NaN` values.
2121
*/
22-
#include "stdlib/stats/base/dnansum.h"
22+
#include "stdlib/blas/ext/base/dnansum.h"
2323
#include "stdlib/math/base/assert/is_nan.h"
2424
#include <stdint.h>
2525
#include <math.h>

lib/node_modules/@stdlib/stats/base/dnansumors/README.md renamed to lib/node_modules/@stdlib/blas/ext/base/dnansumors/README.md

+2-2

lib/node_modules/@stdlib/stats/base/dnansumors/benchmark/c/benchmark.length.c renamed to lib/node_modules/@stdlib/blas/ext/base/dnansumors/benchmark/c/benchmark.length.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Benchmark `dnansumors`.
2121
*/
22-
#include "stdlib/stats/base/dnansumors.h"
22+
#include "stdlib/blas/ext/base/dnansumors.h"
2323
#include <stdlib.h>
2424
#include <stdio.h>
2525
#include <math.h>

lib/node_modules/@stdlib/stats/base/dnansumors/examples/c/example.c renamed to lib/node_modules/@stdlib/blas/ext/base/dnansumors/examples/c/example.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
#include "stdlib/stats/base/dnansumors.h"
19+
#include "stdlib/blas/ext/base/dnansumors.h"
2020
#include <stdint.h>
2121
#include <stdio.h>
2222

lib/node_modules/@stdlib/stats/base/dnansumors/lib/index.js renamed to lib/node_modules/@stdlib/blas/ext/base/dnansumors/lib/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
/**
2222
* Compute the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using ordinary recursive summation.
2323
*
24-
* @module @stdlib/stats/base/dnansumors
24+
* @module @stdlib/blas/ext/base/dnansumors
2525
*
2626
* @example
2727
* var Float64Array = require( '@stdlib/array/float64' );
28-
* var dnansumors = require( '@stdlib/stats/base/dnansumors' );
28+
* var dnansumors = require( '@stdlib/blas/ext/base/dnansumors' );
2929
*
3030
* var x = new Float64Array( [ 1.0, -2.0, NaN, 2.0 ] );
3131
* var N = x.length;
@@ -36,7 +36,7 @@
3636
* @example
3737
* var Float64Array = require( '@stdlib/array/float64' );
3838
* var floor = require( '@stdlib/math/base/special/floor' );
39-
* var dnansumors = require( '@stdlib/stats/base/dnansumors' );
39+
* var dnansumors = require( '@stdlib/blas/ext/base/dnansumors' );
4040
*
4141
* var x = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0, NaN, NaN ] );
4242
* var N = floor( x.length / 2 );

lib/node_modules/@stdlib/stats/base/dnansumors/package.json renamed to lib/node_modules/@stdlib/blas/ext/base/dnansumors/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@stdlib/stats/base/dnansumors",
2+
"name": "@stdlib/blas/ext/base/dnansumors",
33
"version": "0.0.0",
44
"description": "Calculate the sum of double-precision floating-point strided array elements, ignoring NaN values and using ordinary recursive summation.",
55
"license": "Apache-2.0",
@@ -58,6 +58,8 @@
5858
"stats",
5959
"mathematics",
6060
"math",
61+
"blas",
62+
"extended",
6163
"sum",
6264
"total",
6365
"summation",

lib/node_modules/@stdlib/stats/base/dnansumors/src/addon.cpp renamed to lib/node_modules/@stdlib/blas/ext/base/dnansumors/src/addon.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Compute the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using ordinary recursive summation.
2121
*/
22-
#include "stdlib/stats/base/dnansumors.h"
22+
#include "stdlib/blas/ext/base/dnansumors.h"
2323
#include <node_api.h>
2424
#include <stdint.h>
2525
#include <stdbool.h>

lib/node_modules/@stdlib/stats/base/dnansumors/src/dnansumors.c renamed to lib/node_modules/@stdlib/blas/ext/base/dnansumors/src/dnansumors.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Compute the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using ordinary recursive summation.
2121
*/
22-
#include "stdlib/stats/base/dnansumors.h"
22+
#include "stdlib/blas/ext/base/dnansumors.h"
2323
#include "stdlib/math/base/assert/is_nan.h"
2424
#include <stdint.h>
2525

lib/node_modules/@stdlib/stats/base/dnansumpw/README.md renamed to lib/node_modules/@stdlib/blas/ext/base/dnansumpw/README.md

+2-2

lib/node_modules/@stdlib/stats/base/dnansumpw/benchmark/c/benchmark.length.c renamed to lib/node_modules/@stdlib/blas/ext/base/dnansumpw/benchmark/c/benchmark.length.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Benchmark `dnansumpw`.
2121
*/
22-
#include "stdlib/stats/base/dnansumpw.h"
22+
#include "stdlib/blas/ext/base/dnansumpw.h"
2323
#include <stdlib.h>
2424
#include <stdio.h>
2525
#include <math.h>

lib/node_modules/@stdlib/stats/base/dnansumpw/examples/c/example.c renamed to lib/node_modules/@stdlib/blas/ext/base/dnansumpw/examples/c/example.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
#include "stdlib/stats/base/dnansumpw.h"
19+
#include "stdlib/blas/ext/base/dnansumpw.h"
2020
#include <stdint.h>
2121
#include <stdio.h>
2222

lib/node_modules/@stdlib/stats/base/dnansumpw/lib/index.js renamed to lib/node_modules/@stdlib/blas/ext/base/dnansumpw/lib/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
/**
2222
* Compute the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using pairwise summation.
2323
*
24-
* @module @stdlib/stats/base/dnansumpw
24+
* @module @stdlib/blas/ext/base/dnansumpw
2525
*
2626
* @example
2727
* var Float64Array = require( '@stdlib/array/float64' );
28-
* var dnansumpw = require( '@stdlib/stats/base/dnansumpw' );
28+
* var dnansumpw = require( '@stdlib/blas/ext/base/dnansumpw' );
2929
*
3030
* var x = new Float64Array( [ 1.0, -2.0, NaN, 2.0 ] );
3131
* var N = x.length;
@@ -36,7 +36,7 @@
3636
* @example
3737
* var Float64Array = require( '@stdlib/array/float64' );
3838
* var floor = require( '@stdlib/math/base/special/floor' );
39-
* var dnansumpw = require( '@stdlib/stats/base/dnansumpw' );
39+
* var dnansumpw = require( '@stdlib/blas/ext/base/dnansumpw' );
4040
*
4141
* var x = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0, NaN, NaN ] );
4242
* var N = floor( x.length / 2 );

lib/node_modules/@stdlib/stats/base/dnansumpw/package.json renamed to lib/node_modules/@stdlib/blas/ext/base/dnansumpw/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@stdlib/stats/base/dnansumpw",
2+
"name": "@stdlib/blas/ext/base/dnansumpw",
33
"version": "0.0.0",
44
"description": "Calculate the sum of double-precision floating-point strided array elements, ignoring NaN values and using pairwise summation.",
55
"license": "Apache-2.0",
@@ -58,6 +58,8 @@
5858
"stats",
5959
"mathematics",
6060
"math",
61+
"blas",
62+
"extended",
6163
"sum",
6264
"total",
6365
"summation",

lib/node_modules/@stdlib/stats/base/dnansumpw/src/addon.cpp renamed to lib/node_modules/@stdlib/blas/ext/base/dnansumpw/src/addon.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Compute the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using pairwise summation.
2121
*/
22-
#include "stdlib/stats/base/dnansumpw.h"
22+
#include "stdlib/blas/ext/base/dnansumpw.h"
2323
#include <node_api.h>
2424
#include <stdint.h>
2525
#include <stdbool.h>

lib/node_modules/@stdlib/stats/base/dnansumpw/src/dnansumpw.c renamed to lib/node_modules/@stdlib/blas/ext/base/dnansumpw/src/dnansumpw.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Compute the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using pairwise summation.
2121
*/
22-
#include "stdlib/stats/base/dnansumpw.h"
22+
#include "stdlib/blas/ext/base/dnansumpw.h"
2323
#include "stdlib/math/base/assert/is_nan.h"
2424
#include <stdint.h>
2525

lib/node_modules/@stdlib/stats/base/dsum/README.md renamed to lib/node_modules/@stdlib/blas/ext/base/dsum/README.md

+2-2

lib/node_modules/@stdlib/stats/base/dsum/benchmark/c/benchmark.length.c renamed to lib/node_modules/@stdlib/blas/ext/base/dsum/benchmark/c/benchmark.length.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Benchmark `dsum`.
2121
*/
22-
#include "stdlib/stats/base/dsum.h"
22+
#include "stdlib/blas/ext/base/dsum.h"
2323
#include <stdlib.h>
2424
#include <stdio.h>
2525
#include <math.h>

0 commit comments

Comments
 (0)