diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/README.md b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/README.md
new file mode 100644
index 000000000000..a95e2b6cd557
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/README.md
@@ -0,0 +1,125 @@
+
+
+# gnrm2
+
+> Compute the L2-norm of a one-dimensional ndarray.
+
+
+
+The [L2-norm][l2-norm] is defined as
+
+
+
+```math
+\|\mathbf{x}\|_2 = \sqrt{x_0^2 + x_1^2 + \ldots + x_{N-1}^2}
+```
+
+
+
+
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var gnrm2 = require( '@stdlib/blas/base/ndarray/gnrm2' );
+```
+
+#### gnrm2( arrays )
+
+Computes the [L2-norm][l2-norm] of a one-dimensional ndarray.
+
+```javascript
+var vector = require( '@stdlib/ndarray/vector/ctor' );
+
+var x = vector( [ 1.0, -2.0, 2.0 ], 'generic' );
+
+var y = gnrm2( [ x ] );
+// returns 3.0
+```
+
+The function has the following parameters:
+
+- **arrays**: array-like object containing the following ndarrays:
+
+ - a one-dimensional input ndarray.
+
+
+
+
+
+
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var discreteUniform = require( '@stdlib/random/discrete-uniform' );
+var ndarray2array = require( '@stdlib/ndarray/to-array' );
+var gnrm2 = require( '@stdlib/blas/base/ndarray/gnrm2' );
+
+var opts = {
+ 'dtype': 'generic'
+};
+
+var x = discreteUniform( [ 10 ], -500, 500, opts );
+console.log( ndarray2array( x ) );
+
+var out = gnrm2( [ x ] );
+console.log( out );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[l2-norm]: https://en.wikipedia.org/wiki/Euclidean_distance
+
+
+
+
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/benchmark/benchmark.js b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/benchmark/benchmark.js
new file mode 100644
index 000000000000..fbbca2e3bb5a
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/benchmark/benchmark.js
@@ -0,0 +1,103 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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 bench = require( '@stdlib/bench' );
+var uniform = require( '@stdlib/random/uniform' );
+var isnan = require( '@stdlib/math/base/assert/is-nan' );
+var pow = require( '@stdlib/math/base/special/pow' );
+var format = require( '@stdlib/string/format' );
+var pkg = require( './../package.json' ).name;
+var gnrm2 = require( './../lib' );
+
+
+// VARIABLES //
+
+var options = {
+ 'dtype': 'generic'
+};
+
+
+// FUNCTIONS //
+
+/**
+* Creates a benchmark function.
+*
+* @private
+* @param {PositiveInteger} len - array length
+* @returns {Function} benchmark function
+*/
+function createBenchmark( len ) {
+ var x = uniform( [ len ], -100.0, 100.0, options );
+ return benchmark;
+
+ /**
+ * Benchmark function.
+ *
+ * @private
+ * @param {Benchmark} b - benchmark instance
+ */
+ function benchmark( b ) {
+ var z;
+ var i;
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ z = gnrm2( [ x ] );
+ if ( isnan( z ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnan( z ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+ }
+}
+
+
+// MAIN //
+
+/**
+* Main execution sequence.
+*
+* @private
+*/
+function main() {
+ var len;
+ var min;
+ var max;
+ var f;
+ var i;
+
+ min = 1; // 10^min
+ max = 6; // 10^max
+
+ for ( i = min; i <= max; i++ ) {
+ len = pow( 10, i );
+ f = createBenchmark( len );
+ bench( format( '%s:len=%d', pkg, len ), f );
+ }
+}
+
+main();
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/docs/img/equation_l2_norm.svg b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/docs/img/equation_l2_norm.svg
new file mode 100644
index 000000000000..3553d294eb63
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/docs/img/equation_l2_norm.svg
@@ -0,0 +1,53 @@
+
\ No newline at end of file
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/docs/repl.txt b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/docs/repl.txt
new file mode 100644
index 000000000000..78281801b44b
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/docs/repl.txt
@@ -0,0 +1,25 @@
+
+{{alias}}( arrays )
+ Computes the L2-norm of a one-dimensional ndarray.
+
+ If provided an empty input ndarray, the function returns `0.0`.
+
+ Parameters
+ ----------
+ arrays: ArrayLikeObject
+ Array-like object containing a one-dimensional input ndarray.
+
+ Returns
+ -------
+ out: number
+ The L2-norm.
+
+ Examples
+ --------
+ > var x = {{alias:@stdlib/ndarray/vector/ctor}}( [ 1.0, -2.0, 2.0 ], 'generic' );
+ > {{alias}}( [ x ] )
+ 3.0
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/docs/types/index.d.ts
new file mode 100644
index 000000000000..8e3768d896b2
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/docs/types/index.d.ts
@@ -0,0 +1,50 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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.
+*/
+
+// TypeScript Version: 4.1
+
+///
+
+import { typedndarray } from '@stdlib/types/ndarray';
+
+/**
+* Computes the L2-norm of a one-dimensional ndarray.
+*
+* ## Notes
+*
+* - The function expects the following ndarrays:
+*
+* - a one-dimensional input ndarray.
+*
+* @param arrays - array-like object containing ndarrays
+* @returns L2-norm
+*
+* @example
+* var vector = require( '@stdlib/ndarray/vector/ctor' );
+*
+* var x = vector( [ 1.0, -2.0, 2.0 ], 'generic' );
+*
+* var y = gnrm2( [ x ] );
+* // returns 3.0
+*/
+declare function gnrm2( arrays: [ typedndarray ] ): number;
+
+
+// EXPORTS //
+
+export = gnrm2;
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/docs/types/test.ts b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/docs/types/test.ts
new file mode 100644
index 000000000000..c5f8140f5ef1
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/docs/types/test.ts
@@ -0,0 +1,57 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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.
+*/
+
+/* eslint-disable space-in-parens */
+
+import zeros = require( '@stdlib/ndarray/zeros' );
+import gnrm2 = require( './index' );
+
+
+// TESTS //
+
+// The function returns a number...
+{
+ const x = zeros( [ 10 ], {
+ 'dtype': 'generic'
+ });
+
+ gnrm2( [ x ] ); // $ExpectType number
+}
+
+// The compiler throws an error if the function is provided a first argument which is not an array of ndarrays...
+{
+ gnrm2( '10' ); // $ExpectError
+ gnrm2( 10 ); // $ExpectError
+ gnrm2( true ); // $ExpectError
+ gnrm2( false ); // $ExpectError
+ gnrm2( null ); // $ExpectError
+ gnrm2( undefined ); // $ExpectError
+ gnrm2( [] ); // $ExpectError
+ gnrm2( {} ); // $ExpectError
+ gnrm2( ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided an unsupported number of arguments...
+{
+ const x = zeros( [ 10 ], {
+ 'dtype': 'generic'
+ });
+
+ gnrm2(); // $ExpectError
+ gnrm2( [ x ], {} ); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/examples/index.js b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/examples/index.js
new file mode 100644
index 000000000000..7414aeaed2b0
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/examples/index.js
@@ -0,0 +1,33 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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';
+
+var discreteUniform = require( '@stdlib/random/discrete-uniform' );
+var ndarray2array = require( '@stdlib/ndarray/to-array' );
+var gnrm2 = require( './../lib' );
+
+var opts = {
+ 'dtype': 'generic'
+};
+
+var x = discreteUniform( [ 10 ], -500, 500, opts );
+console.log( ndarray2array( x ) );
+
+var out = gnrm2( [ x ] );
+console.log( out );
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/lib/index.js b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/lib/index.js
new file mode 100644
index 000000000000..5e050ef04bb1
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/lib/index.js
@@ -0,0 +1,43 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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';
+
+/**
+* BLAS level 1 routine to compute the L2-norm of a one-dimensional ndarray.
+*
+* @module @stdlib/blas/base/ndarray/gnrm2
+*
+* @example
+* var vector = require( '@stdlib/ndarray/vector/ctor' );
+* var gnrm2 = require( '@stdlib/blas/base/ndarray/gnrm2' );
+*
+* var x = vector( [ 1.0, -2.0, 2.0 ], 'generic' );
+*
+* var y = gnrm2( [ x ] );
+* // returns 3.0
+*/
+
+// MODULES //
+
+var main = require( './main.js' );
+
+
+// EXPORTS //
+
+module.exports = main;
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/lib/main.js b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/lib/main.js
new file mode 100644
index 000000000000..f9e0c5653c7a
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/gnrm2/lib/main.js
@@ -0,0 +1,60 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 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 numelDimension = require( '@stdlib/ndarray/base/numel-dimension' );
+var getStride = require( '@stdlib/ndarray/base/stride' );
+var getOffset = require( '@stdlib/ndarray/base/offset' );
+var getData = require( '@stdlib/ndarray/base/data-buffer' );
+var strided = require( '@stdlib/blas/base/gnrm2' ).ndarray;
+
+
+// MAIN //
+
+/**
+* Computes the L2-norm of a one-dimensional ndarray.
+*
+* ## Notes
+*
+* - The function expects the following ndarrays:
+*
+* - a one-dimensional input ndarray.
+*
+* @param {ArrayLikeObject