IPTR-C2H-NIOS Altera, IPTR-C2H-NIOS Datasheet - Page 81

no-image

IPTR-C2H-NIOS

Manufacturer Part Number
IPTR-C2H-NIOS
Description
IP CORE Renewal Of IPT-C2H-NIOS
Manufacturer
Altera
Datasheet

Specifications of IPTR-C2H-NIOS

Software Application
IP CORE, NIOS Processor And Functions
Core Architecture
Nios II
Features
ANSI C Compliance, Straightforward C-to-Hardware Mapping, Reporting Of Generated Results
Core Sub-architecture
Cyclone
Rohs Compliant
NA
Lead Free Status / RoHS Status
na
Example 3–34. Loops Without Interdependencies Scheduled in Parallel
void double_mac (int* _ _ restrict_ _ a, int* __restrict__ b,
{
}
Altera Corporation
November 2009
int len_cd = len;
// Compute the MAC for a & b
long long mac_ab = 0;
while (len_ab > 0)
{
}
// Compute the MAC for c & d
long long mac_cd = 0;
while (len_cd > 0)
{
}
*res_ab = mac_ab;
*res_cd = mac_cd;
return;
mac_ab += *a++ * *b++;
len_ab--;
mac_cd += *c++ * *d++;
len_cd--;
int* _ _ restrict_ _ c, int* __restrict__ d,
long long* _ _ restrict__ res_ab,
long long* _ _ restrict__ res_cd,
int len)
If multiple loops have no interdependencies, the C2H Compiler
schedules the loops on the same state, allowing the loops to execute in
parallel. The code in
dependencies on each other. The C2H Compiler schedules these loops on
the same state.
Subfunction Calls
A subfunction call can stall the state machine in the same way that an
inner loop does. When a subfunction contains a looping structure or
shares a data dependency with its caller, the subfunction is not pipelined.
If this is the case, when the outer state machine reaches its state for the
subfunction, the outer state machine stalls until the subfunction has
completed.
If the subfunction does not contain loops or shared data dependencies the
C2H Compiler can pipeline the subfunction. For details about pipelined
subfunctions, see
// duplicate the length index
“Subfunction Pipelining” on page
Example 3–34
9.1
has two while loops with no
C-to-Hardware Mapping Reference
Nios II C2H Compiler User Guide
3–49.
3–41

Related parts for IPTR-C2H-NIOS