From c5d4238414d1b415daf446cfe082d4701da84cc0 Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Tue, 26 Mar 2024 13:47:55 +0000 Subject: [PATCH] Update artifacts --- blas/ext/base/dapxsum/coverage.ndjson | 1 + blas/ext/base/dapxsum/dapxsum.js.html | 244 ++++++++++++++++ blas/ext/base/dapxsum/dapxsum.native.js.html | 244 ++++++++++++++++ blas/ext/base/dapxsum/index.html | 206 +++++++++++++ blas/ext/base/dapxsum/index.js.html | 289 +++++++++++++++++++ blas/ext/base/dapxsum/main.js.html | 190 ++++++++++++ blas/ext/base/dapxsum/native.js.html | 190 ++++++++++++ blas/ext/base/dapxsum/ndarray.js.html | 244 ++++++++++++++++ blas/ext/base/dapxsum/ndarray.native.js.html | 259 +++++++++++++++++ 9 files changed, 1867 insertions(+) create mode 100644 blas/ext/base/dapxsum/coverage.ndjson create mode 100644 blas/ext/base/dapxsum/dapxsum.js.html create mode 100644 blas/ext/base/dapxsum/dapxsum.native.js.html create mode 100644 blas/ext/base/dapxsum/index.html create mode 100644 blas/ext/base/dapxsum/index.js.html create mode 100644 blas/ext/base/dapxsum/main.js.html create mode 100644 blas/ext/base/dapxsum/native.js.html create mode 100644 blas/ext/base/dapxsum/ndarray.js.html create mode 100644 blas/ext/base/dapxsum/ndarray.native.js.html diff --git a/blas/ext/base/dapxsum/coverage.ndjson b/blas/ext/base/dapxsum/coverage.ndjson new file mode 100644 index 000000000..5909603c3 --- /dev/null +++ b/blas/ext/base/dapxsum/coverage.ndjson @@ -0,0 +1 @@ +[355,355,100,13,13,100,4,4,100,355,355,100,"b9f20258c101c9c53379d0704085ab0def1f1831","2024-03-26 09:45:58 -0400"] diff --git a/blas/ext/base/dapxsum/dapxsum.js.html b/blas/ext/base/dapxsum/dapxsum.js.html new file mode 100644 index 000000000..e14086043 --- /dev/null +++ b/blas/ext/base/dapxsum/dapxsum.js.html @@ -0,0 +1,244 @@ + + + + + + Code coverage report for blas/ext/base/dapxsum/lib/dapxsum.js + + + + + + + + + +
+
+

All files / blas/ext/base/dapxsum/lib dapxsum.js

