Duplicate
Applicability
|
Product |
Supported |
|---|---|
|
Atlas 350 Accelerator Card |
√ |
|
|
√ |
|
|
√ |
|
|
√ |
|
|
√ |
|
|
x |
|
|
√ |
Function Usage
Copies a variable or an immediate value multiple times and fills the result into a vector.
For the Atlas 350 Accelerator Card, to facilitate development, the API for computing the first n data elements of a tensor also accepts a tensor as the direct input. In this case, the first data element of the tensor will be copied repeatedly and populated into the vector.
Prototype
- Computation of the first n data elements of a tensor
- When the source operand is a scalar:
1 2
template <typename T> __aicore__ inline void Duplicate(const LocalTensor<T>& dst, const T& scalarValue, const int32_t& count)
- When the source operand is a tensor:
1 2
template <typename T> __aicore__ inline void Duplicate(const LocalTensor<T>& dst, const LocalTensor<T>& src, const int32_t& count)
- When the source operand is a scalar:
- High-dimensional tensor sharding computation
- Bitwise mask mode
1 2
template <typename T, bool isSetMask = true> __aicore__ inline void Duplicate(const LocalTensor<T>& dst, const T& scalarValue, uint64_t mask[], const uint8_t repeatTime, const uint16_t dstBlockStride, const uint8_t dstRepeatStride)
- Contiguous mask mode
1 2
template <typename T, bool isSetMask = true> __aicore__ inline void Duplicate(const LocalTensor<T>& dst, const T& scalarValue, uint64_t mask, const uint8_t repeatTime, const uint16_t dstBlockStride, const uint8_t dstRepeatStride)
- Bitwise mask mode
Parameters
|
Parameter |
Description |
|---|---|
|
T |
Operand data type. For the Atlas 350 Accelerator Card, the supported data types are bool, int8_t, uint8_t, fp4x2_e2m1_t, fp4x2_e1m2_t, hifloat8_t, fp8_e5m2_t, fp8_e4m3fn_t, fp8_e8m0_t, int16_t, uint16_t, half, bfloat16_t, int32_t, uint32_t, float, complex32, int64_t, uint64_t, and complex64. For the For the For the For the For the |
|
isSetMask |
Indicates whether to set mask inside the API.
|
|
Parameter |
Input/Output |
Meaning |
|---|---|---|
|
dst |
Output |
Destination operand. The type is LocalTensor, and TPosition can be VECIN, VECCALC, or VECOUT. The start address of LocalTensor must be 32-byte aligned. |
|
scalarValue |
Input |
Source operand to be copied. Its data type must match that of the elements in dst. |
|
src |
Input |
The type is LocalTensor, and TPosition can be VECIN, VECCALC, or VECOUT. Its data type must match that of the elements in dst. When this parameter is passed, src[0] is copied multiple times and populated into the vector. |
|
count |
Input |
Number of elements involved in the computation. |
|
mask/mask[] |
Input |
mask controls the elements that participate in computation in each iteration.
|
|
repeatTime |
Input |
The vector compute unit reads 8 consecutive data blocks (32 bytes per block, 256 bytes in total) for computation each time. To process the input data, the data needs to be read and computed over multiple repeats. repeatTime indicates the number of repeats. |
|
dstBlockStride |
Input |
Address stride of the vector destination operand between different data blocks in a single repeat |
|
dstRepeatStride |
Input |
Address stride of the vector destination operand for the same data block between adjacent repeats |
Restrictions
- For details about the operand address alignment requirements, see General Address Alignment Restrictions.
- For the Atlas 350 Accelerator Card, only the APIs that compute the first n data elements of a tensor are supported for the bool, int8_t, uint8_t, fp4x2_e2m1_t, fp4x2_e1m2_t, hifloat8_t, fp8_e5m2_t, fp8_e4m3fn_t, fp8_e8m0_t, complex32, int64_t, uint64_t, and complex64 data types.
Returns
None
Examples
- Example of high-dimensional tensor sharding computation (contiguous mask mode)
1 2 3 4 5 6
uint64_t mask = 128; half scalar = 18.0; // repeatTime = 2, 128 elements one repeat, 256 elements total // dstBlkStride = 1, no gap between blocks in one repeat // dstRepStride = 8, no gap between repeats AscendC::Duplicate(dstLocal, scalar, mask, 2, 1, 8 );
- Example of high-dimensional tensor sharding computation (bitwise mask mode)
1 2 3 4 5 6
uint64_t mask[2] = { UINT64_MAX, UINT64_MAX }; half scalar = 18.0; // repeatTime = 2, 128 elements one repeat, 256 elements total // dstBlkStride = 1, no gap between blocks in one repeat // dstRepStride = 8, no gap between repeats AscendC::Duplicate(dstLocal, scalar, mask, 2, 1, 8 );
- Example of computing the first n data elements of a tensor, with the source operand being a scalar
1 2 3
half inputVal(18.0); int32_t srcDataSize = 256; // Number of elements involved in computation AscendC::Duplicate<half>(dstLocal, inputVal, srcDataSize);
- Example of computing the first n data elements of a tensor, with the source operand being a tensor
1AscendC::Duplicate<half>(dstLocal, srcLocal, srcDataSize);
scalar: 18.0 srcLocal: [18.0 1.0 2.0 ... 254.0 255.0] dstLocal: [18.0 18.0 18.0 ... 18.0 18.0]