Skip to content

Commit 070faa3

Browse files
committed
Auto-generated commit
1 parent d095588 commit 070faa3

File tree

7 files changed

+7
-6
lines changed

7 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`9000841`](https://github.com/stdlib-js/stdlib/commit/9000841dbe1534a4b1984975068101a641383840) - **style:** fix decimals _(by Athan Reines)_
2526
- [`f78ae7b`](https://github.com/stdlib-js/stdlib/commit/f78ae7b4ed12879282a4e9c20e6c7b5baf2d6e39) - **feat:** add C `ndarray` API and refactor `blas/ext/base/dssum` [(#4262)](https://github.com/stdlib-js/stdlib/pull/4262) _(by Muhammad Haris)_
2627
- [`62364f6`](https://github.com/stdlib-js/stdlib/commit/62364f62ea823a3b52c2ad25660ecd80c71f8f36) - **style:** fix C comment alignment _(by Philipp Burckhardt)_
2728
- [`272ae7a`](https://github.com/stdlib-js/stdlib/commit/272ae7ac5c576c68cfab1b6e304c86407faa20cd) - **docs:** remove comment _(by Athan Reines)_

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ var v = dssum.ndarray( 4, x, 2, 1 );
166166
var discreteUniform = require( '@stdlib/random-array-discrete-uniform' );
167167
var dssum = require( '@stdlib/blas-ext-base-dssum' );
168168

169-
var x = discreteUniform( 10.0, -100, 100, {
169+
var x = discreteUniform( 10, -100, 100, {
170170
'dtype': 'float32'
171171
});
172172
console.log( x );

benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ var options = {
4545
* @returns {Function} benchmark function
4646
*/
4747
function createBenchmark( len ) {
48-
var x = uniform( len, -100, 100, options );
48+
var x = uniform( len, -100.0, 100.0, options );
4949
return benchmark;
5050

5151
function benchmark( b ) {

benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var options = {
5050
* @returns {Function} benchmark function
5151
*/
5252
function createBenchmark( len ) {
53-
var x = uniform( len, -100, 100, options );
53+
var x = uniform( len, -100.0, 100.0, options );
5454
return benchmark;
5555

5656
function benchmark( b ) {

benchmark/benchmark.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ var options = {
4545
* @returns {Function} benchmark function
4646
*/
4747
function createBenchmark( len ) {
48-
var x = uniform( len, -100, 100, options );
48+
var x = uniform( len, -100.0, 100.0, options );
4949
return benchmark;
5050

5151
function benchmark( b ) {

benchmark/benchmark.ndarray.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var options = {
5050
* @returns {Function} benchmark function
5151
*/
5252
function createBenchmark( len ) {
53-
var x = uniform( len, -100, 100, options );
53+
var x = uniform( len, -100.0, 100.0, options );
5454
return benchmark;
5555

5656
function benchmark( b ) {

examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
var discreteUniform = require( '@stdlib/random-array-discrete-uniform' );
2222
var dssum = require( './../lib' );
2323

24-
var x = discreteUniform( 10.0, -100, 100, {
24+
var x = discreteUniform( 10, -100, 100, {
2525
'dtype': 'float32'
2626
});
2727
console.log( x );

0 commit comments

Comments
 (0)