X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/Cipher_code.git/blobdiff_plain/106cac666097f4dfa0470daf01ebcae0872083e2..149268e31dcc62cf18eddd1b8ffa37cf81acbbca:/IDA_new/ida_gf65_paper3.cpp diff --git a/IDA_new/ida_gf65_paper3.cpp b/IDA_new/ida_gf65_paper3.cpp index 74495b7..ccc7a69 100644 --- a/IDA_new/ida_gf65_paper3.cpp +++ b/IDA_new/ida_gf65_paper3.cpp @@ -61,7 +61,7 @@ void display(mylong *mat, int r, int c) { mylong *matrix_multiply(gf_t *gf, mylong *m1, mylong *m2, int r1, int c1, int r2, int c2, int w, float *toto) { mylong *product; - int i=iii, j, k; + int i, j, k; product = (mylong *) malloc(sizeof(mylong)*r1*c2); for (i = 0; i < r1*c2; i++) product[i] = 0; @@ -504,13 +504,18 @@ int main(int argc, char **argv) display(matG, n, t); */ + int nb_iter=1000; + // sleep(2); + float toto=0.001; auto start = std::chrono::system_clock::now(); - matC=matrix_multiply(&gf, matG, matS, n, t, t, len, w,0); + for(int i=0;i elapsed_seconds = end-start; total_time+=elapsed_seconds.count(); -// cout << "elapsed time: " << elapsed_seconds.count() << "s\n"; + cout << "elapsed time: " << elapsed_seconds.count() << " "<