sys_create_epoll

Applicability

Product

Supported (√/x)

Atlas A3 training products / Atlas A3 inference products

Atlas A2 training products / Atlas A2 inference products

Atlas training products

x

Atlas inference products

Atlas 200I/500 A2 inference products

Function Usage

Creates an epoll instance for media data processing to allow you to use the epoll programming model to operate the input and output data of the media data processing channel.

Prototype

  • C Prototype
    1
    hi_s32 hi_mpi_sys_create_epoll(hi_s32 size, hi_s32 *epoll_fd);
    
  • Python Function
    1
    epoll_fd, ret = acl.himpi.sys_create_epoll(size)
    

Parameter Description

None.

Return Value Description

Return Value

Description

epoll_fd

Int, pointer address of the file descriptor of an epoll instance. The number of file descriptors is restricted by the maximum number of files that can be opened at the same time in a task in the Linux OS, which can be viewed by using the ulimit -al command.

ret

Int, error code.

Restrictions

  • Atlas inference products : In standard form, only epoll APIs (like acl.himpi.sys_create_epoll) are available, and the epoll functions of the Linux OS are not available.
  • Atlas A2 training products / Atlas A2 inference products : Only epoll APIs (like acl.himpi.sys_create_epoll) are available, and the epoll functions of the Linux OS are not available.
  • Atlas 200I/500 A2 inference products : Only epoll APIs (like acl.himpi.sys_create_epoll) are available, and the epoll functions of the Linux OS are not available.
  • Atlas A3 training products / Atlas A3 inference products : Only pyacl's epoll APIs (like acl.himpi.sys_create_epoll) are available, and the epoll functions of the Linux OS are not available.
  • The VPC function does not support this API.