From: Martin Kronbichler Date: Mon, 8 Oct 2018 06:33:32 +0000 (+0200) Subject: Print vectorization for altivec X-Git-Tag: v9.1.0-rc1~651^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8e736e8d8f9304c87be94c1fd3d8a132a5b44a6;p=dealii.git Print vectorization for altivec --- diff --git a/source/base/utilities.cc b/source/base/utilities.cc index baee0da002..659f82b45c 100644 --- a/source/base/utilities.cc +++ b/source/base/utilities.cc @@ -810,7 +810,11 @@ namespace Utilities case 0: return "disabled"; case 1: +#ifdef __ALTIVEC__ + return "AltiVec"; +#else return "SSE2"; +#endif case 2: return "AVX"; case 3: