diff --git a/example_code/matmul_test.cpp b/example_code/matmul_test.cpp index 8976785..7ee4e01 100644 --- a/example_code/matmul_test.cpp +++ b/example_code/matmul_test.cpp @@ -1,5 +1,5 @@ /****************************************************************************************************** - July 10, 2017 + July 26, 2018 Ian A. Cosden Princeton University diff --git a/example_code/mm.h b/example_code/mm.h index e496e05..cc23387 100644 --- a/example_code/mm.h +++ b/example_code/mm.h @@ -1,13 +1,13 @@ /****************************************************************************************************** - July 10, 2017 + July 23, 2017 Ian A. Cosden Princeton University icosden@princeton.edu - Sample Matrix-Matrix multiplication code for CoDaS-HEP Summer School + Sample Matrix-Matrix multiplication code for CoDaS-HEP Summer School + - *******************************************************************************************************/ @@ -41,7 +41,7 @@ void mm2(double **A, double **B, double **C, int matrix_size) { } } } - + } //1D matrix-matrix multiplication @@ -69,15 +69,15 @@ void mm4(double *a, double *b, double *c, int matrix_size) { //function to print a few elements to std out to use as a check (2D version) void print_check(double **Z, int matrix_size) { - + cout<