response 3

This commit is contained in:
Gundolf Haase 2025-11-12 13:58:25 +01:00
commit 45fdb92841
5 changed files with 337 additions and 3 deletions

View file

@ -211,7 +211,7 @@ vector<double> test_C(const size_t &NLOOPS, const size_t &L, const size_t &M, co
// Do calculation
vector<double> C(M*N);
double check;
double check_sum;
double check_sum; // GH: initialize
for (size_t i = 0; i < NLOOPS; ++i)
{
@ -330,4 +330,4 @@ vector<double> test_D(const size_t &NLOOPS, const size_t &N, const size_t &p)
return vector<double>{t_diff, Gflops, MemBandwidth};
}
}