/beegfs/hackathon/users/eoseret/qaas_runs_test/178-654-6841/intel/miniqmc/build/miniqmc/src/Numerics/PETE/OperatorTags.h: 63 - 94
--------------------------------------------------------------------------------

63:     return (a * b);
[...]
94:     (const_cast<T1&>(a) += b);
/beegfs/hackathon/users/eoseret/qaas_runs_test/178-654-6841/intel/miniqmc/build/miniqmc/src/Numerics/OhmmsPETE/TinyVectorOps.h: 129 - 131
--------------------------------------------------------------------------------

129:     Type_t res = lhs[0] * rhs[0];
130:     for (unsigned d = 1; d < D; ++d)
131:       res += lhs[d] * rhs[d];
/beegfs/hackathon/users/eoseret/qaas_runs_test/178-654-6841/intel/miniqmc/build/miniqmc/src/Numerics/OhmmsPETE/OhmmsVector.h: 223 - 223
--------------------------------------------------------------------------------

223:     return X[i];
/beegfs/hackathon/users/eoseret/qaas_runs_test/178-654-6841/intel/miniqmc/build/miniqmc/src/QMCWaveFunctions/DiracDeterminantRef.cpp: 156 - 181
--------------------------------------------------------------------------------

156: {
157:   if (UpdateMode == ORB_PBYP_RATIO)
158:   { //need to compute dpsiM and d2psiM. Do not touch psiM!
159:     SPOVGLTimer->start();
160:     Phi->evaluate_notranspose(P, FirstIndex, LastIndex, psiM_temp, dpsiM, d2psiM);
161:     SPOVGLTimer->stop();
162:   }
163: 
164:   if (NumPtcls == 1)
165:   {
166:     ValueType y = psiM(0, 0);
167:     GradType rv = y * dpsiM(0, 0);
168:     G[FirstIndex] += rv;
169:     L[FirstIndex] += y * d2psiM(0, 0) - dot(rv, rv);
170:   }
171:   else
172:   {
173:     for (size_t i = 0, iat = FirstIndex; i < NumPtcls; ++i, ++iat)
174:     {
175:       mValueType dot_temp = simd::dot(psiM[i], d2psiM[i], NumOrbitals);
176:       mGradType rv        = simd::dot(psiM[i], dpsiM[i], NumOrbitals);
177:       G[iat] += rv;
178:       L[iat] += dot_temp - dot(rv, rv);
179:     }
180:   }
181: }
/usr/lib/gcc/x86_64-redhat-linux/11/../../../../include/c++/11/bits/unique_ptr.h: 173 - 173
--------------------------------------------------------------------------------

173:       pointer    _M_ptr() const { return std::get<0>(_M_t); }
/beegfs/hackathon/users/eoseret/qaas_runs_test/178-654-6841/intel/miniqmc/build/miniqmc/src/Platforms/CPU/SIMD/inner_product.hpp: 82 - 155
--------------------------------------------------------------------------------

82:   for (int i = 0; i < n; i++)
83:     res += a[i] * b[i];
[...]
155:   for (int i = 0; i < n; i++)
