.. highlight:: c .. _pragma_function_replicate: Replicate Function ------------------------------- **Syntax** ``#pragma LEGUP function replicate`` **Description** This pragma specifies a function to be replicated every time it is called. **Position** At the beginning of the function definition block. **Examples** .. code-block:: c int sum(int *a) { #pragma LEGUP function replicate ... } --------------------------------------------------------------------------------