From 9fc282c8397920e7e93a411235e0e4b5f5c7a784 Mon Sep 17 00:00:00 2001 From: Ian Cosden Date: Tue, 10 Jul 2018 21:00:51 -0400 Subject: [PATCH] Updates to 2018 --- example_code/matmul_test.cpp | 2 +- example_code/mm.h | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) 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<