Constraints - 2025.2 English

Vitis IP Libraries

Release Date
2025-11-20
Version
2025.2 English

Should it be necessary to apply constraints within the FIR instance to achieve successful mapping of the design, you need to know the internal instance names for graph and kernel names.

Each FIR variant has a variety of access methods to help assign a constraint on a kernel and/or a net, e.g.:

  • getKernels() which returns a pointer to an array of kernel pointers, or
  • getInNet() which returns a pointer to a net indexed by method’s argument(s).

More details are provided in the API Reference Overview.

When configured for a SSR operation, the FIR has a two-dimensional array (paths x phases) of units which are themselves FIRs, though each atomic FIR in this structure can itself be a series of kernels as described by TP_CASC_LEN. The getKernels() access function returns a pointer to the array of kernels within the SSR FIR. This array will have TP_SSR * TP_SSR * TP_CASC_LEN members. The index in the array is determined by its path number, phase number and cascade position as shown in the following equation.

Kernel Index = Kernel Path * TP_SSR * TP_CASC_LEN + Kernel Phase * TP_CASC_LEN + Kernel Cascade index

For example, in a design with TP_CASC_LEN = 2 and TP_SSR = 3, the first kernel of the last path would have an index 12.

The nets returned by the getInNet() function can be assigned custom fifo_depths values to override the defaults.