Description
Reduces the initiation interval (II) for a function or loop by
allowing the concurrent execution of operations as described in the Pipelining
Paradigm section of Vitis High-Level Synthesis User Guide (UG1399). A
pipelined function or loop can process new inputs every N clock cycles, where N is
the initiation interval (II
). An II of 1 processes
a new input every clock cycle.
As a default behavior, with syn.directive.pipeline
the tool will generate the minimum II for the design according to the specified
clock period constraint. The emphasis will be on meeting timing, rather than on
achieving II unless the -II
option is specified.
The default type of pipeline is defined by the syn.compile.pipeline_style
command as described in
Compile Options, but can be overridden in the PIPELINE pragma
or directive.
If Vitis HLS cannot create a design with the specified II, it issues a warning and creates a design with the lowest achievable II. You can then analyze the design with the warning messages to determine what steps must be taken to create a design that satisfies the required initiation interval.
Syntax
syn.directive.pipeline=[OPTIONS] <location>
Where:
-
<location>
is the location (in the formatfunction[/label]
) to be pipelined.
Options
-
II=<integer>
- Specifies the desired initiation interval for the pipeline. Vitis HLS tries to meet this request. Based on data dependencies, the actual result might have a larger II.
-
off
- Turns off pipeline for a specific loop or function. This can
be used when
config_compile -pipeline_loops
is used to globally pipeline loops. -
rewind
-
Note: Applicable only to a loop.
-
style=<stp | frp | flp>
- Specifies the type of pipeline to use for the specified
function or loop. For more information on pipeline styles refer to the
Flushing Pipeline and Pipeline Types section of the Vitis High-Level
Synthesis User Guide (UG1399). The types of pipelines include:
-
stp
- Stall pipeline. Runs only when input data is available otherwise it stalls. This is the default setting, and is the type of pipeline used by Vitis HLS for both loop and function pipelining. Use this when a flushable pipeline is not required. For example, when there are no performance or deadlock issue due to stalls.
-
flp
- This option defines the pipeline as a flushable pipeline. This type of pipeline typically consumes more resources and/or can have a larger II because resources cannot be shared among pipeline iterations.
-
frp
- Free-running, flushable pipeline. Runs even when input data is not available. Use this when you need better timing due to reduced pipeline control signal fanout, or when you need improved performance to avoid deadlocks. However, this pipeline style can consume more power as the pipeline registers are clocked even if there is no data.
Important: This is a hint not a hard constraint. The tool checks design conditions for enabling pipelining. Some loops might not conform to a particular style and the tool reverts to the default style (stp
) if necessary. -
Examples
Function func
is pipelined with the
specified initiation interval.
syn.directive.pipeline=func II=1