Mali OpenCL SDK v1.1.0
 All Classes Files Functions Variables Macros Pages
sgemm.cl File Reference

Go to the source code of this file.

Functions

__kernel void sgemm (__global float *restrict matrixA, __global float *restrict const matrixB, __global float *restrict matrixC, const uint matrixOrder, const float alpha, const float beta)
 SGEMM kernel function.
 

Function Documentation

__kernel void sgemm ( __global float *restrict  matrixA,
__global float *restrict const  matrixB,
__global float *restrict  matrixC,
const uint  matrixOrder,
const float  alpha,
const float  beta 
)

SGEMM kernel function.

Parameters
[in]matrixAFirst input matrix.
[in]matrixBSecond input matrix.
[in,out]matrixCThird input matrix. The output is stored in this matrix.
[in]matrixOrderMatrix order (number of rows and columns). Matrix has to be symmetric.
[in]alphaScaling parameter.
[in]betaScaling paratemer.

Definition at line 20 of file sgemm.cl.