aboutsummaryrefslogtreecommitdiff
path: root/src/ReductionNorm2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ReductionNorm2.c')
-rw-r--r--src/ReductionNorm2.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/ReductionNorm2.c b/src/ReductionNorm2.c
index 5eb9c3b..d94c55d 100644
--- a/src/ReductionNorm2.c
+++ b/src/ReductionNorm2.c
@@ -251,7 +251,7 @@ static int ReductionNorm2 (const cGH *GH,
CCTK_INT, outvals, num_outvals, total_outvals);
break;
-#ifdef CCTK_INT1
+#ifdef HAVE_CCTK_INT1
case CCTK_VARIABLE_INT1:
ITERATE_ARRAY (CCTK_INT1, num_dims, inarrays[i],
from, to, iterator, points_per_dim,
@@ -259,7 +259,7 @@ static int ReductionNorm2 (const cGH *GH,
break;
#endif
-#ifdef CCTK_INT2
+#ifdef HAVE_CCTK_INT2
case CCTK_VARIABLE_INT2:
ITERATE_ARRAY (CCTK_INT2, num_dims, inarrays[i],
from, to, iterator, points_per_dim,
@@ -267,7 +267,7 @@ static int ReductionNorm2 (const cGH *GH,
break;
#endif
-#ifdef CCTK_INT4
+#ifdef HAVE_CCTK_INT4
case CCTK_VARIABLE_INT4:
ITERATE_ARRAY (CCTK_INT4, num_dims, inarrays[i],
from, to, iterator, points_per_dim,
@@ -275,7 +275,7 @@ static int ReductionNorm2 (const cGH *GH,
break;
#endif
-#ifdef CCTK_INT8
+#ifdef HAVE_CCTK_INT8
case CCTK_VARIABLE_INT8:
ITERATE_ARRAY (CCTK_INT8, num_dims, inarrays[i],
from, to, iterator, points_per_dim,
@@ -289,7 +289,7 @@ static int ReductionNorm2 (const cGH *GH,
CCTK_REAL, outvals, num_outvals, total_outvals);
break;
-#ifdef CCTK_REAL4
+#ifdef HAVE_CCTK_REAL4
case CCTK_VARIABLE_REAL4:
ITERATE_ARRAY (CCTK_REAL4, num_dims, inarrays[i],
from, to, iterator, points_per_dim,
@@ -297,7 +297,7 @@ static int ReductionNorm2 (const cGH *GH,
break;
#endif
-#ifdef CCTK_REAL8
+#ifdef HAVE_CCTK_REAL8
case CCTK_VARIABLE_REAL8:
ITERATE_ARRAY (CCTK_REAL8, num_dims, inarrays[i],
from, to, iterator, points_per_dim,
@@ -305,7 +305,7 @@ static int ReductionNorm2 (const cGH *GH,
break;
#endif
-#ifdef CCTK_REAL16
+#ifdef HAVE_CCTK_REAL16
case CCTK_VARIABLE_REAL16:
ITERATE_ARRAY (CCTK_REAL16, num_dims, inarrays[i],
from, to, iterator, points_per_dim,
@@ -322,21 +322,21 @@ static int ReductionNorm2 (const cGH *GH,
CCTK_REAL, outvals, num_outvals, total_outvals);
break;
-#ifdef CCTK_REAL4
+#ifdef HAVE_CCTK_REAL4
ITERATE_ARRAY (CCTK_COMPLEX8, num_dims, inarrays[i],
from, to, iterator, points_per_dim,
CCTK_REAL4, outvals, num_outvals, total_outvals);
break;
#endif
-#ifdef CCTK_REAL8
+#ifdef HAVE_CCTK_REAL8
ITERATE_ARRAY (CCTK_COMPLEX16, num_dims, inarrays[i],
from, to, iterator, points_per_dim,
CCTK_REAL8, outvals, num_outvals, total_outvals);
break;
#endif
-#ifdef CCTK_REAL16
+#ifdef HAVE_CCTK_REAL16
ITERATE_ARRAY (CCTK_COMPLEX32, num_dims, inarrays[i],
from, to, iterator, points_per_dim,
CCTK_REAL16, outvals, num_outvals, total_outvals);