Difference between revisions of "Function:MatMul"
From CUVI Wiki
(Created page with "__NOTOC__ ===Function=== {| |style="font-size:150%;"| <syntaxhighlight lang="cpp"> CuviStatus matMul(const CuviImage& A, const CuviImage& B, ...") |
|||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
Performs matrix multiplication | |||
===Function=== | ===Function=== | ||
Revision as of 07:24, 13 June 2014
Performs matrix multiplication
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| A | CuviImage& | First Input Image |
| B | CuviImage& | Second Input Image |
| C | CuviImage& | Resultant Image |
| stream | CuviStream& | GPU stream ID for execution |
Image Type Support
| Input 1 | Input 2 | Output |
|---|---|---|
| 32f single channel | 32f single channel | 32f single channel |
Example
|