Skip to content

feat: add blas/base/dtrsm #7359

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 13 commits into
base: develop
Choose a base branch
from
Prev Previous commit
Next Next commit
chore: add implementation
---
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: 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
---
  • Loading branch information
ShabiShett07 committed Jun 15, 2025
commit c238fd568b5df0d247212ff44d4cd6fe11ee5ff0
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@
[ 7.0, 8.0, 9.0 ]
],
"ldb": 3,
"B_out": [ 1.0, 2.0, -6.0, 2.0, 1.0, -3.0, 0.0, 0.0 ]
"B_out": [ 1.0, 2.0, -6.0, 2.0, 1.0, -3.0, 3.0, 0.0, 0.0 ]
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"order": "column-major",
"side": "left",
"side": "right",
"uplo": "lower",
"transA": "no-transpose",
"diag": "non-unit",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"order": "column-major",
"side": "left",
"side": "right",
"uplo": "lower",
"transA": "no-transpose",
"diag": "non-unit",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"order": "column-major",
"side": "left",
"side": "right",
"uplo": "lower",
"transA": "transpose",
"diag": "non-unit",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"order": "column-major",
"side": "left",
"side": "right",
"uplo": "lower",
"transA": "transpose",
"diag": "unit",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"side": "left",
"side": "right",
"uplo": "lower",
"transA": "no-transpose",
"diag": "non-unit",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"side": "left",
"side": "right",
"uplo": "lower",
"transA": "no-transpose",
"diag": "non-unit",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"side": "left",
"side": "right",
"uplo": "lower",
"transA": "transpose",
"diag": "non-unit",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"side": "left",
"side": "right",
"uplo": "lower",
"transA": "transpose",
"diag": "unit",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"side": "left",
"uplo": "upper",
"transA": "no-transpose",
"diag": "non-unit",
"M": 3,
"N": 3,
"alpha": 1.0,
"A": [ 1.0, 1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0 ],
"A_mat": [
[ 1.0, 1.0, 1.0 ],
[ 0.0, 1.0, 1.0 ],
[ 0.0, 0.0, 1.0 ]
],
"strideA1": 3,
"strideA2": 1,
"offsetA": 0,
"B": [ 1.0, 1.0, 1.0, 1.0, 2.0, 1.0, 1.0, 1.0, 3.0 ],
"B_mat": [
[ 1.0, 1.0, 1.0 ],
[ 1.0, 2.0, 1.0 ],
[ 1.0, 1.0, 3.0 ]
],
"strideB1": 3,
"strideB2": 1,
"offsetB": 0,
"B_out": [ 0.0, -1.0, 0.0, 0.0, 1.0, -2.0, 1.0, 1.0, 3.0 ]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"side": "left",
"uplo": "upper",
"transA": "no-transpose",
"diag": "unit",
"M": 3,
"N": 3,
"alpha": 1.0,
"A": [ 1.0, 1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0 ],
"A_mat": [
[ 1.0, 1.0, 1.0 ],
[ 0.0, 1.0, 1.0 ],
[ 0.0, 0.0, 1.0 ]
],
"strideA1": 3,
"strideA2": 1,
"offsetA": 0,
"B": [ 1.0, 1.0, 1.0, 1.0, 2.0, 1.0, 1.0, 1.0, 3.0 ],
"B_mat": [
[ 1.0, 1.0, 1.0 ],
[ 1.0, 2.0, 1.0 ],
[ 1.0, 1.0, 3.0 ]
],
"strideB1": 3,
"strideB2": 1,
"offsetB": 0,
"B_out": [ 0.0, -1.0, 0.0, 0.0, 1.0, -2.0, 1.0, 1.0, 3.0 ]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"side": "left",
"uplo": "upper",
"transA": "transpose",
"diag": "non-unit",
"M": 3,
"N": 3,
"alpha": 1.0,
"A": [ 1.0, 1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0 ],
"A_mat": [
[ 1.0, 1.0, 1.0 ],
[ 0.0, 1.0, 1.0 ],
[ 0.0, 0.0, 1.0 ]
],
"strideA1": 3,
"strideA2": 1,
"offsetA": 0,
"B": [ 1.0, 1.0, 1.0, 1.0, 2.0, 1.0, 1.0, 1.0, 3.0 ],
"B_mat": [
[ 1.0, 1.0, 1.0 ],
[ 1.0, 2.0, 1.0 ],
[ 1.0, 1.0, 3.0 ]
],
"strideB1": 3,
"strideB2": 1,
"offsetB": 0,
"B_out": [ 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, -1.0, 2.0 ]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"side": "left",
"uplo": "upper",
"transA": "transpose",
"diag": "unit",
"M": 3,
"N": 3,
"alpha": 1.0,
"A": [ 1.0, 1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0 ],
"A_mat": [
[ 1.0, 1.0, 1.0 ],
[ 0.0, 1.0, 1.0 ],
[ 0.0, 0.0, 1.0 ]
],
"strideA1": 3,
"strideA2": 1,
"offsetA": 0,
"B": [ 1.0, 1.0, 1.0, 1.0, 2.0, 1.0, 1.0, 1.0, 3.0 ],
"B_mat": [
[ 1.0, 1.0, 1.0 ],
[ 1.0, 2.0, 1.0 ],
[ 1.0, 1.0, 3.0 ]
],
"strideB1": 3,
"strideB2": 1,
"offsetB": 0,
"B_out": [ 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, -1.0, 2.0 ]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"side": "right",
"uplo": "lower",
"transA": "no-transpose",
"diag": "non-unit",
"M": 3,
"N": 3,
"alpha": 1.0,
"A": [ 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0, 1.0 ],
"A_mat": [
[ 1.0, 0.0, 0.0 ],
[ 1.0, 1.0, 0.0 ],
[ 1.0, 1.0, 1.0 ]
],
"strideA1": 3,
"strideA2": 1,
"offsetA": 0,
"B": [ 1.0, 1.0, 1.0, 1.0, 2.0, 1.0, 1.0, 1.0, 3.0 ],
"B_mat": [
[ 1.0, 1.0, 1.0 ],
[ 1.0, 2.0, 1.0 ],
[ 1.0, 1.0, 3.0 ]
],
"strideB1": 3,
"strideB2": 1,
"offsetB": 0,
"B_out": [ 0.0, 0.0, 1.0, -1.0, 1.0, 1.0, 0.0, -2.0, 3.0 ]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"side": "right",
"uplo": "lower",
"transA": "no-transpose",
"diag": "non-unit",
"M": 3,
"N": 3,
"alpha": 1.0,
"A": [ 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0, 1.0 ],
"A_mat": [
[ 1.0, 0.0, 0.0 ],
[ 1.0, 1.0, 0.0 ],
[ 1.0, 1.0, 1.0 ]
],
"strideA1": 3,
"strideA2": 1,
"offsetA": 0,
"B": [ 1.0, 1.0, 1.0, 1.0, 2.0, 1.0, 1.0, 1.0, 3.0 ],
"B_mat": [
[ 1.0, 1.0, 1.0 ],
[ 1.0, 2.0, 1.0 ],
[ 1.0, 1.0, 3.0 ]
],
"strideB1": 3,
"strideB2": 1,
"offsetB": 0,
"B_out": [ 0.0, 0.0, 1.0, -1.0, 1.0, 1.0, 0.0, -2.0, 3.0 ]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"side": "right",
"uplo": "lower",
"transA": "transpose",
"diag": "non-unit",
"M": 3,
"N": 3,
"alpha": 1.0,
"A": [ 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0, 1.0 ],
"A_mat": [
[ 1.0, 0.0, 0.0 ],
[ 1.0, 1.0, 0.0 ],
[ 1.0, 1.0, 1.0 ]
],
"strideA1": 3,
"strideA2": 1,
"offsetA": 0,
"B": [ 1.0, 1.0, 1.0, 1.0, 2.0, 1.0, 1.0, 1.0, 3.0 ],
"B_mat": [
[ 1.0, 1.0, 1.0 ],
[ 1.0, 2.0, 1.0 ],
[ 1.0, 1.0, 3.0 ]
],
"strideB1": 3,
"strideB2": 1,
"offsetB": 0,
"B_out": [ 1.0, 0.0, 0.0, 1.0, 1.0, -1.0, 1.0, 0.0, 2.0 ]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"side": "right",
"uplo": "lower",
"transA": "transpose",
"diag": "unit",
"M": 3,
"N": 3,
"alpha": 1.0,
"A": [ 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0, 1.0 ],
"A_mat": [
[ 1.0, 0.0, 0.0 ],
[ 1.0, 1.0, 0.0 ],
[ 1.0, 1.0, 1.0 ]
],
"strideA1": 3,
"strideA2": 1,
"offsetA": 0,
"B": [ 1.0, 1.0, 1.0, 1.0, 2.0, 1.0, 1.0, 1.0, 3.0 ],
"B_mat": [
[ 1.0, 1.0, 1.0 ],
[ 1.0, 2.0, 1.0 ],
[ 1.0, 1.0, 3.0 ]
],
"strideB1": 3,
"strideB2": 1,
"offsetB": 0,
"B_out": [ 1.0, 0.0, 0.0, 1.0, 1.0, -1.0, 1.0, 0.0, 2.0 ]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"side": "right",
"uplo": "upper",
"transA": "no-transpose",
"diag": "non-unit",
"M": 3,
"N": 3,
"alpha": 1.0,
"A": [ 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0 ],
"A_mat": [
[ 1.0, 1.0, 1.0 ],
[ 0.0, 1.0, 1.0 ],
[ 0.0, 0.0, 1.0 ]
],
"strideA1": 3,
"strideA2": 1,
"offsetA": 0,
"B": [ 1.0, 1.0, 1.0, 1.0, 2.0, 1.0, 1.0, 1.0, 3.0 ],
"B_mat": [
[ 1.0, 1.0, 1.0 ],
[ 1.0, 2.0, 1.0 ],
[ 1.0, 1.0, 3.0 ]
],
"strideB1": 3,
"strideB2": 1,
"offsetB": 0,
"B_out": [ 1.0, 0.0, 0.0, 1.0, 1.0, -1.0, 1.0, 0.0, 2.0 ]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"side": "right",
"uplo": "upper",
"transA": "no-transpose",
"diag": "non-unit",
"M": 3,
"N": 3,
"alpha": 1.0,
"A": [ 1.0, 1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0 ],
"A_mat": [
[ 1.0, 1.0, 1.0 ],
[ 0.0, 1.0, 1.0 ],
[ 0.0, 0.0, 1.0 ]
],
"strideA1": 3,
"strideA2": 1,
"offsetA": 0,
"B": [ 1.0, 1.0, 1.0, 1.0, 2.0, 1.0, 1.0, 1.0, 3.0 ],
"B_mat": [
[ 1.0, 1.0, 1.0 ],
[ 1.0, 2.0, 1.0 ],
[ 1.0, 1.0, 3.0 ]
],
"strideB1": 3,
"strideB2": 1,
"offsetB": 0,
"B_out": [ 1.0, 0.0, 0.0, 1.0, 1.0, -1.0, 1.0, 0.0, 2.0 ]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"side": "right",
"uplo": "upper",
"transA": "transpose",
"diag": "non-unit",
"M": 3,
"N": 3,
"alpha": 1.0,
"A": [ 1.0, 1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0 ],
"A_mat": [
[ 1.0, 1.0, 1.0 ],
[ 0.0, 1.0, 1.0 ],
[ 0.0, 0.0, 1.0 ]
],
"strideA1": 3,
"strideA2": 1,
"offsetA": 0,
"B": [ 1.0, 1.0, 1.0, 1.0, 2.0, 1.0, 1.0, 1.0, 3.0 ],
"B_mat": [
[ 1.0, 1.0, 1.0 ],
[ 1.0, 2.0, 1.0 ],
[ 1.0, 1.0, 3.0 ]
],
"strideB1": 3,
"strideB2": 1,
"offsetB": 0,
"B_out": [ 0.0, 0.0, 1.0, -1.0, 1.0, 1.0, 0.0, -2.0, 3.0 ]
}
Loading
Loading