C/C++
intense.txt
Associated article: Accelerating Compute Intensive Functions Using C
Tags: C/C++ Design
Published source code accompanying the article by Joe Hanson in which he examines how you accelerate application processing using a software-configurable architecture to achieve hardware-accelerated performance in C.
Accelerating Compute Intensive Functions Using C
by Joe Hanson
Listing One
void fir(short *X, short *H, short *Y, int N, int T)
{
int n, t, acc;
short *x, *h;
/* Filter Input */
for (n = 0; n < N; n++) {
x = X;
...


