diff --git a/lib/node_modules/@stdlib/array/zero-to/README.md b/lib/node_modules/@stdlib/array/zero-to/README.md index 043cd4e36f3c..33f581c08b3a 100644 --- a/lib/node_modules/@stdlib/array/zero-to/README.md +++ b/lib/node_modules/@stdlib/array/zero-to/README.md @@ -60,6 +60,7 @@ The function recognizes the following data types: - `float64`: double-precision floating-point numbers (IEEE 754) - `float32`: single-precision floating-point numbers (IEEE 754) +- `float16`: half-precision floating-point numbers (IEEE 754) - `complex128`: double-precision complex floating-point numbers - `complex64`: single-precision complex floating-point numbers - `int32`: 32-bit two's complement signed integers diff --git a/lib/node_modules/@stdlib/array/zero-to/benchmark/benchmark.js b/lib/node_modules/@stdlib/array/zero-to/benchmark/benchmark.js index 80e28cd36c35..31fd08f39130 100644 --- a/lib/node_modules/@stdlib/array/zero-to/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/array/zero-to/benchmark/benchmark.js @@ -84,6 +84,24 @@ bench( format( '%s:dtype=float32', pkg ), function benchmark( b ) { b.end(); }); +bench( format( '%s:dtype=float16', pkg ), function benchmark( b ) { + var arr; + var i; + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + arr = zeroTo( 0, 'float16' ); + if ( arr.length !== 0 ) { + b.fail( 'should have length 0' ); + } + } + b.toc(); + if ( !isTypedArrayLike( arr ) ) { + b.fail( 'should return a typed array' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); + bench( format( '%s:dtype=complex128', pkg ), function benchmark( b ) { var arr; var i; diff --git a/lib/node_modules/@stdlib/array/zero-to/benchmark/benchmark.length.float16.js b/lib/node_modules/@stdlib/array/zero-to/benchmark/benchmark.length.float16.js new file mode 100644 index 000000000000..51c7f5c3f0f6 --- /dev/null +++ b/lib/node_modules/@stdlib/array/zero-to/benchmark/benchmark.length.float16.js @@ -0,0 +1,94 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 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 pow = require( '@stdlib/math/base/special/pow' ); +var isTypedArray = require( '@stdlib/assert/is-typed-array' ); +var format = require( '@stdlib/string/format' ); +var pkg = require( './../package.json' ).name; +var zeroTo = require( './../lib' ); + + +// FUNCTIONS // + +/** +* Creates a benchmark function. +* +* @private +* @param {PositiveInteger} len - array length +* @returns {Function} benchmark function +*/ +function createBenchmark( len ) { + return benchmark; + + /** + * Benchmark function. + * + * @private + * @param {Benchmark} b - benchmark instance + */ + function benchmark( b ) { + var arr; + var i; + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + arr = zeroTo( len, 'float16' ); + if ( arr.length !== len ) { + b.fail( 'unexpected length' ); + } + } + b.toc(); + if ( !isTypedArray( arr ) ) { + b.fail( 'should return a typed array' ); + } + 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:dtype=float16,len=%d', pkg, len ), f ); + } +} + +main(); diff --git a/lib/node_modules/@stdlib/array/zero-to/docs/repl.txt b/lib/node_modules/@stdlib/array/zero-to/docs/repl.txt index fd2cae9db6ca..ae1ecbf0b571 100644 --- a/lib/node_modules/@stdlib/array/zero-to/docs/repl.txt +++ b/lib/node_modules/@stdlib/array/zero-to/docs/repl.txt @@ -7,6 +7,7 @@ - float64: double-precision floating-point numbers (IEEE 754). - float32: single-precision floating-point numbers (IEEE 754). + - float16: half-precision floating-point numbers (IEEE 754). - complex128: double-precision complex floating-point numbers. - complex64: single-precision complex floating-point numbers. - int32: 32-bit two's complement signed integers. diff --git a/lib/node_modules/@stdlib/array/zero-to/docs/types/test.ts b/lib/node_modules/@stdlib/array/zero-to/docs/types/test.ts index c2e7ef80783c..0767a1e97eeb 100644 --- a/lib/node_modules/@stdlib/array/zero-to/docs/types/test.ts +++ b/lib/node_modules/@stdlib/array/zero-to/docs/types/test.ts @@ -26,6 +26,7 @@ import zeroTo = require( './index' ); zeroTo( 10 ); // $ExpectType Float64Array zeroTo( 10, 'float64' ); // $ExpectType Float64Array zeroTo( 10, 'float32' ); // $ExpectType Float32Array + zeroTo( 10, 'float16' ); // $ExpectType Float16Array zeroTo( 10, 'complex128' ); // $ExpectType Complex128Array zeroTo( 10, 'complex64' ); // $ExpectType Complex64Array zeroTo( 10, 'int32' ); // $ExpectType Int32Array diff --git a/lib/node_modules/@stdlib/array/zero-to/package.json b/lib/node_modules/@stdlib/array/zero-to/package.json index fc235b417ed2..6beb614325a5 100644 --- a/lib/node_modules/@stdlib/array/zero-to/package.json +++ b/lib/node_modules/@stdlib/array/zero-to/package.json @@ -63,6 +63,7 @@ "matrix", "float64array", "float32array", + "float16array", "int32array", "uint32array", "int16array", @@ -84,6 +85,9 @@ "float", "single-precision", "float32", + "half", + "half-precision", + "float16", "ieee754", "integer", "int32", diff --git a/lib/node_modules/@stdlib/array/zero-to/test/test.js b/lib/node_modules/@stdlib/array/zero-to/test/test.js index acf1857178d0..290c0edd8ba9 100644 --- a/lib/node_modules/@stdlib/array/zero-to/test/test.js +++ b/lib/node_modules/@stdlib/array/zero-to/test/test.js @@ -23,6 +23,7 @@ var tape = require( 'tape' ); var Float64Array = require( '@stdlib/array/float64' ); var Float32Array = require( '@stdlib/array/float32' ); +var Float16Array = require( '@stdlib/array/float16' ); var Int32Array = require( '@stdlib/array/int32' ); var Uint32Array = require( '@stdlib/array/uint32' ); var Int16Array = require( '@stdlib/array/int16' ); @@ -183,6 +184,20 @@ tape( 'the function returns a filled array (dtype=float32)', function test( t ) t.end(); }); +tape( 'the function returns a filled array (dtype=float16)', function test( t ) { + var expected; + var arr; + + expected = new Float16Array( [ 0.0, 1.0, 2.0, 3.0, 4.0 ] ); + + arr = zeroTo( 5, 'float16' ); + t.strictEqual( instanceOf( arr, Float16Array ), true, 'returns expected value' ); + t.strictEqual( arr.length, expected.length, 'returns expected value' ); + t.deepEqual( arr, expected, 'returns expected value' ); + + t.end(); +}); + tape( 'the function returns a filled array (dtype=complex128)', function test( t ) { var expected; var arr; @@ -342,6 +357,11 @@ tape( 'if `n` is zero, the function returns an empty array', function test( t ) t.strictEqual( instanceOf( arr, Float32Array ), true, 'returns expected value' ); t.strictEqual( arr.length, expected.length, 'returns expected value' ); + expected = new Float16Array( [] ); + arr = zeroTo( 0, 'float16' ); + t.strictEqual( instanceOf( arr, Float16Array ), true, 'returns expected value' ); + t.strictEqual( arr.length, expected.length, 'returns expected value' ); + expected = new Int32Array( [] ); arr = zeroTo( 0, 'int32' ); t.strictEqual( instanceOf( arr, Int32Array ), true, 'returns expected value' );