-
Notifications
You must be signed in to change notification settings - Fork 56
Basic Examples With Poorly Drawn Diagrams
Julian Kemmerer edited this page Mar 7, 2019
·
22 revisions
Here is the PipelineC code that describes a pipelined floating point adder:
float main(float x, float y)
{
return x + y;
}
Here is the PipelineC code that describes a pipelined binary tree summation of 8 values by instantiating 7 floating point adders:
float main(float x0, float x1, float x2, float x3,
float x4, float x5, float x6, float x7)
{
// First layer of 4 sums in parallel
float sum0;
float sum1;
float sum2;
float sum3;
sum0 = x0 + x1;
sum1 = x2 + x3;
sum2 = x4 + x5;
sum3 = x6 + x7;
// Next layer of two sums in parallel
float sum4;
float sum5;
sum4 = sum0 + sum1;
sum5 = sum2 + sum3;
// Final layer of a single sum
float sum6;
sum6 = sum4 + sum5;
return sum6;
}
This code describes a pipelined floating point matrix multiplier by instantiating::
- N^3 floating point multipliers
- N^2 binary tree summations of N elements ('float_array_sumN') (of which each is is 2^(log2(N)+1)-1 floating point adders )
// Lowest latency, most resource usage
// Resource usage grows O(N^3)
#include "uintN_t.h"
#define N 2
#define float_array_sumN float_array_sum2
#define iter_t uint1_t
typedef struct an_array_t
{
float a[N][N];
} an_array_t;
an_array_t main(float mat1[N][N], float mat2[N][N])
{
an_array_t res;
iter_t i;
iter_t j;
iter_t k;
for (i = 0; i < N; i = i + 1)
{
for (j = 0; j < N; j = j + 1)
{
float res_k[N];
for (k = 0; k < N; k = k + 1)
{
res_k[k] = mat1[i][k] * mat2[k][j];
}
res.a[i][j] = float_array_sumN(res_k);
}
}
return res;
}
The diagram I tried to hand draw for this was embarrassing. Use your imagination for now.
This code describes two floating point units, a multiplier and an adder. The multiply+add computation takes M total clock cycles. Every M clock cycles the i,j,k iterators are incremented to unroll the loop. Latency = N^3 * M iterations of the main function.
// High latency, low resource usage matrix multiply
#include "uintN_t.h"
// Array dimension
#define N 2
#define N_MINUS_1 1 // To not need an extra bit in iter_t
#define iter_t uint1_t
// Type holding result array
typedef struct result_array_t
{
float a[N][N];
uint1_t done;
} result_array_t;
// Indicates if volatile globals are valid
volatile uint1_t volatiles_valid;
// Volatile globals
// i,j,k iterators
volatile iter_t i;
volatile iter_t j;
volatile iter_t k;
// Result array
volatile result_array_t result;
// An unrolled version of the i,j,k matrix multiply nested loops
/*
for (i = 0; i < N; i++)
{
for (j = 0; j < N; j++)
{
for (k = 0; k < N; k++)
res[i][j] += mat1[i][k] * mat2[k][j];
}
}
*/
// Signal the start of the operation with 'start'
// return value '.done' signals the completion of the operation
// Both input matrices are assumed to have data from start->done
// ~N^3 volatile iterations after 'start' the result 'done'
result_array_t main(
uint1_t start,
float mat1[N][N], float mat2[N][N])
{
// Reset everything if this is the start
if(start)
{
// Validate the volatiles as being reset to 0
volatiles_valid = 1;
// Clear the result array
i = 0;
j = 0;
k = 0;
for (i = 0; i < N; i = i + 1)
{
for (j = 0; j < N; j = j + 1)
{
result.a[i][j] = 0;
}
}
}
// Default return accumulated result
result_array_t rv;
rv = result;
// Accumulate into volatile global result
// (only if the volatile globals have valid data)
if(volatiles_valid)
{
// Do the math for this iteration
// Two separate floating point operatations
// Multiply
float product;
product = mat1[i][k] * mat2[k][j];
// Accumulate
result.a[i][j] = result.a[i][j] + product;
// This is like unrolling to a
// single iteration of the inner most loop
// i
if(i == N_MINUS_1)
{
// End of i loop, reset
i = 0;
// Multiply is done now
rv = result;
rv.done = 1;
// Clear done flag to start over
result.done = 0;
// Invalidate state, wait for start again
volatiles_valid = 0;
}
// j
if(j == N_MINUS_1)
{
// End of j loop, reset
j = 0;
// Increment i
i = i + 1;
}
// k
if(k == N_MINUS_1)
{
// End of k loop, reset
k = 0;
// Increment j
j = j + 1;
}
else
{
// Increment k
k = k + 1;
}
}
return result;
}
Diagram: TBD

