X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/Cipher_code.git/blobdiff_plain/6b6283030645bb6d794289f860f73883a1cac83e..5422421cfc1923f68c377dde5bee233a59e7845b:/IDA_new/ida_gf65_paper3.cpp diff --git a/IDA_new/ida_gf65_paper3.cpp b/IDA_new/ida_gf65_paper3.cpp index 678047b..14cb94c 100644 --- a/IDA_new/ida_gf65_paper3.cpp +++ b/IDA_new/ida_gf65_paper3.cpp @@ -58,7 +58,7 @@ void display(mylong *mat, int r, int c) { printf("\n"); } -mylong *matrix_multiply(gf_t *gf, mylong *m1, mylong *m2, int r1, int c1, int r2, int c2, int w) +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, j, k; @@ -73,6 +73,7 @@ mylong *matrix_multiply(gf_t *gf, mylong *m1, mylong *m2, int r1, int c1, int r2 } } } + *toto=*toto+0.021; return product; } @@ -505,7 +506,7 @@ int main(int argc, char **argv) // sleep(2); auto start = std::chrono::system_clock::now(); - matC=matrix_multiply(&gf, matG, matS, n, t, t, len, w); + matC=matrix_multiply(&gf, matG, matS, n, t, t, len, w,0); auto end = std::chrono::system_clock::now(); std::chrono::duration elapsed_seconds = end-start; total_time+=elapsed_seconds.count(); @@ -630,18 +631,17 @@ int main(int argc, char **argv) // sleep(2); start = std::chrono::system_clock::now(); + float toto=0.001; for(int i=0;i<1000;i++) { - float tt=i; - tt=t; - int tt2=tt; - matS2=matrix_multiply(&gf, matInvGs, matCs, tt2, tt2, tt2, len, w); + + matS2=matrix_multiply(&gf, matInvGs, matCs, t, t, t, len, w, toto); } end = std::chrono::system_clock::now(); elapsed_seconds = end-start; // cout << "elapsed time: " << elapsed_seconds.count() << "s\n"; total_time+=elapsed_seconds.count(); - cout/*<<"TOTAL TIME : "*/<