Function: pointer_get_attributes
Applicability
Product |
Supported (√/x) |
|---|---|
√ |
|
√ |
|
√ |
|
√ |
|
√ |
Function Usage
Obtains the memory attribute information, including whether the memory is on the host or device and the page table size.
Prototype
- C Prototype
1aclError aclrtPointerGetAttributes(const void *ptr, aclrtPtrAttributes *attributes)
- Python Function
1attributes, ret = acl.rt.pointer_get_attributes(ptr)
Parameter Description
Parameter |
Description |
|---|---|
ptr |
Int, memory address. Only the memory allocated by the pyacl APIs can be used. |
Return Value Description
Return Value |
Description |
|---|---|
attributes |
Dict, memory attributes. For details, see aclrtPtrAttributes. |
ret |
Int, error code: 0 on success; else, failure. |
Parent topic: Memory Management