You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CNumericsSIMD* CNumericsSIMD::CreateNumerics(const CConfig& config, int nDim, int iMesh, const CVariable* turbVars) {
133
+
#ifndef CODI_REVERSE_TYPE
133
134
if ((Double::Size < 4) && (SU2_MPI::GetRank() == MASTER_NODE)) {
134
-
cout << "WARNING: SU2 was not compiled for an AVX-capable architecture." << endl;
135
+
cout << "WARNING: SU2 was not compiled for an AVX-capable architecture. Performance could be better,\n"
136
+
" see https://su2code.github.io/docs_v7/Build-SU2-Linux-MacOS/#compiler-optimizations" << endl;
135
137
}
138
+
#endif
136
139
if (nDim == 2) return createNumerics<2>(config, iMesh, turbVars);
137
140
if (nDim == 3) return createNumerics<3>(config, iMesh, turbVars);
0 commit comments