Skip to content

Commit 605b1df

Browse files
committed
chore: minor clean-up
--- 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: passed - 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 7f1f9ca commit 605b1df

File tree

7 files changed

+7
-5
lines changed

7 files changed

+7
-5
lines changed

lib/node_modules/@stdlib/blas/base/sgemm/benchmark/benchmark_ra_cb_cc_ta_ntb.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function main() {
9999
for ( i = min; i <= max; i++ ) {
100100
len = floor( pow( pow( 10, i ), 1.0/2.0 ) );
101101
f = createBenchmark( len );
102-
bench( format( '%s:order(A)=row-major,order(B)=column-major,order(C)=column-major,trans(A)=true,trans(B)=false,ndarray:size=%d', pkg, (len*len) ), f );
102+
bench( format( '%s:ndarray:order(A)=row-major,order(B)=column-major,order(C)=column-major,trans(A)=true,trans(B)=false,size=%d', pkg, (len*len) ), f );
103103
}
104104
}
105105

lib/node_modules/@stdlib/stats/strided/distances/dminkowski/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function main() {
102102

103103
for ( i = 0; i < p.length; i++ ) {
104104
for ( j = min; j <= max; j++ ) {
105-
len = pow( 10, i );
105+
len = pow( 10, j );
106106
f = createBenchmark( len, p[ i ] );
107107
bench( format( '%s:len=%d,p=%.2f', pkg, len, p[ i ] ), f );
108108
}

lib/node_modules/@stdlib/stats/strided/distances/dminkowski/benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function main() {
107107

108108
for ( i = 0; i < p.length; i++ ) {
109109
for ( j = min; j <= max; j++ ) {
110-
len = pow( 10, i );
110+
len = pow( 10, j );
111111
f = createBenchmark( len, p[ i ] );
112112
bench( format( '%s::native:len=%d,p=%.2f', pkg, len, p[ i ] ), opts, f );
113113
}

lib/node_modules/@stdlib/stats/strided/distances/dminkowski/benchmark/benchmark.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function main() {
102102

103103
for ( i = 0; i < p.length; i++ ) {
104104
for ( j = min; j <= max; j++ ) {
105-
len = pow( 10, i );
105+
len = pow( 10, j );
106106
f = createBenchmark( len, p[ i ] );
107107
bench( format( '%s:ndarray:len=%d,p=%.2f', pkg, len, p[ i ] ), f );
108108
}

lib/node_modules/@stdlib/stats/strided/distances/dminkowski/benchmark/benchmark.ndarray.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function main() {
107107

108108
for ( i = 0; i < p.length; i++ ) {
109109
for ( j = min; j <= max; j++ ) {
110-
len = pow( 10, i );
110+
len = pow( 10, j );
111111
f = createBenchmark( len, p[ i ] );
112112
bench( format( '%s::native:ndarray:len=%d,p=%.2f', pkg, len, p[ i ] ), opts, f );
113113
}

lib/node_modules/@stdlib/stats/strided/distances/dminkowski/manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"@stdlib/math/base/special/pow",
4949
"@stdlib/napi/export",
5050
"@stdlib/napi/argv",
51+
"@stdlib/napi/argv-double",
5152
"@stdlib/napi/argv-int64",
5253
"@stdlib/napi/argv-strided-float64array",
5354
"@stdlib/napi/create-double"

lib/node_modules/@stdlib/stats/strided/distances/dminkowski/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
"mathematics",
6161
"math",
6262
"minkowski",
63+
"distance",
6364
"metric",
6465
"strided",
6566
"strided array",

0 commit comments

Comments
 (0)