Skip to content

Commit

Permalink
test: fix test fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Aug 3, 2024
1 parent 8018ce3 commit 0be3828
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"order": "column-major",
"trans": "transpose",
"M": 2,
"N": 4,
"M": 4,
"N": 2,
"alpha": 0.5,
"beta": 0.5,
"lda": 2,
"lda": 4,
"A": [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ],
"x": [ 1.0, 2.0, 3.0, 4.0 ],
"y": [ 1.0, 2.0 ],
"strideA1": 1,
"strideA2": 2,
"strideA2": 4,
"offsetA": 0,
"strideX": 1,
"offsetX": 0,
"strideY": 1,
"offsetY": 0,
"y_out": [ 3.0, 6.5 ]
"y_out": [ 15.5, 36.0 ]
}

1 comment on commit 0be3828

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
blas/base/dgemv $\color{green}459/459$
$\color{green}+100.00\%$
$\color{green}63/63$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}459/459$
$\color{green}+100.00\%$
blas/base/sgemv $\color{green}460/460$
$\color{green}+100.00\%$
$\color{green}63/63$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}460/460$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.