Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 2d7a01fa authored by thierry's avatar thierry
Browse files

Update

parent f5473aaf
No related branches found
No related tags found
No related merge requests found
No preview for this file type
......@@ -99,6 +99,11 @@ void matb_mm_task(int b, int M, int N, int K, double *A, double *B, double *C)
{
}
/* compute C <- A*B */
void matb_mm_task_strassen(int M, int N, int K, double *A, double *B, double *C)
{
}
int main(int argc, char** argv)
{
......@@ -181,6 +186,14 @@ int main(int argc, char** argv)
matb_mm_task(b,M,N,K,A,B,Cb);
printf("Cblock Task !!!\n");
if (M*N*K <= 64)
mat_print(M,N,Cb);
/* reset C */
mat_zero(M, N, Cb);
matb_mm_task_strassen(M,N,K,A,B,Cb);
printf("Cblock Task Strassen!!!\n");
if (M*N*K <= 64)
mat_print(M,N,Cb);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment