diff options
Diffstat (limited to 'examples/cuda-chill/mv-shadow.c')
-rw-r--r-- | examples/cuda-chill/mv-shadow.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/examples/cuda-chill/mv-shadow.c b/examples/cuda-chill/mv-shadow.c deleted file mode 100644 index 582b187..0000000 --- a/examples/cuda-chill/mv-shadow.c +++ /dev/null @@ -1,9 +0,0 @@ -#define N 1024 - -void normalMV(float c[N][N], float a[N], float b[N]) { - int i, j; - - for (i = 0; i < N; i++) - for (j = 0; j < N; j++) - a[i] = a[i] + c[j][i] * b[j]; -} |