Skip to content

Commit 6e336fb

Browse files
committed
fix: fix the benchmark issues
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 5310c6a commit 6e336fb

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/node_modules/@stdlib/stats/base/dists/arcsine/entropy/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ bench( pkg, function benchmark( b ) {
4040
'dtype': 'float64'
4141
};
4242
min = uniform( 100, 0.0, 20.0, opts);
43-
max = uniform( 100, 0.0, 20.0, opts);
43+
max = uniform( 100, 20.0, 40.0, opts);
4444

4545
b.tic();
4646
for ( i = 0; i < b.iterations; i++ ) {

lib/node_modules/@stdlib/stats/base/dists/arcsine/entropy/benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ bench( format( '%s::native', pkg ), opts, function benchmark( b ) {
5050
'dtype': 'float64'
5151
};
5252
min = uniform( 100, 0.0, 20.0, opts);
53-
max = uniform( 100, 0.0, 20.0, opts);
53+
max = uniform( 100, 20.0, 40.0, opts);
5454

5555
b.tic();
5656
for ( i = 0; i < b.iterations; i++ ) {

lib/node_modules/@stdlib/stats/base/dists/arcsine/kurtosis/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ bench( pkg, function benchmark( b ) {
4040
'dtype': 'float64'
4141
};
4242
min = uniform( 100, 0.0, 20.0, opts);
43-
max = uniform( 100, 0.0, 20.0, opts);
43+
max = uniform( 100, 20.0, 40.0, opts);
4444

4545
b.tic();
4646
for ( i = 0; i < b.iterations; i++ ) {

lib/node_modules/@stdlib/stats/base/dists/arcsine/kurtosis/benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ bench( format( '%s::native', pkg ), opts, function benchmark( b ) {
5050
'dtype': 'float64'
5151
};
5252
min = uniform( 100, 0.0, 20.0, opts);
53-
max = uniform( 100, 0.0, 20.0, opts);
53+
max = uniform( 100, 20.0, 40.0, opts);
5454

5555
b.tic();
5656
for ( i = 0; i < b.iterations; i++ ) {

0 commit comments

Comments
 (0)