summaryrefslogtreecommitdiff
path: root/examples/chill/gemm.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/chill/gemm.c')
-rw-r--r--examples/chill/gemm.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/examples/chill/gemm.c b/examples/chill/gemm.c
deleted file mode 100644
index a565511..0000000
--- a/examples/chill/gemm.c
+++ /dev/null
@@ -1,18 +0,0 @@
-
-#define N 512
-
-int main() {
-
- float a[N][N], b[N][N], c[N][N];
-
- int i, j, k;
-
- for (j = 0; j < N; j++)
- for (k = 0; k < N; k++)
- for (i = 0; i < N; i++) {
- c[i][j] = c[i][j] + a[i][k] * b[k][j];
- }
-
- return 0;
-}
-