aclnnForeachAtan
Product Support
| Product | Supported |
|---|---|
| √ | |
| √ | |
| × | |
| × | |
| × |
Function
- Description: Performs element-wise arctangent operation.
- Formula:
Prototype
Each operator has two-phase API calls. First, aclnnForeachAtanGetWorkspaceSize is called to obtain the input parameters and compute the required workspace size based on the process. Then, aclnnForeachAtan is called to perform computation.
aclnnStatus aclnnForeachAtanGetWorkspaceSize(
const aclTensorList *x,
const aclTensorList *out,
uint64_t *workspaceSize,
aclOpExecutor **executor)aclnnStatus aclnnForeachAtan(
void *workspace,
uint64_t workspaceSize,
aclOpExecutor *executor,
aclrtStream stream)aclnnForeachAtanGetWorkspaceSize
Parameters
Name Input/Output Description Usage Notes Data Type Data Format Shape Non-contiguous Tensor x Input Input tensor list for the arctangent operation, corresponding to `x` in the formula. - Empty tensors are supported.
- All tensors within this parameter must share the same data type.
BFLOAT16, FLOAT16, FLOAT32 ND 0–8 √ out Output Output tensor list for the arctangent operation, corresponding to `y` in the formula. - Empty tensors are supported.
- All tensors within this parameter must share the same data type.
- The data type and format must be the same as those of `x`, and the shape size must be greater than or equal to that of `x`.
BFLOAT16, FLOAT16, FLOAT32 ND 0–8 √ workspaceSize Output Size of the workspace required to be allocated on the device. - - - - - executor Output Operator executor, containing the operator computation flow. - - - - - Returns
aclnnStatus: status code. For details, see aclnn Return Codes.
The first-phase API implements input parameter verification. The following errors may be thrown.
Return Error Code Description ACLNN_ERR_PARAM_NULLPTR 161001 The passed x or out is a null pointer. ACLNN_ERR_PARAM_INVALID 161002 The data type of x or out is not supported. The data types of x and out do not match. ACLNN_ERR_INNER_TILING_ERROR 561002 The shape of x or out does not meet the constraints. The data types of tensors in x or out do not match. A tensor in x or out has more than eight dimensions.
aclnnForeachAtan
Parameters
Name Input/Output Description workspace Input Address of the workspace to be allocated on the device. workspaceSize Input Size of the workspace to be allocated on the device, which is obtained by calling the first-phase API aclnnForeachAtanGetWorkspaceSize. executor Input Operator executor, containing the operator computation flow. stream Input Stream for executing the task. Returns
aclnnStatus: status code. For details, see aclnn Return Codes.
Constraints
- Deterministic computation:
- aclnnForeachAtan defaults to a deterministic implementation.
Example
The following example is for reference only. For details, see Compilation and Running Sample.
#include <iostream>
#include <vector>
#include "acl/acl.h"
#include "aclnnop/aclnn_foreach_atan.h"
#define CHECK_RET(cond, return_expr) \
do { \
if (!(cond)) { \
return_expr; \
} \
} while (0)
#define LOG_PRINT(message, ...) \
do { \
printf(message, ##__VA_ARGS__); \
} while (0)
int64_t GetShapeSize(const std::vector<int64_t>& shape) {
int64_t shapeSize = 1;
for (auto i : shape) {
shapeSize *= i;
}
return shapeSize;
}
int Init(int32_t deviceId, aclrtStream *stream)
{
// (Boilerplate) Initialize resources.
auto ret = aclInit(nullptr);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("aclInit failed. ERROR: %d\n", ret); return ret);
ret = aclrtSetDevice(deviceId);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("aclrtSetDevice failed. ERROR: %d\n", ret); return ret);
ret = aclrtCreateStream(stream);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("aclrtCreateStream failed. ERROR: %d\n", ret); return ret);
return 0;
}
template <typename T>
int CreateAclTensor(const std::vector<T>& hostData, const std::vector<int64_t>& shape, void** deviceAddr,
aclDataType dataType, aclTensor** tensor) {
auto size = GetShapeSize(shape) * sizeof(T);
// Call aclrtMalloc to allocate memory on the device.
auto ret = aclrtMalloc(deviceAddr, size, ACL_MEM_MALLOC_HUGE_FIRST);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("aclrtMalloc failed. ERROR: %d\n", ret); return ret);
// Call aclrtMemcpy to copy the data on the host to the memory on the device.
ret = aclrtMemcpy(*deviceAddr, size, hostData.data(), size, ACL_MEMCPY_HOST_TO_DEVICE);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("aclrtMemcpy failed. ERROR: %d\n", ret); return ret);
// Compute the strides of the contiguous tensor.
std::vector<int64_t> strides(shape.size(), 1);
for (int64_t i = shape.size() - 2; i >= 0; i--) {
strides[i] = shape[i + 1] * strides[i + 1];
}
// Call aclCreateTensor to create an aclTensor.
*tensor = aclCreateTensor(shape.data(), shape.size(), dataType, strides.data(), 0, aclFormat::ACL_FORMAT_ND,
shape.data(), shape.size(), *deviceAddr);
return 0;
}
int main() {
// 1. (Boilerplate) Initialize the device and stream. For details, see the ACL API manual.
// Set the device ID (deviceId) based on the actual device.
int32_t deviceId = 0;
aclrtStream stream;
auto ret = Init(deviceId, &stream);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("Init acl failed. ERROR: %d\n", ret); return ret);
// 2. Construct inputs and outputs based on API definitions.
std::vector<int64_t> selfShape1 = {2, 3};
std::vector<int64_t> selfShape2 = {1, 3};
std::vector<int64_t> outShape1 = {2, 3};
std::vector<int64_t> outShape2 = {1, 3};
void* input1DeviceAddr = nullptr;
void* input2DeviceAddr = nullptr;
void* out1DeviceAddr = nullptr;
void* out2DeviceAddr = nullptr;
aclTensor* input1 = nullptr;
aclTensor* input2 = nullptr;
aclTensor* out1 = nullptr;
aclTensor* out2 = nullptr;
std::vector<float> input1HostData = {1, 2, 3, 4, 5, 6};
std::vector<float> input2HostData = {7, 8, 9};
std::vector<float> out1HostData(6, 0);
std::vector<float> out2HostData(3, 0);
// Create an input1 aclTensor.
ret = CreateAclTensor(input1HostData, selfShape1, &input1DeviceAddr, aclDataType::ACL_FLOAT, &input1);
CHECK_RET(ret == ACL_SUCCESS, return ret);
// Create an input2 aclTensor.
ret = CreateAclTensor(input2HostData, selfShape2, &input2DeviceAddr, aclDataType::ACL_FLOAT, &input2);
CHECK_RET(ret == ACL_SUCCESS, return ret);
// Create an out1 aclTensor.
ret = CreateAclTensor(out1HostData, outShape1, &out1DeviceAddr, aclDataType::ACL_FLOAT, &out1);
CHECK_RET(ret == ACL_SUCCESS, return ret);
// Create an out2 aclTensor.
ret = CreateAclTensor(out2HostData, outShape2, &out2DeviceAddr, aclDataType::ACL_FLOAT, &out2);
CHECK_RET(ret == ACL_SUCCESS, return ret);
std::vector<aclTensor*> tempInput{input1, input2};
aclTensorList* tensorListInput = aclCreateTensorList(tempInput.data(), tempInput.size());
std::vector<aclTensor*> tempOutput{out1, out2};
aclTensorList* tensorListOutput = aclCreateTensorList(tempOutput.data(), tempOutput.size());
// 3. Call the CANN operator library API. Modify the API as required.
uint64_t workspaceSize = 0;
aclOpExecutor* executor;
// Call the first-phase API of aclnnForeachAtan.
ret = aclnnForeachAtanGetWorkspaceSize(tensorListInput, tensorListOutput, &workspaceSize, &executor);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("aclnnForeachAtanGetWorkspaceSize failed. ERROR: %d\n", ret); return ret);
// Allocate device memory based on workspaceSize computed by the first-phase API.
void* workspaceAddr = nullptr;
if (workspaceSize > 0) {
ret = aclrtMalloc(&workspaceAddr, workspaceSize, ACL_MEM_MALLOC_HUGE_FIRST);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("allocate workspace failed. ERROR: %d\n", ret); return ret);
}
// Call the second-phase API of aclnnForeachAtan.
ret = aclnnForeachAtan(workspaceAddr, workspaceSize, executor, stream);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("aclnnForeachAtan failed. ERROR: %d\n", ret); return ret);
// 4. (Boilerplate) Synchronize the stream and wait for task completion.
ret = aclrtSynchronizeStream(stream);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("aclrtSynchronizeStream failed. ERROR: %d\n", ret); return ret);
// 5. Obtain the output value and copy the result from the device to the host. Modify the code based on the API definition.
auto size = GetShapeSize(outShape1);
std::vector<float> out1Data(size, 0);
ret = aclrtMemcpy(out1Data.data(), out1Data.size() * sizeof(out1Data[0]), out1DeviceAddr,
size * sizeof(out1Data[0]), ACL_MEMCPY_DEVICE_TO_HOST);
for (int64_t i = 0; i < size; i++) {
LOG_PRINT("out1 result[%ld] is: %f\n", i, out1Data[i]);
}
size = GetShapeSize(outShape2);
std::vector<float> out2Data(size, 0);
ret = aclrtMemcpy(out2Data.data(), out2Data.size() * sizeof(out2Data[0]), out2DeviceAddr,
size * sizeof(out2Data[0]), ACL_MEMCPY_DEVICE_TO_HOST);
CHECK_RET(ret == ACL_SUCCESS, LOG_PRINT("copy result from device to host failed. ERROR: %d\n", ret); return ret);
for (int64_t i = 0; i < size; i++) {
LOG_PRINT("out2 result[%ld] is: %f\n", i, out2Data[i]);
}
// 6. Destroy aclTensor and aclScalar. Modify the code based on the API definition.
aclDestroyTensorList(tensorListInput);
aclDestroyTensorList(tensorListOutput);
// 7. Release device resources. Modify the code based on the API definition.
aclrtFree(input1DeviceAddr);
aclrtFree(input2DeviceAddr);
aclrtFree(out1DeviceAddr);
aclrtFree(out2DeviceAddr);
if (workspaceSize > 0) {
aclrtFree(workspaceAddr);
}
aclrtDestroyStream(stream);
aclrtResetDevice(deviceId);
aclFinalize();
return 0;
}