Apply clang-format to source tree
[alexxy/gromacs.git] / src / gromacs / ewald / pme_simd.h
index 2e4475e346af87bc435239ea2b9c726950ec6603..03c03dfdd95624696058673255ac5b8719d36b4c 100644 (file)
 #endif
 
 #ifdef PME_SIMD4_SPREAD_GATHER
-#    define SIMD4_ALIGNMENT  (GMX_SIMD4_WIDTH*sizeof(real))
+#    define SIMD4_ALIGNMENT (GMX_SIMD4_WIDTH * sizeof(real))
 #else
 /* We can use any alignment, apart from 0, so we use 4 reals */
-#    define SIMD4_ALIGNMENT  (4*sizeof(real))
+#    define SIMD4_ALIGNMENT (4 * sizeof(real))
 #endif
 
 /* Check if we can use SIMD with packs of 4 for gather with order 4 */
 #if GMX_SIMD_HAVE_4NSIMD_UTIL_REAL && GMX_SIMD_REAL_WIDTH <= 16
-#    define PME_4NSIMD_GATHER  1
+#    define PME_4NSIMD_GATHER 1
 #else
-#    define PME_4NSIMD_GATHER  0
+#    define PME_4NSIMD_GATHER 0
 #endif
 
 #endif