From e899ef1fed32f18d32986b01ac26ed7f1457ebe8 Mon Sep 17 00:00:00 2001 From: Dylan Copeland Date: Fri, 21 Jun 2024 18:52:36 -0700 Subject: [PATCH] Comment update --- lib/hyperreduction/STSampling.cpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/lib/hyperreduction/STSampling.cpp b/lib/hyperreduction/STSampling.cpp index 63a24431f..4f6d25239 100644 --- a/lib/hyperreduction/STSampling.cpp +++ b/lib/hyperreduction/STSampling.cpp @@ -23,10 +23,13 @@ namespace CAROM { // This function implements Algorithm 2 of Choi and Carlberg 2019. // All spatial indices are used here. -// Spatial basis s_basis is distributed, of size (number of spatial DOFs) x (number of basis vectors) -// Temporal basis t_basis is stored in its entirety on each process, of size (number of temporal DOFs) x (number of basis vectors) -// In general, there may be multiple temporal basis vectors associated with each spatial basis vector, but here we assume for now -// that there is only one, i.e. column j of s_basis corresponds to column j of t_basis. +// The spatial basis s_basis is distributed, of size +// (number of spatial DOFs) x (number of basis vectors) +// The temporal basis t_basis is not distributed, stored in its entirety on each +// process, of size (number of temporal DOFs) x (number of basis vectors) +// In general, there may be multiple temporal basis vectors associated with each +// spatial basis vector, but here we assume for now that there is only one, i.e. +// column j of s_basis corresponds to column j of t_basis. void SampleTemporalIndices(const Matrix* s_basis, const Matrix* t_basis, const int num_f_basis_vectors_used,