-
-
Notifications
You must be signed in to change notification settings - Fork 475
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: #2901 Co-authored-by: Athan Reines <[email protected]> Reviewed-by: Athan Reines <[email protected]>
- Loading branch information
1 parent
d2003ce
commit fadff3a
Showing
33 changed files
with
3,771 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,281 @@ | ||
<!-- | ||
@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. | ||
--> | ||
|
||
# cfill | ||
|
||
> Fill a single-precision complex floating-point strided array with a specified scalar constant. | ||
<section class="usage"> | ||
|
||
## Usage | ||
|
||
```javascript | ||
var cfill = require( '@stdlib/blas/ext/base/cfill' ); | ||
``` | ||
|
||
#### cfill( N, alpha, x, stride ) | ||
|
||
Fills a single-precision complex floating-point strided array `x` with a specified scalar constant `alpha`. | ||
|
||
```javascript | ||
var Float32Array = require( '@stdlib/array/float32' ); | ||
var Complex64Array = require( '@stdlib/array/complex64' ); | ||
var Complex64 = require( '@stdlib/complex/float32/ctor' ); | ||
var realf = require( '@stdlib/complex/float32/real' ); | ||
var imagf = require( '@stdlib/complex/float32/imag' ); | ||
|
||
var arr = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] ); | ||
var x = new Complex64Array( arr ); | ||
|
||
var alpha = new Complex64( 10.0, 10.0 ); | ||
|
||
cfill( x.length, alpha, x, 1 ); | ||
|
||
var y = x.get( 0 ); | ||
// returns <Complex64> | ||
|
||
var re = realf( y ); | ||
// returns 10.0 | ||
|
||
var im = imagf( y ); | ||
// returns 10.0 | ||
``` | ||
|
||
The function has the following parameters: | ||
|
||
- **N**: number of indexed elements. | ||
- **alpha**: scalar constant. | ||
- **x**: input [`Complex64Array`][@stdlib/array/complex64]. | ||
- **stride**: index increment. | ||
|
||
The `N` and stride parameters determine which elements in the strided array are accessed at runtime. For example, to fill every other element | ||
|
||
```javascript | ||
var Float32Array = require( '@stdlib/array/float32' ); | ||
var Complex64Array = require( '@stdlib/array/complex64' ); | ||
var Complex64 = require( '@stdlib/complex/float32/ctor' ); | ||
var realf = require( '@stdlib/complex/float32/real' ); | ||
var imagf = require( '@stdlib/complex/float32/imag' ); | ||
|
||
var arr = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] ); | ||
var x = new Complex64Array( arr ); | ||
|
||
var alpha = new Complex64( 10.0, 10.0 ); | ||
|
||
cfill( 2, alpha, x, 2 ); | ||
|
||
var y = x.get( 0 ); | ||
// returns <Complex64> | ||
|
||
var re = realf( y ); | ||
// returns 10.0 | ||
|
||
var im = imagf( y ); | ||
// returns 10.0 | ||
|
||
y = x.get( 1 ); | ||
// returns <Complex64> | ||
|
||
re = realf( y ); | ||
// returns 3.0 | ||
|
||
im = imagf( y ); | ||
// returns 4.0 | ||
``` | ||
|
||
Note that indexing is relative to the first index. To introduce an offset, use [`typed array`][mdn-typed-array] views. | ||
|
||
```javascript | ||
var Float32Array = require( '@stdlib/array/float32' ); | ||
var Complex64Array = require( '@stdlib/array/complex64' ); | ||
var Complex64 = require( '@stdlib/complex/float32/ctor' ); | ||
var realf = require( '@stdlib/complex/float32/real' ); | ||
var imagf = require( '@stdlib/complex/float32/imag' ); | ||
|
||
// Create the underlying floating-point array | ||
var arr = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] ); | ||
|
||
// Initial array: | ||
var x0 = new Complex64Array( arr ); | ||
|
||
// Create an offset view: | ||
var x1 = new Complex64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 ); // start at 2nd element | ||
|
||
// Define a scalar constant: | ||
var alpha = new Complex64( 10.0, 10.0 ); | ||
|
||
// Fill every other element: | ||
cfill( 2, alpha, x1, 2 ); | ||
|
||
var y = x0.get( 0 ); | ||
// returns <Complex64> | ||
|
||
var re = realf( y ); | ||
// returns 1.0 | ||
|
||
var im = imagf( y ); | ||
// returns 2.0 | ||
|
||
y = x0.get( 1 ); | ||
// returns <Complex64> | ||
|
||
re = realf( y ); | ||
// returns 10.0 | ||
|
||
im = imagf( y ); | ||
// returns 10.0 | ||
``` | ||
|
||
#### cfill.ndarray( N, alpha, x, stride, offset ) | ||
|
||
Fills a single-precision complex floating-point strided array `x` with a specified scalar constant `alpha` using alternative indexing semantics. | ||
|
||
```javascript | ||
var Float32Array = require( '@stdlib/array/float32' ); | ||
var Complex64Array = require( '@stdlib/array/complex64' ); | ||
var Complex64 = require( '@stdlib/complex/float32/ctor' ); | ||
var realf = require( '@stdlib/complex/float32/real' ); | ||
var imagf = require( '@stdlib/complex/float32/imag' ); | ||
|
||
var arr = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] ); | ||
var x = new Complex64Array( arr ); | ||
|
||
var alpha = new Complex64( 10.0, 10.0 ); | ||
|
||
cfill.ndarray( x.length, alpha, x, 1, 0 ); | ||
|
||
var y = x.get( 0 ); | ||
// returns <Complex64> | ||
|
||
var re = realf( y ); | ||
// returns 10.0 | ||
|
||
var im = imagf( y ); | ||
// returns 10.0 | ||
``` | ||
|
||
The function has the following additional parameters: | ||
|
||
- **offset**: starting index. | ||
|
||
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, the offset parameter supports indexing semantics based on a starting index. For example, to access only the last two elements of the strided array | ||
|
||
```javascript | ||
var Float32Array = require( '@stdlib/array/float32' ); | ||
var Complex64Array = require( '@stdlib/array/complex64' ); | ||
var Complex64 = require( '@stdlib/complex/float32/ctor' ); | ||
var realf = require( '@stdlib/complex/float32/real' ); | ||
var imagf = require( '@stdlib/complex/float32/imag' ); | ||
|
||
var arr = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] ); | ||
var x = new Complex64Array( arr ); | ||
|
||
var alpha = new Complex64( 10.0, 10.0 ); | ||
|
||
cfill.ndarray( 2, alpha, x, 1, x.length-2 ); | ||
|
||
var y = x.get( 0 ); | ||
// returns <Complex64> | ||
|
||
var re = realf( y ); | ||
// returns 1.0 | ||
|
||
var im = imagf( y ); | ||
// returns 2.0 | ||
|
||
y = x.get( 1 ); | ||
// returns <Complex64> | ||
|
||
re = realf( y ); | ||
// returns 10.0 | ||
|
||
im = imagf( y ); | ||
// returns 10.0 | ||
|
||
y = x.get( 2 ); | ||
// returns <Complex64> | ||
|
||
re = realf( y ); | ||
// returns 10.0 | ||
|
||
im = imagf( y ); | ||
// returns 10.0 | ||
``` | ||
|
||
</section> | ||
|
||
<!-- /.usage --> | ||
|
||
<section class="notes"> | ||
|
||
## Notes | ||
|
||
- If `N <= 0`, both functions return the strided array unchanged. | ||
|
||
</section> | ||
|
||
<!-- /.notes --> | ||
|
||
<section class="examples"> | ||
|
||
## Examples | ||
|
||
<!-- eslint no-undef: "error" --> | ||
|
||
```javascript | ||
var discreteUniform = require( '@stdlib/random/base/discrete-uniform' ); | ||
var filledarrayBy = require( '@stdlib/array/filled-by' ); | ||
var Complex64 = require( '@stdlib/complex/float32/ctor' ); | ||
var cfill = require( '@stdlib/blas/ext/base/cfill' ); | ||
|
||
function rand() { | ||
return new Complex64( discreteUniform( 0, 10 ), discreteUniform( -5, 5 ) ); | ||
} | ||
|
||
var x = filledarrayBy( 10, 'complex64', rand ); | ||
var alpha = new Complex64( 10.0, 10.0 ); | ||
|
||
cfill( x.length, alpha, x, 1 ); | ||
console.log( x.get( 0 ).toString() ); | ||
``` | ||
|
||
</section> | ||
|
||
<!-- /.examples --> | ||
|
||
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. --> | ||
|
||
<section class="related"> | ||
|
||
</section> | ||
|
||
<!-- /.related --> | ||
|
||
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> | ||
|
||
<section class="links"> | ||
|
||
[@stdlib/array/complex64]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/complex64 | ||
|
||
[mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray | ||
|
||
</section> | ||
|
||
<!-- /.links --> |
106 changes: 106 additions & 0 deletions
106
lib/node_modules/@stdlib/blas/ext/base/cfill/benchmark/benchmark.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
/** | ||
* @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 uniform = require( '@stdlib/random/array/uniform' ); | ||
var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); | ||
var pow = require( '@stdlib/math/base/special/pow' ); | ||
var Complex64Array = require( '@stdlib/array/complex64' ); | ||
var Complex64 = require( '@stdlib/complex/float32/ctor' ); | ||
var pkg = require( './../package.json' ).name; | ||
var cfill = require( './../lib/cfill.js' ); | ||
|
||
|
||
// VARIABLES // | ||
|
||
var options = { | ||
'dtype': 'float32' | ||
}; | ||
|
||
|
||
// FUNCTIONS // | ||
|
||
/** | ||
* Create a benchmark function. | ||
* | ||
* @private | ||
* @param {PositiveInteger} len - array length | ||
* @returns {Function} benchmark function | ||
*/ | ||
function createBenchmark( len ) { | ||
var xbuf; | ||
var z; | ||
var x; | ||
|
||
xbuf = uniform( len*2, -100.0, 100.0, options ); | ||
x = new Complex64Array( xbuf.buffer ); | ||
|
||
z = new Complex64( 1.0, 0.0 ); | ||
|
||
return benchmark; | ||
|
||
/** | ||
* Benchmark function. | ||
* | ||
* @private | ||
* @param {Benchmark} b - benchmark instance | ||
*/ | ||
function benchmark( b ) { | ||
var i; | ||
|
||
b.tic(); | ||
for ( i = 0; i < b.iterations; i++ ) { | ||
cfill( x.length, z, x, 1 ); | ||
if ( isnanf( xbuf[ i%(len*2) ] ) ) { | ||
b.fail( 'should not return NaN' ); | ||
} | ||
} | ||
b.toc(); | ||
if ( isnanf( xbuf[ i%(len*2) ] ) ) { | ||
b.fail( 'should not return NaN' ); | ||
} | ||
b.pass( 'benchmark finished' ); | ||
b.end(); | ||
} | ||
} | ||
|
||
|
||
// MAIN // | ||
|
||
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( pkg+':len='+len, f ); | ||
} | ||
} | ||
|
||
main(); |
Oops, something went wrong.
fadff3a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Coverage Report
The above coverage report was generated for the changes in this push.