diff options
author | Derick Huth <derickhuth@gmail.com> | 2016-01-18 15:43:52 -0700 |
---|---|---|
committer | Derick Huth <derickhuth@gmail.com> | 2016-01-18 15:43:52 -0700 |
commit | 983749787ee0dc1beb1107873e8a13ebdaeba576 (patch) | |
tree | e9bff337b4d5582b87ad2edc25baa4d3b0c163fa /test-chill/mm.c | |
parent | 0cff3f9a3c4ccd434900162ebef4bd814850f481 (diff) | |
download | chill-983749787ee0dc1beb1107873e8a13ebdaeba576.tar.gz chill-983749787ee0dc1beb1107873e8a13ebdaeba576.tar.bz2 chill-983749787ee0dc1beb1107873e8a13ebdaeba576.zip |
restore test suite
Diffstat (limited to 'test-chill/mm.c')
-rw-r--r-- | test-chill/mm.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/test-chill/mm.c b/test-chill/mm.c deleted file mode 100644 index 354d929..0000000 --- a/test-chill/mm.c +++ /dev/null @@ -1,15 +0,0 @@ - - -void mm(float **A, float **B, float **C, int ambn, int an, int bm) { - int i, j, n; - - for(i = 0; i < an; i++) { - for(j = 0; j < bm; j++) { - C[i][j] = 0.0f; - for(n = 0; n < ambn; n++) { - C[i][j] += A[i][n] * B[n][j]; - } - } - } -} - |