Function: malloc_for_task_scheduler

Applicability

Product

Supported

Atlas 350 Accelerator Card

Atlas A3 training product/Atlas A3 inference product

Atlas A2 training product/Atlas A2 inference product

Atlas training product

Atlas inference product

Atlas 200I/500 A2 inference product

Description

Allocates memory for the task scheduler on the AI processor.

Some operators in graph mode need to use the memory of this type.

Prototype

  • C Prototype
    1
    aclError aclrtMallocForTaskScheduler(void **devPtr, size_t size, aclrtMemMallocPolicy policy, aclrtMallocConfig *cfg)
    
  • Python Function
    1
    dev_ptr, ret = acl.rt.malloc_for_task_scheduler(size, policy, cfg)
    

Parameters

Parameter

Description

size

Int, allocated memory size, in bytes. Must not be 0.

policy

Int, memory allocation policy.

If the configured memory allocation rule exceeds the value range of aclrtMemMallocPolicy and size is greater than or equal to 2 MB, memory is allocated based on huge pages. Otherwise, memory is allocated based on normal pages.

cfg

Dict, memory configuration. If no configuration is specified, an empty dictionary can be transferred. For details, see aclrtMallocConfig.

Return Value

Return Value

Description

devPtr

Int, address of the pointer to the allocated device memory.

ret

Int, error code. 0 on success; else, failure.