gemm_bias¶
Computes a matrix-matrix product using general integer matrices with bias.
Description¶
The gemm_bias
routines compute a scalar-matrix-matrix product and add
the result to a scalar-matrix product, using general integer matrices with biases/offsets.
The operation is defined as:
where:
op(
X
) is one of op(X
) =X
, or op(X
) =X
T, or op(X
) =X
Halpha
andbeta
are scalarsA_offset
ism
xk
matrix with every element equal to the valueao
B_offset
isk
xn
matrix with every element equal to the valuebo
C_offset
ism
xn
matrix defined by theco
buffer. See Data Types for more details.A
,B
, andC
are matricesop(
A
) ism
xk
, op(B
) isk
xn
, andC
ism
xn
gemm_bias
supports the following precisions:
Ts |
Ta |
Tb |
Tc |
---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
gemm_bias (Buffer Version)¶
Syntax¶
namespace oneapi::mkl::blas::column_major {
void gemm_bias(sycl::queue &queue,
oneapi::mkl::transpose transa,
oneapi::mkl::transpose transb,
oneapi::mkl::offset offsetc,
std::int64_t m,
std::int64_t n,
std::int64_t k,
Ts alpha,
sycl::buffer<Ta,1> &a,
std::int64_t lda,
Ta ao,
sycl::buffer<Tb,1> &b,
std::int64_t ldb,
Tb bo,
Ts beta,
sycl::buffer<Tc,1> &c,
std::int64_t ldc,
sycl::buffer<Tc,1> &co)
}
namespace oneapi::mkl::blas::row_major {
void gemm_bias(sycl::queue &queue,
oneapi::mkl::transpose transa,
oneapi::mkl::transpose transb,
oneapi::mkl::offset offsetc,
std::int64_t m,
std::int64_t n,
std::int64_t k,
Ts alpha,
sycl::buffer<Ta,1> &a,
std::int64_t lda,
Ta ao,
sycl::buffer<Tb,1> &b,
std::int64_t ldb,
Tb bo,
Ts beta,
sycl::buffer<Tc,1> &c,
std::int64_t ldc,
sycl::buffer<Tc,1> &co)
}
Input Parameters¶
- queue
The queue where the routine should be executed.
- transa
Specifies op(
A
), the transposition operation applied to matrixA
. See Data Types for more details.- transb
Specifies op(
B
), the transposition operation applied to matrixB
. See Data Types for more details.- offsetc
Specifies the form of
C_offset
used in the matrix multiplication. See Data Types for more details.- m
Number of rows of matrix op(
A
) and matrixC
. Must be at least zero.- n
Number of columns of matrix op(
B
) and matrixC
. Must be at least zero.- k
Number of columns of matrix op(
A
) and rows of matrix op(B
). Must be at least zero.- alpha
Scaling factor for matrix-matrix product.
- a
Buffer holding input matrix
A
. See Matrix Storage for more details.transa
=transpose::nontrans
transa
=transpose::trans
ortrans
=transpose::conjtrans
Column major
A
ism
xk
matrix. Size of arraya
must be at leastlda
*k
A
isk
xm
matrix. Size of arraya
must be at leastlda
*m
Row major
A
ism
xk
matrix. Size of arraya
must be at leastlda
*m
A
isk
xm
matrix. Size of arraya
must be at leastlda
*k
- lda
Leading dimension of matrix
A
. Must be positive.transa
=transpose::nontrans
transa
=transpose::trans
ortrans
=transpose::conjtrans
Column major
Must be at least
m
Must be at least
k
Row major
Must be at least
k
Must be at least
m
- ao
Specifies the scalar offset value for matrix
A
.- b
Buffer holding input matrix
B
. See Matrix Storage for more details.transb
=transpose::nontrans
transb
=transpose::trans
ortrans
=transpose::conjtrans
Column major
B
isk
xn
matrix. Size of arrayb
must be at leastldb
*n
B
isn
xk
matrix. Size of arrayb
must be at leastldb
*k
Row major
B
isk
xn
matrix. Size of arrayb
must be at leastldb
*k
B
isn
xk
matrix. Size of arrayb
must be at leastldb
*n
- ldb
Leading dimension of matrix
B
. Must be positive.transb
=transpose::nontrans
transb
=transpose::trans
ortrans
=transpose::conjtrans
Column major
Must be at least
k
Must be at least
n
Row major
Must be at least
n
Must be at least
k
- bo
Specifies the scalar offset value for matrix
B
.- beta
Scaling factor for matrix
C
.- c
Buffer holding input/output matrix
C
. See Matrix Storage for more details.Column major
C
ism
xn
matrix. Size of arrayc
must be at leastldc
*n
Row major
C
ism
xn
matrix. Size of arrayc
must be at leastldc
*m
- ldc
Leading dimension of matrix
C
. Must be positive.Column major
Must be at least
m
Row major
Must be at least
n
- co
Buffer holding the offset values for matrix
C
.If
offset_type = offset::fix
, size ofco
array must be at least 1.If
offset_type = offset::col
, size ofco
array must be at leastmax(1,m)
.If
offset_type = offset::row
, size ofco
array must be at leastmax(1,n)
.See Data Types for more details.
Output Parameters¶
- c
Output buffer overwritten by
alpha
* (op(A
) -A_offset
) * (op(B
) -B_offset
) +beta
*C
+C_offset
.
Note
If beta
= 0, matrix C
does not need to be initialized before calling gemm_bias
.
gemm_bias (USM Version)¶
Syntax¶
namespace oneapi::mkl::blas::column_major {
sycl::event gemm_bias(sycl::queue &queue,
oneapi::mkl::transpose transa,
oneapi::mkl::transpose transb,
oneapi::mkl::offset offsetc,
std::int64_t m,
std::int64_t n,
std::int64_t k,
Ts alpha,
const Ta *a,
std::int64_t lda,
Ta ao,
const Tb *b,
std::int64_t ldb,
Tb bo,
Ts beta,
Tc *c,
std::int64_t ldc,
const Tc *co,
const std::vector<sycl::event> &dependencies = {})
}
namespace oneapi::mkl::blas::row_major {
sycl::event gemm_bias(sycl::queue &queue,
oneapi::mkl::transpose transa,
oneapi::mkl::transpose transb,
oneapi::mkl::offset offsetc,
std::int64_t m,
std::int64_t n,
std::int64_t k,
Ts alpha,
const Ta *a,
std::int64_t lda,
Ta ao,
const Tb *b,
std::int64_t ldb,
Tb bo,
Ts beta,
Tc *c,
std::int64_t ldc,
const Tc *co,
const std::vector<sycl::event> &dependencies = {})
}
Input Parameters¶
- queue
The queue where the routine should be executed.
- transa
Specifies op(
A
), the transposition operation applied to matrixA
. See Data Types for more details.- transb
Specifies op(
B
), the transposition operation applied to matrixB
. See Data Types for more details.- offsetc
Specifies the form of
C_offset
used in the matrix multiplication. See Data Types for more details.- m
Number of rows of matrix op(
A
) and matrixC
. Must be at least zero.- n
Number of columns of matrix op(
B
) and matrixC
. Must be at least zero.- k
Number of columns of matrix op(
A
) and rows of matrix op(B
). Must be at least zero.- alpha
Scaling factor for matrix-matrix product.
- a
Pointer to input matrix
A
. See Matrix Storage for more details.transa
=transpose::nontrans
transa
=transpose::trans
ortrans
=transpose::conjtrans
Column major
A
ism
xk
matrix. Size of arraya
must be at leastlda
*k
A
isk
xm
matrix. Size of arraya
must be at leastlda
*m
Row major
A
ism
xk
matrix. Size of arraya
must be at leastlda
*m
A
isk
xm
matrix. Size of arraya
must be at leastlda
*k
- lda
Leading dimension of matrix
A
. Must be positive.transa
=transpose::nontrans
transa
=transpose::trans
ortrans
=transpose::conjtrans
Column major
Must be at least
m
Must be at least
k
Row major
Must be at least
k
Must be at least
m
- ao
Specifies the scalar offset value for matrix
A
.- b
Pointer to input matrix
B
. See Matrix Storage for more details.transb
=transpose::nontrans
transb
=transpose::trans
ortrans
=transpose::conjtrans
Column major
B
isk
xn
matrix. Size of arrayb
must be at leastldb
*n
B
isn
xk
matrix. Size of arrayb
must be at leastldb
*k
Row major
B
isk
xn
matrix. Size of arrayb
must be at leastldb
*k
B
isn
xk
matrix. Size of arrayb
must be at leastldb
*n
- ldb
Leading dimension of matrix
B
. Must be positive.transb
=transpose::nontrans
transb
=transpose::trans
ortrans
=transpose::conjtrans
Column major
Must be at least
k
Must be at least
n
Row major
Must be at least
n
Must be at least
k
- bo
Specifies the scalar offset value for matrix
B
.- beta
Scaling factor for matrix
C
.- c
Pointer to input/output matrix
C
. See Matrix Storage for more details.Column major
C
ism
xn
matrix. Size of arrayc
must be at leastldc
*n
Row major
C
ism
xn
matrix. Size of arrayc
must be at leastldc
*m
- ldc
Leading dimension of matrix
C
. Must be positive.Column major
Must be at least
m
Row major
Must be at least
n
- co
Pointer to array holding offset values for matrix
C
.If
offset_type = offset::fix
, size ofco
array must be at least 1.If
offset_type = offset::col
, size ofco
array must be at leastmax(1,m)
.If
offset_type = offset::row
, size ofco
array must be at leastmax(1,n)
.See Data Types for more details.
- dependencies
List of events to wait for before starting computation, if any. If omitted, defaults to no dependencies.
Output Parameters¶
- c
Pointer to output matrix
C
overwritten byalpha
* (op(A
) -A_offset
) * (op(B
) -B_offset
) +beta
*C
+C_offset
.
Note
If beta
= 0, matrix C
does not need to be initialized before calling gemm_bias
.
Return Values¶
Output event to wait on to ensure computation is complete.