+
+ +
+ 100% + Statements + 53/53 +
+ + +
+ 100% + Branches + 2/2 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 53/53 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +542x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +12x +12x +12x +2x +2x +2x +2x +2x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2020 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*    http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+ 
+'use strict';
+ 
+// MODULES //
+ 
+var dapxsumkbn = require( '@stdlib/blas/ext/base/dapxsumkbn' );
+ 
+ 
+// MAIN //
+ 
+/**
+* Adds a constant to each double-precision floating-point strided array element and computes the sum.
+*
+* @param {PositiveInteger} N - number of indexed elements
+* @param {number} alpha - constant
+* @param {Float64Array} x - input array
+* @param {integer} stride - stride length
+* @returns {number} sum
+*
+* @example
+* var Float64Array = require( '@stdlib/array/float64' );
+*
+* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
+* var N = x.length;
+*
+* var v = dapxsum( N, 5.0, x, 1 );
+* // returns 16.0
+*/
+function dapxsum( N, alpha, x, stride ) {
+	return dapxsumkbn( N, alpha, x, stride );
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = dapxsum;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/blas/ext/base/dapxsum/dapxsum.native.js.html b/blas/ext/base/dapxsum/dapxsum.native.js.html new file mode 100644 index 000000000..c275d6a58 --- /dev/null +++ b/blas/ext/base/dapxsum/dapxsum.native.js.html @@ -0,0 +1,244 @@ + + + + + + Code coverage report for blas/ext/base/dapxsum/lib/dapxsum.native.js + + + + + + + + + +
+
+

All files / blas/ext/base/dapxsum/lib dapxsum.native.js

+
+ +
+ 100% + Statements + 53/53 +
+ + +
+ 100% + Branches + 2/2 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 53/53 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +543x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +57x +57x +57x +3x +3x +3x +3x +3x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2020 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*    http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+ 
+'use strict';
+ 
+// MODULES //
+ 
+var addon = require( './../src/addon.node' );
+ 
+ 
+// MAIN //
+ 
+/**
+* Adds a constant to each double-precision floating-point strided array element and computes the sum.
+*
+* @param {PositiveInteger} N - number of indexed elements
+* @param {number} alpha - constant
+* @param {Float64Array} x - input array
+* @param {integer} stride - stride length
+* @returns {number} sum
+*
+* @example
+* var Float64Array = require( '@stdlib/array/float64' );
+*
+* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
+* var N = x.length;
+*
+* var v = dapxsum( N, 5.0, x, 1 );
+* // returns 16.0
+*/
+function dapxsum( N, alpha, x, stride ) {
+	return addon( N, alpha, x, stride );
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = dapxsum;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/blas/ext/base/dapxsum/index.html b/blas/ext/base/dapxsum/index.html new file mode 100644 index 000000000..6d9c0c897 --- /dev/null +++ b/blas/ext/base/dapxsum/index.html @@ -0,0 +1,206 @@ + + + + + + Code coverage report for blas/ext/base/dapxsum/lib + + + + + + + + + +
+
+

All files blas/ext/base/dapxsum/lib

+
+ +
+ 100% + Statements + 355/355 +
+ + +
+ 100% + Branches + 13/13 +
+ + +
+ 100% + Functions + 4/4 +
+ + +
+ 100% + Lines + 355/355 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FileStatementsBranchesFunctionsLines
dapxsum.js +
+
100%53/53100%2/2100%1/1100%53/53
dapxsum.native.js +
+
100%53/53100%2/2100%1/1100%53/53
index.js +
+
100%68/68100%3/3100%0/0100%68/68
main.js +
+
100%35/35100%1/1100%0/0100%35/35
native.js +
+
100%35/35100%1/1100%0/0100%35/35
ndarray.js +
+
100%53/53100%2/2100%1/1100%53/53
ndarray.native.js +
+
100%58/58100%2/2100%1/1100%58/58
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/blas/ext/base/dapxsum/index.js.html b/blas/ext/base/dapxsum/index.js.html new file mode 100644 index 000000000..fd51dc03d --- /dev/null +++ b/blas/ext/base/dapxsum/index.js.html @@ -0,0 +1,289 @@ + + + + + + Code coverage report for blas/ext/base/dapxsum/lib/index.js + + + + + + + + + +
+
+

All files / blas/ext/base/dapxsum/lib index.js

+
+ +
+ 100% + Statements + 68/68 +
+ + +
+ 100% + Branches + 3/3 +
+ + +
+ 100% + Functions + 0/0 +
+ + +
+ 100% + Lines + 68/68 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64 +65 +66 +67 +68 +693x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +3x +1x +3x +2x +2x +3x +3x +3x +3x +3x +3x +3x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2020 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*    http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+ 
+'use strict';
+ 
+/**
+* Add a constant to each double-precision floating-point strided array element and compute the sum.
+*
+* @module @stdlib/blas/ext/base/dapxsum
+*
+* @example
+* var Float64Array = require( '@stdlib/array/float64' );
+* var dapxsum = require( '@stdlib/blas/ext/base/dapxsum' );
+*
+* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
+*
+* var v = dapxsum( 3, 5.0, x, 1 );
+* // returns 16.0
+*
+* @example
+* var Float64Array = require( '@stdlib/array/float64' );
+* var dapxsum = require( '@stdlib/blas/ext/base/dapxsum' );
+*
+* var x = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0 ] );
+*
+* var v = dapxsum.ndarray( 4, 5.0, x, 2, 1 );
+* // returns 25.0
+*/
+ 
+// MODULES //
+ 
+var join = require( 'path' ).join;
+var tryRequire = require( '@stdlib/utils/try-require' );
+var isError = require( '@stdlib/assert/is-error' );
+var main = require( './main.js' );
+ 
+ 
+// MAIN //
+ 
+var dapxsum;
+var tmp = tryRequire( join( __dirname, './native.js' ) );
+if ( isError( tmp ) ) {
+	dapxsum = main;
+} else {
+	dapxsum = tmp;
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = dapxsum;
+ 
+// exports: { "ndarray": "dapxsum.ndarray" }
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/blas/ext/base/dapxsum/main.js.html b/blas/ext/base/dapxsum/main.js.html new file mode 100644 index 000000000..44a00cb7a --- /dev/null +++ b/blas/ext/base/dapxsum/main.js.html @@ -0,0 +1,190 @@ + + + + + + Code coverage report for blas/ext/base/dapxsum/lib/main.js + + + + + + + + + +
+
+

All files / blas/ext/base/dapxsum/lib main.js

+
+ +
+ 100% + Statements + 35/35 +
+ + +
+ 100% + Branches + 1/1 +
+ + +
+ 100% + Functions + 0/0 +
+ + +
+ 100% + Lines + 35/35 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +361x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2020 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*    http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+ 
+'use strict';
+ 
+// MODULES //
+ 
+var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
+var dapxsum = require( './dapxsum.js' );
+var ndarray = require( './ndarray.js' );
+ 
+ 
+// MAIN //
+ 
+setReadOnly( dapxsum, 'ndarray', ndarray );
+ 
+ 
+// EXPORTS //
+ 
+module.exports = dapxsum;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/blas/ext/base/dapxsum/native.js.html b/blas/ext/base/dapxsum/native.js.html new file mode 100644 index 000000000..fa0234d00 --- /dev/null +++ b/blas/ext/base/dapxsum/native.js.html @@ -0,0 +1,190 @@ + + + + + + Code coverage report for blas/ext/base/dapxsum/lib/native.js + + + + + + + + + +
+
+

All files / blas/ext/base/dapxsum/lib native.js

+
+ +
+ 100% + Statements + 35/35 +
+ + +
+ 100% + Branches + 1/1 +
+ + +
+ 100% + Functions + 0/0 +
+ + +
+ 100% + Lines + 35/35 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +361x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x +1x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2020 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*    http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+ 
+'use strict';
+ 
+// MODULES //
+ 
+var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
+var dapxsum = require( './dapxsum.native.js' );
+var ndarray = require( './ndarray.native.js' );
+ 
+ 
+// MAIN //
+ 
+setReadOnly( dapxsum, 'ndarray', ndarray );
+ 
+ 
+// EXPORTS //
+ 
+module.exports = dapxsum;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/blas/ext/base/dapxsum/ndarray.js.html b/blas/ext/base/dapxsum/ndarray.js.html new file mode 100644 index 000000000..45b92b383 --- /dev/null +++ b/blas/ext/base/dapxsum/ndarray.js.html @@ -0,0 +1,244 @@ + + + + + + Code coverage report for blas/ext/base/dapxsum/lib/ndarray.js + + + + + + + + + +
+
+

All files / blas/ext/base/dapxsum/lib ndarray.js

+
+ +
+ 100% + Statements + 53/53 +
+ + +
+ 100% + Branches + 2/2 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 53/53 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +542x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +12x +12x +12x +2x +2x +2x +2x +2x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2020 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*    http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+ 
+'use strict';
+ 
+// MODULES //
+ 
+var dapxsumkbn = require( '@stdlib/blas/ext/base/dapxsumkbn' ).ndarray;
+ 
+ 
+// MAIN //
+ 
+/**
+* Adds a constant to each double-precision floating-point strided array element and computes the sum.
+*
+* @param {PositiveInteger} N - number of indexed elements
+* @param {number} alpha - constant
+* @param {Float64Array} x - input array
+* @param {integer} stride - stride length
+* @param {NonNegativeInteger} offset - starting index
+* @returns {number} sum
+*
+* @example
+* var Float64Array = require( '@stdlib/array/float64' );
+*
+* var x = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0 ] );
+*
+* var v = dapxsum( 4, 5.0, x, 2, 1 );
+* // returns 25.0
+*/
+function dapxsum( N, alpha, x, stride, offset ) {
+	return dapxsumkbn( N, alpha, x, stride, offset );
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = dapxsum;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file diff --git a/blas/ext/base/dapxsum/ndarray.native.js.html b/blas/ext/base/dapxsum/ndarray.native.js.html new file mode 100644 index 000000000..8810d8b48 --- /dev/null +++ b/blas/ext/base/dapxsum/ndarray.native.js.html @@ -0,0 +1,259 @@ + + + + + + Code coverage report for blas/ext/base/dapxsum/lib/ndarray.native.js + + + + + + + + + +
+
+

All files / blas/ext/base/dapxsum/lib ndarray.native.js

+
+ +
+ 100% + Statements + 58/58 +
+ + +
+ 100% + Branches + 2/2 +
+ + +
+ 100% + Functions + 1/1 +
+ + +
+ 100% + Lines + 58/58 +
+ + +
+

+ Press n or j to go to the next uncovered block, b, p or k for the previous block. +

+ +
+
+

+
1 +2 +3 +4 +5 +6 +7 +8 +9 +10 +11 +12 +13 +14 +15 +16 +17 +18 +19 +20 +21 +22 +23 +24 +25 +26 +27 +28 +29 +30 +31 +32 +33 +34 +35 +36 +37 +38 +39 +40 +41 +42 +43 +44 +45 +46 +47 +48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +592x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +2x +12x +12x +12x +12x +12x +12x +2x +2x +2x +2x +2x + 
/**
+* @license Apache-2.0
+*
+* Copyright (c) 2020 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*    http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+ 
+'use strict';
+ 
+// MODULES //
+ 
+var minViewBufferIndex = require( '@stdlib/strided/base/min-view-buffer-index' );
+var offsetView = require( '@stdlib/strided/base/offset-view' );
+var addon = require( './dapxsum.native.js' );
+ 
+ 
+// MAIN //
+ 
+/**
+* Adds a constant to each double-precision floating-point strided array element and computes the sum.
+*
+* @param {PositiveInteger} N - number of indexed elements
+* @param {number} alpha - constant
+* @param {Float64Array} x - input array
+* @param {integer} stride - stride length
+* @param {NonNegativeInteger} offset - starting index
+* @returns {number} sum
+*
+* @example
+* var Float64Array = require( '@stdlib/array/float64' );
+*
+* var x = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0 ] );
+*
+* var v = dapxsum( 4, 5.0, x, 2, 1 );
+* // returns 25.0
+*/
+function dapxsum( N, alpha, x, stride, offset ) {
+	var view;
+	offset = minViewBufferIndex( N, stride, offset );
+	view = offsetView( x, offset );
+	return addon( N, alpha, view, stride );
+}
+ 
+ 
+// EXPORTS //
+ 
+module.exports = dapxsum;
+ 
+ +
+
+ + + + + + + + \ No newline at end of file