Kernel Conversion - 2023.1 English

AI Engine Kernel and Graph Programming Guide (UG1079)

Document ID
UG1079
Release Date
2023-06-23
Version
2023.1 English

When migrating from window based kernels to buffer port based kernels, users need to determine the buffer port addressing type for each kernel. Window data types are implemented as circular buffers; however, buffer port types are implemented as linear buffers unless declared as circular buffer port types. Criteria selecting addressing mode are listed below.

Criteria to select circular address mode are as follows:

  • Both kernels must be located in the same tile, and they must communicate with each other directly.
  • A margin size greater than 0 is used.
  • Kernel needs to iterate over data cyclically.

Criteria to select linear address mode are as follows:

  • Kernel location is not guaranteed to be within the same tile.
  • The kernel does not require any margin.
  • Extra margin copy does impact design performance.

For an explanation of the differences between linear and circular buffer ports, see Linear and Circular Addressing of Buffer Ports.