aclrtNotifyImportByKey
Applicability
Product |
Supported |
|---|---|
√ |
|
√ |
|
☓ |
|
√ |
|
√ |
Description
Obtains the key information in the current process and returns the Notify pointer that can be used by this process.
This API must be used with other APIs to synchronize tasks between processes on multiple devices. For details, see aclrtNotifyGetExportKey.
Prototype
aclError aclrtNotifyImportByKey(aclrtNotify *notify, const char *key, uint64_t flags)
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
notify |
Output |
Notify pointer. |
key |
Input |
Share name of the Notify object. First call aclrtNotifyGetExportKey to obtain the share name of the specified Notify object and then pass the share name as an input. |
flags |
Input |
Whether to enable data exchange between two devices. The value can be either of the following macros:
The macros are defined as follows: #define ACL_RT_NOTIFY_IMPORT_FLAG_DEFAULT 0x0UL #define ACL_RT_NOTIFY_IMPORT_FLAG_ENABLE_PEER_ACCESS 0x02UL |
Returns
0 on success; else, failure. For details, see aclError.
Restrictions
This operation is not supported in the Ascend virtual instance scenario.