From e8071e9f001a2d050b2fa357d932162905206195 Mon Sep 17 00:00:00 2001 From: ShabiShett07 Date: Sun, 20 Apr 2025 13:27:19 +0530 Subject: [PATCH 1/2] feat: add jsdoc for striding in blas/base/dgemm --- 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: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- lib/node_modules/@stdlib/blas/base/dgemm/lib/ndarray.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/node_modules/@stdlib/blas/base/dgemm/lib/ndarray.js b/lib/node_modules/@stdlib/blas/base/dgemm/lib/ndarray.js index f07227dcab8e..d7d038ff8b60 100644 --- a/lib/node_modules/@stdlib/blas/base/dgemm/lib/ndarray.js +++ b/lib/node_modules/@stdlib/blas/base/dgemm/lib/ndarray.js @@ -54,6 +54,9 @@ var base = require( './base.js' ); * @throws {RangeError} third argument must be a nonnegative integer * @throws {RangeError} fourth argument must be a nonnegative integer * @throws {RangeError} fifth argument must be a nonnegative integer +* @throws {RangeError} seventeenth argument must be non-zero +* @throws {RangeError} eighteenth argument must be non-zero +* @throws {RangeError} sixth argument must be non-zero * @returns {Float64Array} `C` * * @example From bd4fe6d18594885714fef119b24ec657ed65f7f8 Mon Sep 17 00:00:00 2001 From: Shabareesh Shetty <139731143+ShabiShett07@users.noreply.github.com> Date: Sun, 20 Apr 2025 13:30:43 +0530 Subject: [PATCH 2/2] fix: update jsdoc Signed-off-by: Shabareesh Shetty <139731143+ShabiShett07@users.noreply.github.com> --- lib/node_modules/@stdlib/blas/base/dgemm/lib/ndarray.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/base/dgemm/lib/ndarray.js b/lib/node_modules/@stdlib/blas/base/dgemm/lib/ndarray.js index d7d038ff8b60..4e19a1f44a74 100644 --- a/lib/node_modules/@stdlib/blas/base/dgemm/lib/ndarray.js +++ b/lib/node_modules/@stdlib/blas/base/dgemm/lib/ndarray.js @@ -56,7 +56,6 @@ var base = require( './base.js' ); * @throws {RangeError} fifth argument must be a nonnegative integer * @throws {RangeError} seventeenth argument must be non-zero * @throws {RangeError} eighteenth argument must be non-zero -* @throws {RangeError} sixth argument must be non-zero * @returns {Float64Array} `C` * * @example