aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@b61c5cb5-eaca-4651-9a7a-d64986f99364>2000-11-27 14:12:42 +0000
committerallen <allen@b61c5cb5-eaca-4651-9a7a-d64986f99364>2000-11-27 14:12:42 +0000
commitb080c01bec4a397843e1a10722b9ec88a40540b7 (patch)
tree607f05a167296c92a74a38b2d5c7a48588f3bb60
parent1c61687c3e1c0014521abcbf3398bb01a816ee42 (diff)
Removing reduction operations from PUGH. They are now in a new thorn
PUGHReduce git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@285 b61c5cb5-eaca-4651-9a7a-d64986f99364
-rw-r--r--src/Startup.c14
-rw-r--r--src/make.code.defn4
2 files changed, 1 insertions, 17 deletions
diff --git a/src/Startup.c b/src/Startup.c
index 2fcabc2..3c93643 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -13,7 +13,6 @@
#include "pugh.h"
#include "pugh_extension.h"
#include "pugh_Comm.h"
-#include "pugh_reductions.h"
static char *rcsid="$Header$";
@@ -70,19 +69,6 @@ int PUGH_Startup(void)
CCTK_OverloadGroupDynamicData(PUGH_GroupDynamicData);
- /* Register the reduction operators provided by PUGH */
- CCTK_RegisterReductionOperator(PUGH_ReductionMinValGVs, "minimum");
- CCTK_RegisterReductionOperator(PUGH_ReductionMaxValGVs, "maximum");
- CCTK_RegisterReductionOperator(PUGH_ReductionSumGVs, "sum");
- CCTK_RegisterReductionOperator(PUGH_ReductionNorm1GVs, "norm1");
- CCTK_RegisterReductionOperator(PUGH_ReductionNorm2GVs, "norm2");
-
- CCTK_RegisterReductionArrayOperator(PUGH_ReductionMinValArrays, "minimum");
- CCTK_RegisterReductionArrayOperator(PUGH_ReductionMaxValArrays, "maximum");
- CCTK_RegisterReductionArrayOperator(PUGH_ReductionSumArrays, "sum");
- CCTK_RegisterReductionArrayOperator(PUGH_ReductionNorm1Arrays, "norm1");
- CCTK_RegisterReductionArrayOperator(PUGH_ReductionNorm2Arrays, "norm2");
-
/* Register the PUGH banner */
CCTK_RegisterBanner("Driver provided by PUGH");
diff --git a/src/make.code.defn b/src/make.code.defn
index 815dad2..3e9c6b4 100644
--- a/src/make.code.defn
+++ b/src/make.code.defn
@@ -3,6 +3,4 @@
# Source files in this directory
SRCS = Startup.c GHExtension.c Overloadables.c PughUtils.c LoadAware.c \
Evolve.c Comm.c Storage.c SetupPGH.c SetupGroup.c SetupPGV.c \
- PostSendGA.c PostReceiveGA.c FinishReceiveGA.c \
- Reduction.c ReductionSum.c ReductionNorm1.c ReductionNorm2.c \
- ReductionMin.c ReductionMax.c
+ PostSendGA.c PostReceiveGA.c FinishReceiveGA.c \ No newline at end of file