aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryye00 <yye00@7daa882c-dc44-4453-834e-278d26b18e6a>2004-10-14 17:03:25 +0000
committeryye00 <yye00@7daa882c-dc44-4453-834e-278d26b18e6a>2004-10-14 17:03:25 +0000
commitcc6f10490615b4956e71a4e782e8dbcebcfc5747 (patch)
treecaf45972daadb574122930a6c9b3fd1828773dfc
parentb1d8b27b72b40628deddb18d4448701534e864e8 (diff)
changed mpi_operation to global_operation-better naming
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/LocalReduce/trunk@46 7daa882c-dc44-4453-834e-278d26b18e6a
-rw-r--r--src/Reduction.c4
-rw-r--r--src/ReductionAvg.c2
-rw-r--r--src/ReductionCount.c2
-rw-r--r--src/ReductionMax.c2
-rw-r--r--src/ReductionMin.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
-rw-r--r--src/ReductionSum.c2
11 files changed, 12 insertions, 12 deletions
diff --git a/src/Reduction.c b/src/Reduction.c
index 7333884..1ae4f50 100644
--- a/src/Reduction.c
+++ b/src/Reduction.c
@@ -1,9 +1,9 @@
/*@@
@file Reduction.c
@date Thu Apr 3 11:54:53 1997
- @author Thomas Radke, Paul Walker
+ @author Thomas Radke, Paul Walker, Yaakoub Y El Khamra
@desc
- Various MPI reduction operators.
+ Local Reduction operator
@enddesc
@version $Id$
@@*/
diff --git a/src/ReductionAvg.c b/src/ReductionAvg.c
index 279d6bb..0d3e615 100644
--- a/src/ReductionAvg.c
+++ b/src/ReductionAvg.c
@@ -1239,7 +1239,7 @@ static int ReductionAvg (int N_dims, int operator_handle,
if ( global_calling != 0)
{
ierr = Util_TableSetInt(param_table_handle, num_points, "num_points");
- ierr = Util_TableSetInt(param_table_handle, 3,"mpi_operation");
+ ierr = Util_TableSetInt(param_table_handle, 3,"global_operation");
ierr = Util_TableSetInt(param_table_handle, 0,"perform_division");
}
diff --git a/src/ReductionCount.c b/src/ReductionCount.c
index 9bf2262..a3db331 100644
--- a/src/ReductionCount.c
+++ b/src/ReductionCount.c
@@ -1237,7 +1237,7 @@ static int ReductionCount (int N_dims, int operator_handle,
if ( Util_TableQueryNKeys(param_table_handle) != 0)
{
ierr = Util_TableSetInt(param_table_handle, num_points, "num_points");
- ierr = Util_TableSetInt(param_table_handle, 3,"mpi_operation");
+ ierr = Util_TableSetInt(param_table_handle, 3,"global_operation");
ierr = Util_TableSetInt(param_table_handle, 1,"perform_division");
}
diff --git a/src/ReductionMax.c b/src/ReductionMax.c
index 0dff3ab..d86579d 100644
--- a/src/ReductionMax.c
+++ b/src/ReductionMax.c
@@ -1237,7 +1237,7 @@ static int ReductionMax (int N_dims, int operator_handle,
if ( Util_TableQueryNKeys(param_table_handle) != 0)
{
ierr = Util_TableSetInt(param_table_handle, num_points, "num_points");
- ierr = Util_TableSetInt(param_table_handle, 1,"mpi_operation");
+ ierr = Util_TableSetInt(param_table_handle, 1,"global_operation");
ierr = Util_TableSetInt(param_table_handle, 1,"perform_division");
}
diff --git a/src/ReductionMin.c b/src/ReductionMin.c
index 0d7fcc0..957cb1a 100644
--- a/src/ReductionMin.c
+++ b/src/ReductionMin.c
@@ -1237,7 +1237,7 @@ static int ReductionMin (int N_dims, int operator_handle,
if ( Util_TableQueryNKeys(param_table_handle) != 0)
{
ierr = Util_TableSetInt(param_table_handle, num_points, "num_points");
- ierr = Util_TableSetInt(param_table_handle, 2,"mpi_operation");
+ ierr = Util_TableSetInt(param_table_handle, 2,"global_operation");
ierr = Util_TableSetInt(param_table_handle, 1,"perform_division");
}
diff --git a/src/ReductionNorm1.c b/src/ReductionNorm1.c
index 9ca7160..eb7bc03 100644
--- a/src/ReductionNorm1.c
+++ b/src/ReductionNorm1.c
@@ -1281,7 +1281,7 @@ static int ReductionL1 (int N_dims, int operator_handle,
if ( global_calling != 0)
{
ierr = Util_TableSetInt(param_table_handle, num_points, "num_points");
- ierr = Util_TableSetInt(param_table_handle, 3,"mpi_operation");
+ ierr = Util_TableSetInt(param_table_handle, 3,"global_operation");
ierr = Util_TableSetInt(param_table_handle, 0,"perform_division");
}
else
diff --git a/src/ReductionNorm2.c b/src/ReductionNorm2.c
index fe188e2..8ff2d02 100644
--- a/src/ReductionNorm2.c
+++ b/src/ReductionNorm2.c
@@ -1247,7 +1247,7 @@ static int ReductionL2 (int N_dims, int operator_handle,
if ( global_calling != 0)
{
ierr = Util_TableSetInt(param_table_handle, num_points, "num_points");
- ierr = Util_TableSetInt(param_table_handle, 3,"mpi_operation");
+ ierr = Util_TableSetInt(param_table_handle, 3,"global_operation");
ierr = Util_TableSetInt(param_table_handle, 0,"perform_division");
}
else
diff --git a/src/ReductionNorm3.c b/src/ReductionNorm3.c
index a116b72..7dd735d 100644
--- a/src/ReductionNorm3.c
+++ b/src/ReductionNorm3.c
@@ -1279,7 +1279,7 @@ static int ReductionL3 (int N_dims, int operator_handle,
if ( global_calling != 0)
{
ierr = Util_TableSetInt(param_table_handle, num_points, "num_points");
- ierr = Util_TableSetInt(param_table_handle, 3,"mpi_operation");
+ ierr = Util_TableSetInt(param_table_handle, 3,"global_operation");
ierr = Util_TableSetInt(param_table_handle, 0,"perform_division");
}
else
diff --git a/src/ReductionNorm4.c b/src/ReductionNorm4.c
index 7c8323b..56fc928 100644
--- a/src/ReductionNorm4.c
+++ b/src/ReductionNorm4.c
@@ -1244,7 +1244,7 @@ static int ReductionL4 (int N_dims, int operator_handle,
if ( global_calling != 0)
{
ierr = Util_TableSetInt(param_table_handle, num_points, "num_points");
- ierr = Util_TableSetInt(param_table_handle, 3,"mpi_operation");
+ ierr = Util_TableSetInt(param_table_handle, 3,"global_operation");
ierr = Util_TableSetInt(param_table_handle, 0,"perform_division");
}
else
diff --git a/src/ReductionNormInf.c b/src/ReductionNormInf.c
index 18354fc..3ffcc39 100644
--- a/src/ReductionNormInf.c
+++ b/src/ReductionNormInf.c
@@ -1291,7 +1291,7 @@ static int ReductionLInf (int N_dims, int operator_handle,
if ( global_calling != 0)
{
ierr = Util_TableSetInt(param_table_handle, num_points, "num_points");
- ierr = Util_TableSetInt(param_table_handle, 3,"mpi_operation");
+ ierr = Util_TableSetInt(param_table_handle, 3,"global_operation");
ierr = Util_TableSetInt(param_table_handle, 0,"perform_division");
}
else
diff --git a/src/ReductionSum.c b/src/ReductionSum.c
index c3134d4..43da67b 100644
--- a/src/ReductionSum.c
+++ b/src/ReductionSum.c
@@ -1237,7 +1237,7 @@ static int ReductionSum (int N_dims, int operator_handle,
if ( Util_TableQueryNKeys(param_table_handle) != 0)
{
ierr = Util_TableSetInt(param_table_handle, num_points, "num_points");
- ierr = Util_TableSetInt(param_table_handle, 3,"mpi_operation");
+ ierr = Util_TableSetInt(param_table_handle, 3,"global_operation");
ierr = Util_TableSetInt(param_table_handle, 1,"perform_division");
}