From d608d6c8c3dcf70ef4ae4190209b52b943daeea8 Mon Sep 17 00:00:00 2001 From: Marcin Kirsz <mkirsz@ed.ac.uk> Date: Tue, 8 Oct 2024 11:31:39 +0100 Subject: [PATCH] Changed inheritace, fix --- trainer.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/trainer.h b/trainer.h index 7795696..3284f13 100644 --- a/trainer.h +++ b/trainer.h @@ -125,6 +125,8 @@ class MPI_Trainer: public Trainer { MPI_Bcast(&PHI_rows, 1, MPI_INT, 0, MPI_COMM_WORLD); MPI_Bcast(&PHI_cols, 1, MPI_INT, 0, MPI_COMM_WORLD); + std::cout << "PHI_cols " << PHI_cols << std::endl; + // Initialize BLACS // We create two contexts. // context1 is used for the computation of phi matrices -- GitLab