Difference between revisions of "Function:MatMulTrans"
From CUVI Wiki
| Line 2: | Line 2: | ||
Performs matrix multiplication with its transpose. | Performs matrix multiplication with its transpose. | ||
===Function=== | ====Function==== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus matMulTrans(const CuviImage& A, | CuviStatus matMulTrans(const CuviImage& A, | ||
| Line 14: | Line 14: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
===Parameters=== | ===Parameters=== | ||
Revision as of 12:17, 18 October 2022
Performs matrix multiplication with its transpose.
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| A | CuviImage& | Input Image |
| B | CuviImage& | Resultant Image |
| stream | CuviStream& | GPU stream ID for execution |
Image Type Support
| Input | Output |
|---|---|
| 32f single channel | 32f single channel |
Example
|