Home
Browse Files
template
<
typename
IndexType,
typename
Alpha,
typename
TA,
typename
TB,
typename
Beta,
typename
TC>
void
gemm(IndexType m,
IndexType n,
IndexType k,
const
Alpha &alpha,
bool
transA,
bool
conjA,
const
TA *A,
IndexType incRowA_,
IndexType incColA_,
bool
transB,
bool
conjB,
const
TB *B,
IndexType incRowB_,
IndexType incColB_,
const
Beta &beta,
TC *C,
IndexType incRowC,
IndexType incColC);
Defined in namespace
cxxblas
. Function
gemm
with 6 template parameters.
Home