SetTensorB
Applicability
Product |
Supported |
|---|---|
√ |
|
√ |
|
√ |
|
√ |
|
x |
|
x |
Function
Sets the right matrix B for matrix multiplication.
Prototype
1 | __aicore__ inline void SetTensorB(const GlobalTensor<SrcBT>& gm, bool isTransposeB = false) |
1 | __aicore__ inline void SetTensorB(const LocalTensor<SrcBT>& rightMatrix, bool isTransposeB = false) |
1 | __aicore__ inline void SetTensorB(SrcBT bScalar) |
Parameters
Parameter |
Description |
|---|---|
SrcBT |
Data type of the operand. |
Parameter |
Input/Output |
Description |
|---|---|---|
gm |
Input |
Matrix B. The type is GlobalTensor. SrcBT indicates the data type of matrix B. For the For the For the For the |
rightMatrix |
Input |
Matrix B. The type is LocalTensor, and TPosition can be TSCM or VECOUT. SrcBT indicates the data type of matrix B. For the For the For the For the If the initial address in the TSCM is set, the matrix can be fully loaded by default. In this case, the Iterate API does not need to transfer data from GM to A1/B1. |
bScalar |
Input |
Value set in matrix B. Scalar data can be passed. The passed scalar data is expanded into a tensor with the shape of [1, K] to participate in matrix multiplication. The tensor values are all scalar values. For example, a developer can implement a reduce sum operation on matrix B in the K direction by setting bScalar to 1. SrcBT indicates the data type of matrix B. For the For the This parameter is not supported by the This parameter is not supported by the |
isTransposeB |
Input |
Whether matrix B should be transposed. Notes:
|
Returns
None
Restrictions
Ensure that the size of the input TensorB address space is greater than or equal to singleK x singleN.
Example
1 2 3 4 5 | REGIST_MATMUL_OBJ(&pipe, GetSysWorkSpacePtr(), mm, &tiling); mm.SetTensorA(gm_a); mm.SetTensorB(gm_b); // Set the right matrix B. mm.SetBias(gm_bias); mm.IterateAll(gm_c); |