aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ReductionAvg.c2
-rw-r--r--src/ReductionNorm1.c2
-rw-r--r--src/ReductionNorm2.c2
-rw-r--r--src/ReductionNorm3.c2
-rw-r--r--src/ReductionNorm4.c2
-rw-r--r--src/ReductionNormInf.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/src/ReductionAvg.c b/src/ReductionAvg.c
index ac3f8ce..51db04b 100644
--- a/src/ReductionAvg.c
+++ b/src/ReductionAvg.c
@@ -1290,7 +1290,7 @@ static int ReductionAvg (int N_dims, int operator_handle,
break;
#endif
#ifdef CCTK_REAL16
- case CCTK_VARIABLE_REAL6:
+ case CCTK_VARIABLE_REAL16:
*( (CCTK_REAL16 *) output_numbers[i]) = *( (CCTK_REAL16 *) output_numbers[i]) / num_points;
break;
#endif
diff --git a/src/ReductionNorm1.c b/src/ReductionNorm1.c
index 1fb4942..b54952e 100644
--- a/src/ReductionNorm1.c
+++ b/src/ReductionNorm1.c
@@ -1331,7 +1331,7 @@ static int ReductionL1 (int N_dims, int operator_handle,
break;
#endif
#ifdef CCTK_REAL16
- case CCTK_VARIABLE_REAL6:
+ case CCTK_VARIABLE_REAL16:
*( (CCTK_REAL16 *) output_numbers[i]) = *( (CCTK_REAL16 *) output_numbers[i]) / num_points;
break;
#endif
diff --git a/src/ReductionNorm2.c b/src/ReductionNorm2.c
index 9cb1a4f..1b4217a 100644
--- a/src/ReductionNorm2.c
+++ b/src/ReductionNorm2.c
@@ -1297,7 +1297,7 @@ static int ReductionL2 (int N_dims, int operator_handle,
break;
#endif
#ifdef CCTK_REAL16
- case CCTK_VARIABLE_REAL6:
+ case CCTK_VARIABLE_REAL16:
*( (CCTK_REAL16 *) output_numbers[i]) = *( (CCTK_REAL16 *) output_numbers[i]) / num_points;
break;
#endif
diff --git a/src/ReductionNorm3.c b/src/ReductionNorm3.c
index be2e6df..07969d5 100644
--- a/src/ReductionNorm3.c
+++ b/src/ReductionNorm3.c
@@ -1329,7 +1329,7 @@ static int ReductionL3 (int N_dims, int operator_handle,
break;
#endif
#ifdef CCTK_REAL16
- case CCTK_VARIABLE_REAL6:
+ case CCTK_VARIABLE_REAL16:
*( (CCTK_REAL16 *) output_numbers[i]) = *( (CCTK_REAL16 *) output_numbers[i]) / num_points;
break;
#endif
diff --git a/src/ReductionNorm4.c b/src/ReductionNorm4.c
index b7520bf..4ad4882 100644
--- a/src/ReductionNorm4.c
+++ b/src/ReductionNorm4.c
@@ -1294,7 +1294,7 @@ static int ReductionL4 (int N_dims, int operator_handle,
break;
#endif
#ifdef CCTK_REAL16
- case CCTK_VARIABLE_REAL6:
+ case CCTK_VARIABLE_REAL16:
*( (CCTK_REAL16 *) output_numbers[i]) = *( (CCTK_REAL16 *) output_numbers[i]) / num_points;
break;
#endif
diff --git a/src/ReductionNormInf.c b/src/ReductionNormInf.c
index 3380e00..fbbad6b 100644
--- a/src/ReductionNormInf.c
+++ b/src/ReductionNormInf.c
@@ -1341,7 +1341,7 @@ static int ReductionLInf (int N_dims, int operator_handle,
break;
#endif
#ifdef CCTK_REAL16
- case CCTK_VARIABLE_REAL6:
+ case CCTK_VARIABLE_REAL16:
*( (CCTK_REAL16 *) output_numbers[i]) = *( (CCTK_REAL16 *) output_numbers[i]) / num_points;
break;
#endif