Function: create_repo_range

C Prototype

aclfvRepoRange *aclfvCreateRepoRange(uint32_t id0Min, uint32_t id0Max, uint32_t id1Min, uint32_t id1Max)

Python Function

repo_range = acl.fv.create_repo_range(id0min, id0max, id1min, id1max)

Function Usage

Creates data of the aclfvRepoRange type as a feature repository range.

To destroy data of the aclfvRepoRange type, call Function: destroy_repo_range.

The Atlas 200/300/500 Inference Product does not support this API.

The Atlas Training Series Product does not support this API.

Input Description

  • id0min: int, start value of id0. Must be in the range [0, 1023] and be less than or equal to id0Max.
  • id0max: int, maximum value of id0. Must be in the range [0, 1023].
  • id1min: int, start value of id1. Must be in the range [0, 1023] and be less than or equal to id1Max.
  • id1max: int, maximum value of id1. Must be in the range [0, 1023].

Return Value

repo_range: int, pointer address.

  • Success: data of the aclfvRepoRange type.
  • Failure: 0.

Restrictions

None