diff options
author | Reto Fritsche <reto.fritsche@ost.ch> | 2021-08-09 23:18:14 +0200 |
---|---|---|
committer | Reto Fritsche <reto.fritsche@ost.ch> | 2021-08-09 23:18:14 +0200 |
commit | 5a229fced6ee10f25060e190c0b08bba048a7617 (patch) | |
tree | 592f07a72dc67d12135564d2497f1b3649fe78eb /buch/papers/multiplikation/code/MM.c | |
parent | scratch ready (diff) | |
parent | Merge branch 'master' of github.com:AndreasFMueller/SeminarMatrizen (diff) | |
download | SeminarMatrizen-5a229fced6ee10f25060e190c0b08bba048a7617.tar.gz SeminarMatrizen-5a229fced6ee10f25060e190c0b08bba048a7617.zip |
Merge remote-tracking branch 'upstream/master' into mceliece
Diffstat (limited to '')
-rwxr-xr-x | buch/papers/multiplikation/code/MM.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buch/papers/multiplikation/code/MM.c b/buch/papers/multiplikation/code/MM.c index 04c4dab..a897d4f 100755 --- a/buch/papers/multiplikation/code/MM.c +++ b/buch/papers/multiplikation/code/MM.c @@ -31,7 +31,7 @@ int main() { run_algo(strassen, "strassen",0);
run_algo(MM, "MM", 0);
- // run_algo(winograd, "winograd", 0);
+ run_algo(winograd, "winograd", 0);
run_algo_cblas(0);
return 0;
|