thorn_name
stringclasses
227 values
url
stringclasses
26 values
configuration
stringclasses
137 values
interface
stringclasses
225 values
param
stringclasses
220 values
schedule
stringclasses
223 values
src_filename
stringlengths
4
83
src_code
stringlengths
0
579k
EinsteinExact/Vaidya2
https://github.com/barrywardell/EinsteinExact.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: Vaidya2 inherits: admbase Boundary GenericFD Grid USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved SUBROUTINE Diff_coeff(CCTK_P...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD initial_data "initial_data" { "Vaidya2" :: "" } EXTENDS CCTK_KEYWORD initial_lapse "initial_lapse" { "Vaidya2" :: "" } EXTENDS CCTK_KEYWORD initial_shift "initial_shift" { "Vaidya2" :: "" } EXTENDS CCTK_KEYWORD initial_dtlapse "initial_dtl...
# File produced by Kranc STORAGE: metric_exact[other_timelevels] STORAGE: curv_exact[other_timelevels] STORAGE: lapse_exact[other_timelevels] STORAGE: dtlapse_exact[other_timelevels] STORAGE: shift_exact[other_timelevels] STORAGE: dtshift_exact[other_timelevels] schedule Vaidya2_Startup at STARTUP { LANG: C O...
Startup.cc
/* File produced by Kranc */ #include "cctk.h" extern "C" int Vaidya2_Startup(void) { const char* banner CCTK_ATTRIBUTE_UNUSED = "Vaidya2"; CCTK_RegisterBanner(banner); return 0; }
EinsteinExact/Vaidya2
https://github.com/barrywardell/EinsteinExact.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: Vaidya2 inherits: admbase Boundary GenericFD Grid USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved SUBROUTINE Diff_coeff(CCTK_P...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD initial_data "initial_data" { "Vaidya2" :: "" } EXTENDS CCTK_KEYWORD initial_lapse "initial_lapse" { "Vaidya2" :: "" } EXTENDS CCTK_KEYWORD initial_shift "initial_shift" { "Vaidya2" :: "" } EXTENDS CCTK_KEYWORD initial_dtlapse "initial_dtl...
# File produced by Kranc STORAGE: metric_exact[other_timelevels] STORAGE: curv_exact[other_timelevels] STORAGE: lapse_exact[other_timelevels] STORAGE: dtlapse_exact[other_timelevels] STORAGE: shift_exact[other_timelevels] STORAGE: dtshift_exact[other_timelevels] schedule Vaidya2_Startup at STARTUP { LANG: C O...
Vaidya2_always.cc
/* File produced by Kranc */ #define KRANC_C #include <algorithm> #include <assert.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Kranc.hh" #include "Differencing.h" #include "loopcontrol.h" namespa...
EinsteinExact/Vaidya2
https://github.com/barrywardell/EinsteinExact.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: Vaidya2 inherits: admbase Boundary GenericFD Grid USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved SUBROUTINE Diff_coeff(CCTK_P...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD initial_data "initial_data" { "Vaidya2" :: "" } EXTENDS CCTK_KEYWORD initial_lapse "initial_lapse" { "Vaidya2" :: "" } EXTENDS CCTK_KEYWORD initial_shift "initial_shift" { "Vaidya2" :: "" } EXTENDS CCTK_KEYWORD initial_dtlapse "initial_dtl...
# File produced by Kranc STORAGE: metric_exact[other_timelevels] STORAGE: curv_exact[other_timelevels] STORAGE: lapse_exact[other_timelevels] STORAGE: dtlapse_exact[other_timelevels] STORAGE: shift_exact[other_timelevels] STORAGE: dtshift_exact[other_timelevels] schedule Vaidya2_Startup at STARTUP { LANG: C O...
Boundaries.cc
/* File produced by Kranc */ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "cctk_Faces.h" #include "util_Table.h" #include "Symmetry.h" /* the boundary treatment is split into 3 steps: */ /* 1. excision */ /* 2. symmetries ...
ExternalLibraries/BLAS
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn BLAS PROVIDES BLAS { SCRIPT configure.sh LANG bash OPTIONS BLAS_DIR BLAS_INSTALL_DIR BLAS_LIBS }
# Interface definition for thorn BLAS IMPLEMENTS: BLAS
# Parameter definitions for thorn BLAS
# Schedule definitions for thorn BLAS
make.code.defn
# Main make.code.defn file for thorn BLAS # Source files in this directory SRCS = blas.F90 # Subdirectories containing source files SUBDIRS =
ExternalLibraries/BLAS
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn BLAS PROVIDES BLAS { SCRIPT configure.sh LANG bash OPTIONS BLAS_DIR BLAS_INSTALL_DIR BLAS_LIBS }
# Interface definition for thorn BLAS IMPLEMENTS: BLAS
# Parameter definitions for thorn BLAS
# Schedule definitions for thorn BLAS
blas.F90
module blas implicit none integer, parameter :: izero = 0 integer, parameter :: blas_integer_kind = kind(izero) interface gemm SUBROUTINE SGEMM(TRANSA,TRANSB,M,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC) IMPLICIT NONE REAL ALPHA,BETA INTEGER K,LDA,LDB,LDC,M,N CHARACTER TRANSA,TRAN...
ExternalLibraries/FFTW3
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn FFTW3 PROVIDES FFTW3 { SCRIPT src/detect.sh LANG bash OPTIONS FFTW3_DIR FFTW3_INSTALL_DIR FFTW3_LIBS FFTW3_INC_DIRS FFTW3_LIB_DIRS } # Pass configuration options to build script REQUIRES FFTW3
# Interface definition for thorn FFTW3 IMPLEMENTS: FFTW3
# Parameter definitions for thorn FFTW3
# Schedule definitions for thorn FFTW3
detect.sh
#! /bin/bash ################################################################################ # Prepare ################################################################################ # Set up shell if [ "$(echo ${VERBOSE} | tr '[:upper:]' '[:lower:]')" = 'yes' ]; then set -x # Output comman...
ExternalLibraries/FFTW3
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn FFTW3 PROVIDES FFTW3 { SCRIPT src/detect.sh LANG bash OPTIONS FFTW3_DIR FFTW3_INSTALL_DIR FFTW3_LIBS FFTW3_INC_DIRS FFTW3_LIB_DIRS } # Pass configuration options to build script REQUIRES FFTW3
# Interface definition for thorn FFTW3 IMPLEMENTS: FFTW3
# Parameter definitions for thorn FFTW3
# Schedule definitions for thorn FFTW3
build.sh
#! /bin/bash ################################################################################ # Build ################################################################################ # Set up shell if [ "$(echo ${VERBOSE} | tr '[:upper:]' '[:lower:]')" = 'yes' ]; then set -x # Output commands...
ExternalLibraries/FFTW3
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn FFTW3 PROVIDES FFTW3 { SCRIPT src/detect.sh LANG bash OPTIONS FFTW3_DIR FFTW3_INSTALL_DIR FFTW3_LIBS FFTW3_INC_DIRS FFTW3_LIB_DIRS } # Pass configuration options to build script REQUIRES FFTW3
# Interface definition for thorn FFTW3 IMPLEMENTS: FFTW3
# Parameter definitions for thorn FFTW3
# Schedule definitions for thorn FFTW3
make.code.defn
# Main make.code.defn file for thorn FFTW3 # Source files in this directory SRCS = # Subdirectories containing source files SUBDIRS =
ExternalLibraries/FFTW3
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn FFTW3 PROVIDES FFTW3 { SCRIPT src/detect.sh LANG bash OPTIONS FFTW3_DIR FFTW3_INSTALL_DIR FFTW3_LIBS FFTW3_INC_DIRS FFTW3_LIB_DIRS } # Pass configuration options to build script REQUIRES FFTW3
# Interface definition for thorn FFTW3 IMPLEMENTS: FFTW3
# Parameter definitions for thorn FFTW3
# Schedule definitions for thorn FFTW3
make.code.deps
# Main make.code.deps file for thorn FFTW3 export FFTW3_INSTALL_DIR $(CCTK_TARGET) $(OBJS) $(SRCS:%=%.d): $(SCRATCH_BUILD)/done/$(THORN) ifneq ($(FFTW3_BUILD),) $(SCRATCH_BUILD)/done/$(THORN): $(SRCDIR)/build.sh +$(SRCDIR)/build.sh endif
ExternalLibraries/GSL
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn GSL PROVIDES GSL { SCRIPT src/detect.sh LANG bash OPTIONS GSL_DIR GSL_INSTALL_DIR GSL_LIBS } # Pass configuration options to build script REQUIRES GSL
# Interface definition for thorn GSL IMPLEMENTS: GSL
# Parameter definitions for thorn GSL
# Schedule definitions for thorn GSL
detect.sh
#! /bin/bash ################################################################################ # Prepare ################################################################################ # Set up shell if [ "$(echo ${VERBOSE} | tr '[:upper:]' '[:lower:]')" = 'yes' ]; then set -x # Output comman...
ExternalLibraries/GSL
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn GSL PROVIDES GSL { SCRIPT src/detect.sh LANG bash OPTIONS GSL_DIR GSL_INSTALL_DIR GSL_LIBS } # Pass configuration options to build script REQUIRES GSL
# Interface definition for thorn GSL IMPLEMENTS: GSL
# Parameter definitions for thorn GSL
# Schedule definitions for thorn GSL
build.sh
#! /bin/bash ################################################################################ # Build ################################################################################ # Set up shell if [ "$(echo ${VERBOSE} | tr '[:upper:]' '[:lower:]')" = 'yes' ]; then set -x # Output commands...
ExternalLibraries/GSL
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn GSL PROVIDES GSL { SCRIPT src/detect.sh LANG bash OPTIONS GSL_DIR GSL_INSTALL_DIR GSL_LIBS } # Pass configuration options to build script REQUIRES GSL
# Interface definition for thorn GSL IMPLEMENTS: GSL
# Parameter definitions for thorn GSL
# Schedule definitions for thorn GSL
make.code.defn
# Main make.code.defn file for thorn GSL # Source files in this directory SRCS = # Subdirectories containing source files SUBDIRS =
ExternalLibraries/GSL
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn GSL PROVIDES GSL { SCRIPT src/detect.sh LANG bash OPTIONS GSL_DIR GSL_INSTALL_DIR GSL_LIBS } # Pass configuration options to build script REQUIRES GSL
# Interface definition for thorn GSL IMPLEMENTS: GSL
# Parameter definitions for thorn GSL
# Schedule definitions for thorn GSL
make.code.deps
# Main make.code.deps file for thorn GSL export GSL_INSTALL_DIR $(CCTK_TARGET) $(OBJS) $(SRCS:%=%.d): $(SCRATCH_BUILD)/done/$(THORN) ifneq ($(GSL_BUILD),) $(SCRATCH_BUILD)/done/$(THORN): $(SRCDIR)/build.sh +$(SRCDIR)/build.sh endif
ExternalLibraries/HDF5
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn HDF5 PROVIDES HDF5 { SCRIPT src/detect.sh LANG bash OPTIONS HDF5 HDF5_DIR HDF5_INSTALL_DIR HDF5_ENABLE_CXX HDF5_ENABLE_FORTRAN ZLIB_DIR LIBSZ_DIR LIBZ_DIR HDF5_INC_DIRS HDF5_LIB_DIRS HDF5_LIBS } # Pass configuration options to build script REQUIRES HDF5 REQUIRES zlib # HD...
# Interface definition for thorn HDF5 IMPLEMENTS: HDF5
# Parameter definitions for thorn HDF5
# Schedule definitions for thorn HDF5
make.configuration.defn
# make.configuration.defn file for thorn HDF5 # Define standard HDF5 utilities and install those that we could build/that are # present in the system STD_HDF5_UTILS = gif2h5 h52gif h5copy h5debug h5diff h5dump h5import h5jam h5ls h5mkgrp h5perf_serial h5redeploy h5repack h5repart h5stat h5unjam ALL_UTILS += $(shell cd...
ExternalLibraries/HDF5
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn HDF5 PROVIDES HDF5 { SCRIPT src/detect.sh LANG bash OPTIONS HDF5 HDF5_DIR HDF5_INSTALL_DIR HDF5_ENABLE_CXX HDF5_ENABLE_FORTRAN ZLIB_DIR LIBSZ_DIR LIBZ_DIR HDF5_INC_DIRS HDF5_LIB_DIRS HDF5_LIBS } # Pass configuration options to build script REQUIRES HDF5 REQUIRES zlib # HD...
# Interface definition for thorn HDF5 IMPLEMENTS: HDF5
# Parameter definitions for thorn HDF5
# Schedule definitions for thorn HDF5
make.configuration.deps
# make.configuration.deps file for thorn HDF5 # Standard HDF5 utilities are copied from the install directory $(UTIL_DIR)/%: $(HDF5_DIR)/bin/% @echo "Copying $* from $< to $(UTIL_DIR)" -$(MKDIR) $(MKDIRFLAGS) $(UTIL_DIR) 2> /dev/null cp $< $@ # Cactus HDF5 utilities are built HDF5_BUILD_DIR = $(BUILD_DIR)/HDF5...
ExternalLibraries/HDF5
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn HDF5 PROVIDES HDF5 { SCRIPT src/detect.sh LANG bash OPTIONS HDF5 HDF5_DIR HDF5_INSTALL_DIR HDF5_ENABLE_CXX HDF5_ENABLE_FORTRAN ZLIB_DIR LIBSZ_DIR LIBZ_DIR HDF5_INC_DIRS HDF5_LIB_DIRS HDF5_LIBS } # Pass configuration options to build script REQUIRES HDF5 REQUIRES zlib # HD...
# Interface definition for thorn HDF5 IMPLEMENTS: HDF5
# Parameter definitions for thorn HDF5
# Schedule definitions for thorn HDF5
detect.sh
#! /bin/bash ################################################################################ # Prepare ################################################################################ # Set up shell if [ "$(echo ${VERBOSE} | tr '[:upper:]' '[:lower:]')" = 'yes' ]; then set -x # Output comman...
ExternalLibraries/HDF5
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn HDF5 PROVIDES HDF5 { SCRIPT src/detect.sh LANG bash OPTIONS HDF5 HDF5_DIR HDF5_INSTALL_DIR HDF5_ENABLE_CXX HDF5_ENABLE_FORTRAN ZLIB_DIR LIBSZ_DIR LIBZ_DIR HDF5_INC_DIRS HDF5_LIB_DIRS HDF5_LIBS } # Pass configuration options to build script REQUIRES HDF5 REQUIRES zlib # HD...
# Interface definition for thorn HDF5 IMPLEMENTS: HDF5
# Parameter definitions for thorn HDF5
# Schedule definitions for thorn HDF5
build.sh
#! /bin/bash ################################################################################ # Build ################################################################################ # Set up shell if [ "$(echo ${VERBOSE} | tr '[:upper:]' '[:lower:]')" = 'yes' ]; then set -x # Output commands...
ExternalLibraries/HDF5
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn HDF5 PROVIDES HDF5 { SCRIPT src/detect.sh LANG bash OPTIONS HDF5 HDF5_DIR HDF5_INSTALL_DIR HDF5_ENABLE_CXX HDF5_ENABLE_FORTRAN ZLIB_DIR LIBSZ_DIR LIBZ_DIR HDF5_INC_DIRS HDF5_LIB_DIRS HDF5_LIBS } # Pass configuration options to build script REQUIRES HDF5 REQUIRES zlib # HD...
# Interface definition for thorn HDF5 IMPLEMENTS: HDF5
# Parameter definitions for thorn HDF5
# Schedule definitions for thorn HDF5
make.code.defn
# Main make.code.defn file for thorn HDF5 # Source files in this directory SRCS = # Subdirectories containing source files SUBDIRS =
ExternalLibraries/HDF5
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn HDF5 PROVIDES HDF5 { SCRIPT src/detect.sh LANG bash OPTIONS HDF5 HDF5_DIR HDF5_INSTALL_DIR HDF5_ENABLE_CXX HDF5_ENABLE_FORTRAN ZLIB_DIR LIBSZ_DIR LIBZ_DIR HDF5_INC_DIRS HDF5_LIB_DIRS HDF5_LIBS } # Pass configuration options to build script REQUIRES HDF5 REQUIRES zlib # HD...
# Interface definition for thorn HDF5 IMPLEMENTS: HDF5
# Parameter definitions for thorn HDF5
# Schedule definitions for thorn HDF5
make.code.deps
# Main make.code.deps file for thorn HDF5 export ZLIB_DIR ZLIB_INC_DIRS ZLIB_LIB_DIRS ZLIB_LIBS export HDF5_ENABLE_CXX HDF5_ENABLE_FORTRAN export LIBSZ_DIR LIBZ_DIR export HDF5_INSTALL_DIR $(CCTK_TARGET) $(OBJS) $(SRCS:%=%.d): $(SCRATCH_BUILD)/done/$(THORN) ifneq ($(HDF5_BUILD),) $(SCRATCH_BUILD)/done/$(THORN): $(S...
ExternalLibraries/HDF5
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn HDF5 PROVIDES HDF5 { SCRIPT src/detect.sh LANG bash OPTIONS HDF5 HDF5_DIR HDF5_INSTALL_DIR HDF5_ENABLE_CXX HDF5_ENABLE_FORTRAN ZLIB_DIR LIBSZ_DIR LIBZ_DIR HDF5_INC_DIRS HDF5_LIB_DIRS HDF5_LIBS } # Pass configuration options to build script REQUIRES HDF5 REQUIRES zlib # HD...
# Interface definition for thorn HDF5 IMPLEMENTS: HDF5
# Parameter definitions for thorn HDF5
# Schedule definitions for thorn HDF5
util/hdf5_merge.c
/*@@ @file hdf5_merge.c @date Thu 10 Jan 2002 @author Thomas Radke @desc This utility program takes a list of Cactus HDF5 datafiles, merges them at the group hierarchy level and dumps the resulting tree to a new HDF5 file. @enddesc @version $Id: hdf5_mer...
ExternalLibraries/HDF5
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn HDF5 PROVIDES HDF5 { SCRIPT src/detect.sh LANG bash OPTIONS HDF5 HDF5_DIR HDF5_INSTALL_DIR HDF5_ENABLE_CXX HDF5_ENABLE_FORTRAN ZLIB_DIR LIBSZ_DIR LIBZ_DIR HDF5_INC_DIRS HDF5_LIB_DIRS HDF5_LIBS } # Pass configuration options to build script REQUIRES HDF5 REQUIRES zlib # HD...
# Interface definition for thorn HDF5 IMPLEMENTS: HDF5
# Parameter definitions for thorn HDF5
# Schedule definitions for thorn HDF5
util/hdf5_double_to_single.c
/*@@ @file hdf5_double_to_single.c @date Thu 10 Jan 2002 @author Thomas Radke @desc This utility program copies a Cactus HDF5 datafile reverting double-precision datasets into single-precision. @enddesc @version $Id: hdf5_double_to_single.c,v 1.3 2009/09/29 14:38:14 ...
ExternalLibraries/HDF5
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn HDF5 PROVIDES HDF5 { SCRIPT src/detect.sh LANG bash OPTIONS HDF5 HDF5_DIR HDF5_INSTALL_DIR HDF5_ENABLE_CXX HDF5_ENABLE_FORTRAN ZLIB_DIR LIBSZ_DIR LIBZ_DIR HDF5_INC_DIRS HDF5_LIB_DIRS HDF5_LIBS } # Pass configuration options to build script REQUIRES HDF5 REQUIRES zlib # HD...
# Interface definition for thorn HDF5 IMPLEMENTS: HDF5
# Parameter definitions for thorn HDF5
# Schedule definitions for thorn HDF5
util/hdf5_extract.c
/*@@ @file hdf5_extract.c @date Thu 19 Feb 2002 @author Thomas Radke @desc This utility program extracts objects from an HDF5 file and writes them into a new one. @enddesc @version $Id: hdf5_extract.c,v 1.3 2009/09/29 14:38:14 schnetter Exp $ @@*/ #include "cctk.h" ...
ExternalLibraries/hwloc
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn hwloc REQUIRES zlib OPTIONAL pciutils { } PROVIDES hwloc { SCRIPT src/detect.sh LANG bash OPTIONS HWLOC_DIR HWLOC_EXTRA_LIBS HWLOC_INSTALL_DIR } REQUIRES hwloc
# Interface definition for thorn hwloc IMPLEMENTS: hwloc
# Parameter definitions for thorn hwloc
# Schedule definitions for thorn hwloc #SCHEDULE hwloc_lstopo AT startup #{ # LANG: C #} "Output hardware locality information"
make.configuration.defn
# make.configuration.defn file for thorn hwloc # Define the hwloc utilities STD_HWLOC_UTILS = hwloc-assembler hwloc-assembler-remote hwloc-bind hwloc-calc hwloc-distances hwloc-distrib hwloc-info hwloc-ls hwloc-ps lstopo lstopo-no-graphics ALL_UTILS += $(filter $(STD_HWLOC_UTILS), $(notdir $(wildcard $(HWLOC_DIR)/bin/...
ExternalLibraries/hwloc
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn hwloc REQUIRES zlib OPTIONAL pciutils { } PROVIDES hwloc { SCRIPT src/detect.sh LANG bash OPTIONS HWLOC_DIR HWLOC_EXTRA_LIBS HWLOC_INSTALL_DIR } REQUIRES hwloc
# Interface definition for thorn hwloc IMPLEMENTS: hwloc
# Parameter definitions for thorn hwloc
# Schedule definitions for thorn hwloc #SCHEDULE hwloc_lstopo AT startup #{ # LANG: C #} "Output hardware locality information"
make.configuration.deps
# make.configuration.deps file for thorn hwloc # The hwloc utilities are copied from the install directory $(UTIL_DIR)/%: $(HWLOC_DIR)/bin/% @echo "Copying $* from $< to $(UTIL_DIR)" -$(MKDIR) $(MKDIRFLAGS) $(UTIL_DIR) 2> /dev/null cp $< $@
ExternalLibraries/hwloc
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn hwloc REQUIRES zlib OPTIONAL pciutils { } PROVIDES hwloc { SCRIPT src/detect.sh LANG bash OPTIONS HWLOC_DIR HWLOC_EXTRA_LIBS HWLOC_INSTALL_DIR } REQUIRES hwloc
# Interface definition for thorn hwloc IMPLEMENTS: hwloc
# Parameter definitions for thorn hwloc
# Schedule definitions for thorn hwloc #SCHEDULE hwloc_lstopo AT startup #{ # LANG: C #} "Output hardware locality information"
detect.sh
#! /bin/bash ################################################################################ # Prepare ################################################################################ # Set up shell if [ "$(echo ${VERBOSE} | tr '[:upper:]' '[:lower:]')" = 'yes' ]; then set -x # Output comman...
ExternalLibraries/hwloc
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn hwloc REQUIRES zlib OPTIONAL pciutils { } PROVIDES hwloc { SCRIPT src/detect.sh LANG bash OPTIONS HWLOC_DIR HWLOC_EXTRA_LIBS HWLOC_INSTALL_DIR } REQUIRES hwloc
# Interface definition for thorn hwloc IMPLEMENTS: hwloc
# Parameter definitions for thorn hwloc
# Schedule definitions for thorn hwloc #SCHEDULE hwloc_lstopo AT startup #{ # LANG: C #} "Output hardware locality information"
build.sh
#! /bin/bash ################################################################################ # Build ################################################################################ # Set up shell if [ "$(echo ${VERBOSE} | tr '[:upper:]' '[:lower:]')" = 'yes' ]; then set -x # Output commands...
ExternalLibraries/hwloc
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn hwloc REQUIRES zlib OPTIONAL pciutils { } PROVIDES hwloc { SCRIPT src/detect.sh LANG bash OPTIONS HWLOC_DIR HWLOC_EXTRA_LIBS HWLOC_INSTALL_DIR } REQUIRES hwloc
# Interface definition for thorn hwloc IMPLEMENTS: hwloc
# Parameter definitions for thorn hwloc
# Schedule definitions for thorn hwloc #SCHEDULE hwloc_lstopo AT startup #{ # LANG: C #} "Output hardware locality information"
make.code.defn
# Main make.code.defn file for thorn hwloc CFLAGS += -DHWLOC_UTILPATH='$(CCTK_HOME)/exe/$(notdir $(TOP))' # Source files in this directory SRCS = # lstopo.c # Subdirectories containing source files SUBDIRS =
ExternalLibraries/hwloc
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn hwloc REQUIRES zlib OPTIONAL pciutils { } PROVIDES hwloc { SCRIPT src/detect.sh LANG bash OPTIONS HWLOC_DIR HWLOC_EXTRA_LIBS HWLOC_INSTALL_DIR } REQUIRES hwloc
# Interface definition for thorn hwloc IMPLEMENTS: hwloc
# Parameter definitions for thorn hwloc
# Schedule definitions for thorn hwloc #SCHEDULE hwloc_lstopo AT startup #{ # LANG: C #} "Output hardware locality information"
make.code.deps
# Main make.code.deps file for thorn HWLOC export HWLOC_INSTALL_DIR $(CCTK_TARGET) $(OBJS) $(SRCS:%=%.d): $(SCRATCH_BUILD)/done/$(THORN) ifneq ($(HWLOC_BUILD),) $(SCRATCH_BUILD)/done/$(THORN): $(SRCDIR)/build.sh +$(SRCDIR)/build.sh endif
ExternalLibraries/hwloc
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn hwloc REQUIRES zlib OPTIONAL pciutils { } PROVIDES hwloc { SCRIPT src/detect.sh LANG bash OPTIONS HWLOC_DIR HWLOC_EXTRA_LIBS HWLOC_INSTALL_DIR } REQUIRES hwloc
# Interface definition for thorn hwloc IMPLEMENTS: hwloc
# Parameter definitions for thorn hwloc
# Schedule definitions for thorn hwloc #SCHEDULE hwloc_lstopo AT startup #{ # LANG: C #} "Output hardware locality information"
lstopo.c
#include <cctk.h> #include <stdlib.h> #define XSTR(x) #x #define STR(x) XSTR(x) int hwloc_lstopo(void) { if (CCTK_MyProc(NULL) == 0) { CCTK_INFO("Hardware locality information:"); CCTK_INFO(STR(HWLOC_UTILPATH) "/lstopo -v"); system(STR(HWLOC_UTILPATH) "/lstopo -v"); } return 0; }
ExternalLibraries/LAPACK
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn LAPACK PROVIDES LAPACK { SCRIPT configure.sh LANG bash OPTIONS LAPACK_DIR LAPACK_INC_DIRS LAPACK_LIB_DIRS LAPACK_LIBS LAPACK_INSTALL_DIR } REQUIRES BLAS
# Interface definition for thorn LAPACK IMPLEMENTS: LAPACK
# Parameter definitions for thorn LAPACK
# Schedule definitions for thorn LAPACK
lapack.F90
module lapack implicit none integer, parameter :: izero = 0 integer, parameter :: lapack_integer_kind = kind(izero) interface geev SUBROUTINE SGEEV( JOBVL, JOBVR, N, A, LDA, WR, WI, VL, LDVL, VR, & LDVR, WORK, LWORK, INFO ) IMPLICIT NONE CHARACTER JOBVL, JOBVR ...
ExternalLibraries/LAPACK
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn LAPACK PROVIDES LAPACK { SCRIPT configure.sh LANG bash OPTIONS LAPACK_DIR LAPACK_INC_DIRS LAPACK_LIB_DIRS LAPACK_LIBS LAPACK_INSTALL_DIR } REQUIRES BLAS
# Interface definition for thorn LAPACK IMPLEMENTS: LAPACK
# Parameter definitions for thorn LAPACK
# Schedule definitions for thorn LAPACK
make.code.defn
# Main make.code.defn file for thorn LAPACK # Source files in this directory SRCS = lapack.F90 # Subdirectories containing source files SUBDIRS =
ExternalLibraries/libjpeg
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn libjpeg PROVIDES libjpeg { SCRIPT configure.sh LANG bash OPTIONS LIBJPEG_INSTALL_DIR LIBJPEG_DIR }
# Interface definition for thorn libjpeg IMPLEMENTS: libjpeg
# Parameter definitions for thorn libjpeg
# Schedule definitions for thorn libjpeg
make.code.defn
# Main make.code.defn file for thorn libjpeg # Source files in this directory SRCS = # Subdirectories containing source files SUBDIRS =
ExternalLibraries/LORENE
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn LORENE PROVIDES LORENE { SCRIPT src/detect.sh VERSION 2014-04-18-ET1 LANG bash OPTIONS LORENE_DIR LORENE_EXTRA_LIB_DIRS LORENE_EXTRA_LIBS LORENE_INSTALL_DIR } REQUIRES BLAS LAPACK GSL REQUIRES LORENE
# Interface definition for thorn LORENE IMPLEMENTS: LORENE
# Parameter definitions for thorn LORENE
# Schedule definitions for thorn LORENE
detect.sh
#! /bin/bash ################################################################################ # Prepare ################################################################################ # Set up shell if [ "$(echo ${VERBOSE} | tr '[:upper:]' '[:lower:]')" = 'yes' ]; then set -x # Output comman...
ExternalLibraries/LORENE
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn LORENE PROVIDES LORENE { SCRIPT src/detect.sh VERSION 2014-04-18-ET1 LANG bash OPTIONS LORENE_DIR LORENE_EXTRA_LIB_DIRS LORENE_EXTRA_LIBS LORENE_INSTALL_DIR } REQUIRES BLAS LAPACK GSL REQUIRES LORENE
# Interface definition for thorn LORENE IMPLEMENTS: LORENE
# Parameter definitions for thorn LORENE
# Schedule definitions for thorn LORENE
build.sh
#! /bin/bash ################################################################################ # Prepare ################################################################################ # Set up shell if [ "$(echo ${VERBOSE} | tr '[:upper:]' '[:lower:]')" = 'yes' ]; then set -x # Output comman...
ExternalLibraries/LORENE
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn LORENE PROVIDES LORENE { SCRIPT src/detect.sh VERSION 2014-04-18-ET1 LANG bash OPTIONS LORENE_DIR LORENE_EXTRA_LIB_DIRS LORENE_EXTRA_LIBS LORENE_INSTALL_DIR } REQUIRES BLAS LAPACK GSL REQUIRES LORENE
# Interface definition for thorn LORENE IMPLEMENTS: LORENE
# Parameter definitions for thorn LORENE
# Schedule definitions for thorn LORENE
make.code.defn
# Main make.code.defn file for thorn LORENE # Source files in this directory SRCS = # Subdirectories containing source files SUBDIRS =
ExternalLibraries/LORENE
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn LORENE PROVIDES LORENE { SCRIPT src/detect.sh VERSION 2014-04-18-ET1 LANG bash OPTIONS LORENE_DIR LORENE_EXTRA_LIB_DIRS LORENE_EXTRA_LIBS LORENE_INSTALL_DIR } REQUIRES BLAS LAPACK GSL REQUIRES LORENE
# Interface definition for thorn LORENE IMPLEMENTS: LORENE
# Parameter definitions for thorn LORENE
# Schedule definitions for thorn LORENE
make.code.deps
# Main make.code.deps file for thorn LORENE export BLAS_DIR BLAS_INC_DIRS BLAS_LIB_DIRS BLAS_LIBS export GSL_DIR GSL_INC_DIRS GSL_LIB_DIRS GSL_LIBS export LAPACK_DIR LAPACK_INC_DIRS LAPACK_LIB_DIRS LAPACK_LIBS export LORENE_EXTRA_LIB_DIRS LORENE_EXTRA_LIBS export LORENE_INSTALL_DIR $(CCTK_TARGET) $(OBJS) $(SRCS:%=%....
ExternalLibraries/MPI
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn MPI PROVIDES MPI { SCRIPT src/detect.pl LANG perl OPTIONS MPI MPI_DIR MPI_INC_DIRS MPI_LIB_DIRS MPI_LIBS MPI_INSTALL_DIR HWLOC_DIR } # Pass configuration options to build script REQUIRES MPI OPTIONAL hwloc { }
# Interface definition for thorn MPI IMPLEMENTS: MPI
# Parameter definitions for thorn MPI
# Schedule definitions for thorn MPI
make.configuration.defn
# make.configuration.defn file for thorn MPI # Define the relevant OpenMPI utilities STD_MPI_UTILS = mpirun ompi-clean ompi-iof ompi-probe ompi-profiler ompi-ps ompi-server ompi-top ompi_info ALL_UTILS += $(shell cd $(MPI_DIR)/bin 2>/dev/null && ls $(STD_MPI_UTILS:%=%*) 2>/dev/null)
ExternalLibraries/MPI
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn MPI PROVIDES MPI { SCRIPT src/detect.pl LANG perl OPTIONS MPI MPI_DIR MPI_INC_DIRS MPI_LIB_DIRS MPI_LIBS MPI_INSTALL_DIR HWLOC_DIR } # Pass configuration options to build script REQUIRES MPI OPTIONAL hwloc { }
# Interface definition for thorn MPI IMPLEMENTS: MPI
# Parameter definitions for thorn MPI
# Schedule definitions for thorn MPI
build.pl
#!/usr/bin/perl use Carp; use strict; use FileHandle; use Cwd; $/ = undef; # Set locations my $THORN = "MPI"; my $NAME = "openmpi-1.10.1"; my $INSTALL_DIR = undef; my $BUILD_DIR = undef; my $SRCDIR = $0; $SRCDIR =~ s{(.*)/.*}{$1}; ${BUILD_DIR} = "$ENV{SCRATCH_BUILD}/build/${THORN}"; if (defined($ENV{MPI_INSTALL_DIR}) ...
ExternalLibraries/MPI
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn MPI PROVIDES MPI { SCRIPT src/detect.pl LANG perl OPTIONS MPI MPI_DIR MPI_INC_DIRS MPI_LIB_DIRS MPI_LIBS MPI_INSTALL_DIR HWLOC_DIR } # Pass configuration options to build script REQUIRES MPI OPTIONAL hwloc { }
# Interface definition for thorn MPI IMPLEMENTS: MPI
# Parameter definitions for thorn MPI
# Schedule definitions for thorn MPI
make.configuration.deps
# make.configuration.deps file for thorn MPI $(UTIL_DIR)/%: $(MPI_DIR)/bin/% @echo "Copying $* from $< to $(UTIL_DIR)" -$(MKDIR) $(MKDIRFLAGS) $(UTIL_DIR) 2> /dev/null cp $< $@
ExternalLibraries/MPI
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn MPI PROVIDES MPI { SCRIPT src/detect.pl LANG perl OPTIONS MPI MPI_DIR MPI_INC_DIRS MPI_LIB_DIRS MPI_LIBS MPI_INSTALL_DIR HWLOC_DIR } # Pass configuration options to build script REQUIRES MPI OPTIONAL hwloc { }
# Interface definition for thorn MPI IMPLEMENTS: MPI
# Parameter definitions for thorn MPI
# Schedule definitions for thorn MPI
make.code.defn
# Main make.code.defn file for thorn MPI # Source files in this directory SRCS = # Subdirectories containing source files SUBDIRS =
ExternalLibraries/MPI
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn MPI PROVIDES MPI { SCRIPT src/detect.pl LANG perl OPTIONS MPI MPI_DIR MPI_INC_DIRS MPI_LIB_DIRS MPI_LIBS MPI_INSTALL_DIR HWLOC_DIR } # Pass configuration options to build script REQUIRES MPI OPTIONAL hwloc { }
# Interface definition for thorn MPI IMPLEMENTS: MPI
# Parameter definitions for thorn MPI
# Schedule definitions for thorn MPI
make.code.deps
# Main make.code.deps file for thorn MPI export MPI_INSTALL_DIR HWLOC_DIR $(CCTK_TARGET) $(OBJS) $(SRCS:%=%.d): $(SCRATCH_BUILD)/done/$(THORN) ifneq ($(MPI_BUILD),) $(SCRATCH_BUILD)/done/$(THORN): $(SRCDIR)/build.pl +$(PERL) $(SRCDIR)/build.pl endif
ExternalLibraries/MPI
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn MPI PROVIDES MPI { SCRIPT src/detect.pl LANG perl OPTIONS MPI MPI_DIR MPI_INC_DIRS MPI_LIB_DIRS MPI_LIBS MPI_INSTALL_DIR HWLOC_DIR } # Pass configuration options to build script REQUIRES MPI OPTIONAL hwloc { }
# Interface definition for thorn MPI IMPLEMENTS: MPI
# Parameter definitions for thorn MPI
# Schedule definitions for thorn MPI
detect.pl
#!/usr/bin/perl use Carp; use strict; use FileHandle; use Cwd; $/ = undef; ################################################################################ # Prepare ################################################################################ # Set up shell my $verbose = 0; $verbose = 1 if $ENV{VERBOSE} =~ /^yes$...
ExternalLibraries/OpenSSL
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn OpenSSL PROVIDES OpenSSL { SCRIPT configure.sh LANG bash OPTIONS OPENSSL_INSTALL_DIR OPENSSL_DIR OPENSSL_INC_DIRS OPENSSL_LIB_DIRS OPENSSL_LIBS }
# Interface definition for thorn OpenSSL IMPLEMENTS: OpenSSL
# Parameter definitions for thorn OpenSSL
# Schedule definitions for thorn OpenSSL
make.code.defn
# Main make.code.defn file for thorn OpenSSL # Source files in this directory SRCS = # Subdirectories containing source files SUBDIRS =
ExternalLibraries/PAPI
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn PAPI PROVIDES PAPI { SCRIPT src/detect.sh LANG bash OPTIONS PAPI_DIR PAPI_INSTALL_DIR } REQUIRES PAPI
# Interface definition for thorn PAPI IMPLEMENTS: PAPI
# Parameter definitions for thorn PAPI BOOLEAN verbose "Output debug messages?" STEERABLE=always { } "no" BOOLEAN per_thread_statistics "Collect statistics per thread (instead of per process)" STEERABLE=recover { } "yes" BOOLEAN define_statistics_clocks "Define multiple clocks for each PAPI counter, providing min/ma...
# Schedule definitions for thorn PAPI SCHEDULE PAPI_init AT wragh { LANG: C OPTIONS: meta } "Initialise PAPI" SCHEDULE PAPI_register_clock AT wragh AFTER PAPI_init { LANG: C OPTIONS: meta } "Set up Cactus clock for PAPI" SCHEDULE PAPI_dgemm AT basegrid { LANG: C OPTIONS: meta } "Run a DGEMM benchmark to ...
make.configuration.defn
# make.configuration.defn file for thorn PAPI # Define standard PAPI utilities and install those that we could build # and/or that are present in the system STD_PAPI_UTILS = papi_avail papi_clockres papi_command_line papi_component_avail papi_cost papi_decode papi_error_codes papi_event_chooser papi_mem_info papi_mult...
ExternalLibraries/PAPI
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn PAPI PROVIDES PAPI { SCRIPT src/detect.sh LANG bash OPTIONS PAPI_DIR PAPI_INSTALL_DIR } REQUIRES PAPI
# Interface definition for thorn PAPI IMPLEMENTS: PAPI
# Parameter definitions for thorn PAPI BOOLEAN verbose "Output debug messages?" STEERABLE=always { } "no" BOOLEAN per_thread_statistics "Collect statistics per thread (instead of per process)" STEERABLE=recover { } "yes" BOOLEAN define_statistics_clocks "Define multiple clocks for each PAPI counter, providing min/ma...
# Schedule definitions for thorn PAPI SCHEDULE PAPI_init AT wragh { LANG: C OPTIONS: meta } "Initialise PAPI" SCHEDULE PAPI_register_clock AT wragh AFTER PAPI_init { LANG: C OPTIONS: meta } "Set up Cactus clock for PAPI" SCHEDULE PAPI_dgemm AT basegrid { LANG: C OPTIONS: meta } "Run a DGEMM benchmark to ...
make.configuration.deps
# make.configuration.deps file for thorn PAPI # Copy standard PAPI utilities from the install directory $(UTIL_DIR)/%: $(PAPI_DIR)/bin/% @echo "Copying $* from $< to $(UTIL_DIR)" -$(MKDIR) $(MKDIRFLAGS) $(UTIL_DIR) 2> /dev/null cp $< $@
ExternalLibraries/PAPI
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn PAPI PROVIDES PAPI { SCRIPT src/detect.sh LANG bash OPTIONS PAPI_DIR PAPI_INSTALL_DIR } REQUIRES PAPI
# Interface definition for thorn PAPI IMPLEMENTS: PAPI
# Parameter definitions for thorn PAPI BOOLEAN verbose "Output debug messages?" STEERABLE=always { } "no" BOOLEAN per_thread_statistics "Collect statistics per thread (instead of per process)" STEERABLE=recover { } "yes" BOOLEAN define_statistics_clocks "Define multiple clocks for each PAPI counter, providing min/ma...
# Schedule definitions for thorn PAPI SCHEDULE PAPI_init AT wragh { LANG: C OPTIONS: meta } "Initialise PAPI" SCHEDULE PAPI_register_clock AT wragh AFTER PAPI_init { LANG: C OPTIONS: meta } "Set up Cactus clock for PAPI" SCHEDULE PAPI_dgemm AT basegrid { LANG: C OPTIONS: meta } "Run a DGEMM benchmark to ...
dgemm.c
#include <cctk.h> #include <cctk_Arguments.h> #include <cctk_Parameters.h> #include <stdlib.h> #include <time.h> #include <sys/time.h> #ifdef _OPENMP #include <omp.h> #else static int omp_get_num_threads(void) { return 1; } #endif static double get_time(void) { struct timeval tv; gettimeofday(&tv, NULL); retur...
ExternalLibraries/PAPI
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn PAPI PROVIDES PAPI { SCRIPT src/detect.sh LANG bash OPTIONS PAPI_DIR PAPI_INSTALL_DIR } REQUIRES PAPI
# Interface definition for thorn PAPI IMPLEMENTS: PAPI
# Parameter definitions for thorn PAPI BOOLEAN verbose "Output debug messages?" STEERABLE=always { } "no" BOOLEAN per_thread_statistics "Collect statistics per thread (instead of per process)" STEERABLE=recover { } "yes" BOOLEAN define_statistics_clocks "Define multiple clocks for each PAPI counter, providing min/ma...
# Schedule definitions for thorn PAPI SCHEDULE PAPI_init AT wragh { LANG: C OPTIONS: meta } "Initialise PAPI" SCHEDULE PAPI_register_clock AT wragh AFTER PAPI_init { LANG: C OPTIONS: meta } "Set up Cactus clock for PAPI" SCHEDULE PAPI_dgemm AT basegrid { LANG: C OPTIONS: meta } "Run a DGEMM benchmark to ...
stats.c
#include <cctk.h> #include <cctk_Arguments.h> #include <cctk_Parameters.h> #include <assert.h> #include <math.h> #include <stdarg.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #ifdef _OPENMP #include <omp.h> #else static int omp_get_max_threads(void) { return 1; } static int omp_g...
ExternalLibraries/PAPI
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn PAPI PROVIDES PAPI { SCRIPT src/detect.sh LANG bash OPTIONS PAPI_DIR PAPI_INSTALL_DIR } REQUIRES PAPI
# Interface definition for thorn PAPI IMPLEMENTS: PAPI
# Parameter definitions for thorn PAPI BOOLEAN verbose "Output debug messages?" STEERABLE=always { } "no" BOOLEAN per_thread_statistics "Collect statistics per thread (instead of per process)" STEERABLE=recover { } "yes" BOOLEAN define_statistics_clocks "Define multiple clocks for each PAPI counter, providing min/ma...
# Schedule definitions for thorn PAPI SCHEDULE PAPI_init AT wragh { LANG: C OPTIONS: meta } "Initialise PAPI" SCHEDULE PAPI_register_clock AT wragh AFTER PAPI_init { LANG: C OPTIONS: meta } "Set up Cactus clock for PAPI" SCHEDULE PAPI_dgemm AT basegrid { LANG: C OPTIONS: meta } "Run a DGEMM benchmark to ...
detect.sh
#! /bin/bash ################################################################################ # Prepare ################################################################################ # Set up shell if [ "$(echo ${VERBOSE} | tr '[:upper:]' '[:lower:]')" = 'yes' ]; then set -x # Output comman...
ExternalLibraries/PAPI
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn PAPI PROVIDES PAPI { SCRIPT src/detect.sh LANG bash OPTIONS PAPI_DIR PAPI_INSTALL_DIR } REQUIRES PAPI
# Interface definition for thorn PAPI IMPLEMENTS: PAPI
# Parameter definitions for thorn PAPI BOOLEAN verbose "Output debug messages?" STEERABLE=always { } "no" BOOLEAN per_thread_statistics "Collect statistics per thread (instead of per process)" STEERABLE=recover { } "yes" BOOLEAN define_statistics_clocks "Define multiple clocks for each PAPI counter, providing min/ma...
# Schedule definitions for thorn PAPI SCHEDULE PAPI_init AT wragh { LANG: C OPTIONS: meta } "Initialise PAPI" SCHEDULE PAPI_register_clock AT wragh AFTER PAPI_init { LANG: C OPTIONS: meta } "Set up Cactus clock for PAPI" SCHEDULE PAPI_dgemm AT basegrid { LANG: C OPTIONS: meta } "Run a DGEMM benchmark to ...
clock.c
#include <cctk.h> #include <cctk_Arguments.h> #include <cctk_Parameters.h> #include <assert.h> #include <float.h> #include <limits.h> #include <math.h> #include <stdarg.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #ifdef _OPENMP #include <omp.h> #else static int omp_get_max_threa...
ExternalLibraries/PAPI
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn PAPI PROVIDES PAPI { SCRIPT src/detect.sh LANG bash OPTIONS PAPI_DIR PAPI_INSTALL_DIR } REQUIRES PAPI
# Interface definition for thorn PAPI IMPLEMENTS: PAPI
# Parameter definitions for thorn PAPI BOOLEAN verbose "Output debug messages?" STEERABLE=always { } "no" BOOLEAN per_thread_statistics "Collect statistics per thread (instead of per process)" STEERABLE=recover { } "yes" BOOLEAN define_statistics_clocks "Define multiple clocks for each PAPI counter, providing min/ma...
# Schedule definitions for thorn PAPI SCHEDULE PAPI_init AT wragh { LANG: C OPTIONS: meta } "Initialise PAPI" SCHEDULE PAPI_register_clock AT wragh AFTER PAPI_init { LANG: C OPTIONS: meta } "Set up Cactus clock for PAPI" SCHEDULE PAPI_dgemm AT basegrid { LANG: C OPTIONS: meta } "Run a DGEMM benchmark to ...
build.sh
#! /bin/bash ################################################################################ # Build ################################################################################ # Set up shell if [ "$(echo ${VERBOSE} | tr '[:upper:]' '[:lower:]')" = 'yes' ]; then set -x # Output commands...
ExternalLibraries/PAPI
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn PAPI PROVIDES PAPI { SCRIPT src/detect.sh LANG bash OPTIONS PAPI_DIR PAPI_INSTALL_DIR } REQUIRES PAPI
# Interface definition for thorn PAPI IMPLEMENTS: PAPI
# Parameter definitions for thorn PAPI BOOLEAN verbose "Output debug messages?" STEERABLE=always { } "no" BOOLEAN per_thread_statistics "Collect statistics per thread (instead of per process)" STEERABLE=recover { } "yes" BOOLEAN define_statistics_clocks "Define multiple clocks for each PAPI counter, providing min/ma...
# Schedule definitions for thorn PAPI SCHEDULE PAPI_init AT wragh { LANG: C OPTIONS: meta } "Initialise PAPI" SCHEDULE PAPI_register_clock AT wragh AFTER PAPI_init { LANG: C OPTIONS: meta } "Set up Cactus clock for PAPI" SCHEDULE PAPI_dgemm AT basegrid { LANG: C OPTIONS: meta } "Run a DGEMM benchmark to ...
make.code.defn
# Main make.code.defn file for thorn PAPI # Source files in this directory SRCS = clock.c dgemm.c stats.c # Subdirectories containing source files SUBDIRS =
ExternalLibraries/PAPI
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn PAPI PROVIDES PAPI { SCRIPT src/detect.sh LANG bash OPTIONS PAPI_DIR PAPI_INSTALL_DIR } REQUIRES PAPI
# Interface definition for thorn PAPI IMPLEMENTS: PAPI
# Parameter definitions for thorn PAPI BOOLEAN verbose "Output debug messages?" STEERABLE=always { } "no" BOOLEAN per_thread_statistics "Collect statistics per thread (instead of per process)" STEERABLE=recover { } "yes" BOOLEAN define_statistics_clocks "Define multiple clocks for each PAPI counter, providing min/ma...
# Schedule definitions for thorn PAPI SCHEDULE PAPI_init AT wragh { LANG: C OPTIONS: meta } "Initialise PAPI" SCHEDULE PAPI_register_clock AT wragh AFTER PAPI_init { LANG: C OPTIONS: meta } "Set up Cactus clock for PAPI" SCHEDULE PAPI_dgemm AT basegrid { LANG: C OPTIONS: meta } "Run a DGEMM benchmark to ...
make.code.deps
# Main make.code.deps file for thorn PAPI export PAPI_INSTALL_DIR $(CCTK_TARGET) $(OBJS) $(SRCS:%=%.d): $(SCRATCH_BUILD)/done/$(THORN) ifneq ($(PAPI_BUILD),) $(SCRATCH_BUILD)/done/$(THORN): $(SRCDIR)/build.sh +$(SRCDIR)/build.sh endif
ExternalLibraries/PAPI
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn PAPI PROVIDES PAPI { SCRIPT src/detect.sh LANG bash OPTIONS PAPI_DIR PAPI_INSTALL_DIR } REQUIRES PAPI
# Interface definition for thorn PAPI IMPLEMENTS: PAPI
# Parameter definitions for thorn PAPI BOOLEAN verbose "Output debug messages?" STEERABLE=always { } "no" BOOLEAN per_thread_statistics "Collect statistics per thread (instead of per process)" STEERABLE=recover { } "yes" BOOLEAN define_statistics_clocks "Define multiple clocks for each PAPI counter, providing min/ma...
# Schedule definitions for thorn PAPI SCHEDULE PAPI_init AT wragh { LANG: C OPTIONS: meta } "Initialise PAPI" SCHEDULE PAPI_register_clock AT wragh AFTER PAPI_init { LANG: C OPTIONS: meta } "Set up Cactus clock for PAPI" SCHEDULE PAPI_dgemm AT basegrid { LANG: C OPTIONS: meta } "Run a DGEMM benchmark to ...
stats.h
#ifndef STATS_H #define STATS_H #include <cctk.h> #include <cctk_Parameters.h> #include <stdarg.h> #include <stdio.h> #define num_threads PAPI_Cactus_num_threads #define eventsets PAPI_Cactus_eventsets #define num_events PAPI_Cactus_num_events #define events PAPI_Cactus_events // Number of threads extern int num_th...
ExternalLibraries/pthreads
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn PTHREADS PROVIDES PTHREADS { SCRIPT src/detect.sh LANG bash OPTIONS PTHREADS PTHREADS_DIR PTHREADS_INC_DIRS PTHREADS_LIB_DIRS PTHREADS_LIBS } REQUIRES PTHREADS
# Interface definition for thorn PTHREADS IMPLEMENTS: PTHREADS
# Parameter definitions for thorn PTHREADS
# Schedule definitions for thorn PTHREADS
detect.sh
#! /bin/bash ################################################################################ # Prepare ################################################################################ # Set up shell if [ "$(echo ${VERBOSE} | tr '[:upper:]' '[:lower:]')" = 'yes' ]; then set -x # Output comman...
ExternalLibraries/pthreads
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn PTHREADS PROVIDES PTHREADS { SCRIPT src/detect.sh LANG bash OPTIONS PTHREADS PTHREADS_DIR PTHREADS_INC_DIRS PTHREADS_LIB_DIRS PTHREADS_LIBS } REQUIRES PTHREADS
# Interface definition for thorn PTHREADS IMPLEMENTS: PTHREADS
# Parameter definitions for thorn PTHREADS
# Schedule definitions for thorn PTHREADS
make.code.defn
# Main make.code.defn file for thorn PTHREADS # Source files in this directory SRCS = # Subdirectories containing source files SUBDIRS =
ExternalLibraries/zlib
https://svn.cactuscode.org/projects/$1/$2/branches/$ET_RELEASE
# Configuration definitions for thorn zlib PROVIDES zlib { SCRIPT configure.sh LANG bash OPTIONS ZLIB_DIR ZLIB_INSTALL_DIR }
# Interface definition for thorn zlib IMPLEMENTS: zlib
# Parameter definitions for thorn zlib
# Schedule definitions for thorn zlib
make.code.defn
# Main make.code.defn file for thorn zlib # Source files in this directory SRCS = # Subdirectories containing source files SUBDIRS =
KrancNumericalTools/GenericFD
https://github.com/ianhinder/Kranc.git
# GenericFD/configuration.ccl # Configuration definition for thorn GenericFD # author: E. Schnetter PROVIDES GenericFD { SCRIPT LANG }
# GenericFD/interface.ccl # Interface definition for thorn GenericFD # author: S. Husa # $Header$ implements: GenericFD INCLUDE HEADER: GenericFD.h in GenericFD.h INCLUDE HEADER: sbp_calc_coeffs.h in sbp_calc_coeffs.h USES INCLUDE: Boundary.h USES INCLUDE: Symmetry.h CCTK_INT FUNCTION \ GetBoundarySpecifica...
# GenericFD/param.ccl # Parameter definition for thorn GenericFD # author: S. Husa # $Header$ restricted: CCTK_INT stencil_width "stencil width used near boundary DEPRECATED" { -1:* :: "outgoing characteristic speed > 0, default of -1 is intentionally invalid" } -1 CCTK_INT stencil_width_x "stencil width used...
# GenericFD/schedule.ccl # Schedule definition for thorn GenericFD # author: S. Husa # $Header$ if (allocate_genericfd_jacobian) { STORAGE: jacobian, jacobian2 }
GenericFD.c
/*@@ @file GenericFD/src/GenericFD.c @date June 16 2002 @author S. Husa @desc $Id$ @enddesc @@*/ /*...
KrancNumericalTools/GenericFD
https://github.com/ianhinder/Kranc.git
# GenericFD/configuration.ccl # Configuration definition for thorn GenericFD # author: E. Schnetter PROVIDES GenericFD { SCRIPT LANG }
# GenericFD/interface.ccl # Interface definition for thorn GenericFD # author: S. Husa # $Header$ implements: GenericFD INCLUDE HEADER: GenericFD.h in GenericFD.h INCLUDE HEADER: sbp_calc_coeffs.h in sbp_calc_coeffs.h USES INCLUDE: Boundary.h USES INCLUDE: Symmetry.h CCTK_INT FUNCTION \ GetBoundarySpecifica...
# GenericFD/param.ccl # Parameter definition for thorn GenericFD # author: S. Husa # $Header$ restricted: CCTK_INT stencil_width "stencil width used near boundary DEPRECATED" { -1:* :: "outgoing characteristic speed > 0, default of -1 is intentionally invalid" } -1 CCTK_INT stencil_width_x "stencil width used...
# GenericFD/schedule.ccl # Schedule definition for thorn GenericFD # author: S. Husa # $Header$ if (allocate_genericfd_jacobian) { STORAGE: jacobian, jacobian2 }
make.code.defn
# Main make.code.defn file for thorn GenericFD # $Header$ # Source files in this directory SRCS = GenericFD.c # Subdirectories containing source files SUBDIRS =
KrancNumericalTools/GenericFD
https://github.com/ianhinder/Kranc.git
# GenericFD/configuration.ccl # Configuration definition for thorn GenericFD # author: E. Schnetter PROVIDES GenericFD { SCRIPT LANG }
# GenericFD/interface.ccl # Interface definition for thorn GenericFD # author: S. Husa # $Header$ implements: GenericFD INCLUDE HEADER: GenericFD.h in GenericFD.h INCLUDE HEADER: sbp_calc_coeffs.h in sbp_calc_coeffs.h USES INCLUDE: Boundary.h USES INCLUDE: Symmetry.h CCTK_INT FUNCTION \ GetBoundarySpecifica...
# GenericFD/param.ccl # Parameter definition for thorn GenericFD # author: S. Husa # $Header$ restricted: CCTK_INT stencil_width "stencil width used near boundary DEPRECATED" { -1:* :: "outgoing characteristic speed > 0, default of -1 is intentionally invalid" } -1 CCTK_INT stencil_width_x "stencil width used...
# GenericFD/schedule.ccl # Schedule definition for thorn GenericFD # author: S. Husa # $Header$ if (allocate_genericfd_jacobian) { STORAGE: jacobian, jacobian2 }
MathematicaCompat.h
#define Power(x, y) (pow(x,y)) #define Sqrt(x) (sqrt(x)) #define Abs(x) (fabs(x)) #define Min(x, y) (fmin(x,y)) #define Min3(x, y, z) (fmin(fmin((x), (y)), (z))) #define Max(x, y) (fmax(x,y)) #define IfThen(x,y,z) ((x) ? (y) : (z)) #define Exp(x) (exp(x)) #define Log(x) (log(x))...
KrancNumericalTools/GenericFD
https://github.com/ianhinder/Kranc.git
# GenericFD/configuration.ccl # Configuration definition for thorn GenericFD # author: E. Schnetter PROVIDES GenericFD { SCRIPT LANG }
# GenericFD/interface.ccl # Interface definition for thorn GenericFD # author: S. Husa # $Header$ implements: GenericFD INCLUDE HEADER: GenericFD.h in GenericFD.h INCLUDE HEADER: sbp_calc_coeffs.h in sbp_calc_coeffs.h USES INCLUDE: Boundary.h USES INCLUDE: Symmetry.h CCTK_INT FUNCTION \ GetBoundarySpecifica...
# GenericFD/param.ccl # Parameter definition for thorn GenericFD # author: S. Husa # $Header$ restricted: CCTK_INT stencil_width "stencil width used near boundary DEPRECATED" { -1:* :: "outgoing characteristic speed > 0, default of -1 is intentionally invalid" } -1 CCTK_INT stencil_width_x "stencil width used...
# GenericFD/schedule.ccl # Schedule definition for thorn GenericFD # author: S. Husa # $Header$ if (allocate_genericfd_jacobian) { STORAGE: jacobian, jacobian2 }
sbp_calc_coeffs.h
int const deriv_options = -1; /* (drho/dx)^i = D^i_j rho^j, with D^i_j = q(i,j) */ /* imin and imax contain the first and last non-zero entry of the two-dimensional array q */ /* All indexing is according to Fortran conventions */ int const ni = cctk_lsh[0]; int const nj = cctk_lsh[1]; int const nk = cctk_lsh[...
KrancNumericalTools/GenericFD
https://github.com/ianhinder/Kranc.git
# GenericFD/configuration.ccl # Configuration definition for thorn GenericFD # author: E. Schnetter PROVIDES GenericFD { SCRIPT LANG }
# GenericFD/interface.ccl # Interface definition for thorn GenericFD # author: S. Husa # $Header$ implements: GenericFD INCLUDE HEADER: GenericFD.h in GenericFD.h INCLUDE HEADER: sbp_calc_coeffs.h in sbp_calc_coeffs.h USES INCLUDE: Boundary.h USES INCLUDE: Symmetry.h CCTK_INT FUNCTION \ GetBoundarySpecifica...
# GenericFD/param.ccl # Parameter definition for thorn GenericFD # author: S. Husa # $Header$ restricted: CCTK_INT stencil_width "stencil width used near boundary DEPRECATED" { -1:* :: "outgoing characteristic speed > 0, default of -1 is intentionally invalid" } -1 CCTK_INT stencil_width_x "stencil width used...
# GenericFD/schedule.ccl # Schedule definition for thorn GenericFD # author: S. Husa # $Header$ if (allocate_genericfd_jacobian) { STORAGE: jacobian, jacobian2 }
GenericFD.h
/*@@ @file GenericFD/src/GenericFD.h @date June 16 2002 @author S. Husa @desc $Id$ @enddesc @@*/ /* ...
McLachlan/ML_ADMConstraints
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMConstraints inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved SUBROUTI...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Ham[timelevels] STORAGE: ML_mom[timelevels] schedule ML_ADMConstraints_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMConstraints_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMCons...
Kranc.cc
/* Copyright 2014 Ian Hinder This file is part of Kranc. Kranc is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. K...
McLachlan/ML_ADMConstraints
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMConstraints inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved SUBROUTI...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Ham[timelevels] STORAGE: ML_mom[timelevels] schedule ML_ADMConstraints_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMConstraints_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMCons...
Kranc.hh
#ifndef KRANC_HH #define KRANC_HH #include <cmath> #include <math.h> #include <sys/time.h> #include <cctk.h> namespace ML_ADMConstraints { /********************************************************************* * Types *********************************************************************/ struct KrancData { // ...
McLachlan/ML_ADMConstraints
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMConstraints inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved SUBROUTI...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Ham[timelevels] STORAGE: ML_mom[timelevels] schedule ML_ADMConstraints_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMConstraints_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMCons...
Differencing.h
#ifndef KRANC_DIFF_FUNCTIONS # define PDstandardNth1(u) ((-8*KRANC_GFOFFSET3D(u,-1,0,0) + 8*KRANC_GFOFFSET3D(u,1,0,0) + KRANC_GFOFFSET3D(u,-2,0,0) - KRANC_GFOFFSET3D(u,2,0,0))*p1o12dx) #else # define PDstandardNth1(u) (PDstandardNth1_impl(u,p1o12dx,cdj,cdk)) static CCTK_REAL PDstandardNth1_impl(const CCTK_REAL* restr...
McLachlan/ML_ADMConstraints
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMConstraints inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved SUBROUTI...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Ham[timelevels] STORAGE: ML_mom[timelevels] schedule ML_ADMConstraints_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMConstraints_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMCons...
RegisterMoL.cc
/* File produced by Kranc */ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" extern "C" void ML_ADMConstraints_RegisterVars(CCTK_ARGUMENTS) { DECLARE_CCTK_ARGUMENTS; DECLARE_CCTK_PARAMETERS; CCTK_INT ierr CCTK_ATTRIBUTE_UNUSED = 0; /* Register all the evolved grid functions with...
McLachlan/ML_ADMConstraints
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMConstraints inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved SUBROUTI...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Ham[timelevels] STORAGE: ML_mom[timelevels] schedule ML_ADMConstraints_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMConstraints_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMCons...
make.code.defn
# File produced by Kranc SRCS = Boundaries.cc Kranc.cc ML_ADMConstraints_evaluate.cc RegisterMoL.cc RegisterSymmetries.cc Startup.cc
McLachlan/ML_ADMConstraints
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMConstraints inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved SUBROUTI...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Ham[timelevels] STORAGE: ML_mom[timelevels] schedule ML_ADMConstraints_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMConstraints_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMCons...
RegisterSymmetries.cc
/* File produced by Kranc */ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Symmetry.h" extern "C" void ML_ADMConstraints_RegisterSymmetries(CCTK_ARGUMENTS) { DECLARE_CCTK_ARGUMENTS; DECLARE_CCTK_PARAMETERS; /* array holding symmetry definitions */ int sym[3]; /*...
McLachlan/ML_ADMConstraints
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMConstraints inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved SUBROUTI...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Ham[timelevels] STORAGE: ML_mom[timelevels] schedule ML_ADMConstraints_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMConstraints_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMCons...
Startup.cc
/* File produced by Kranc */ #include "cctk.h" extern "C" int ML_ADMConstraints_Startup(void) { const char* banner CCTK_ATTRIBUTE_UNUSED = "ML_ADMConstraints"; CCTK_RegisterBanner(banner); return 0; }
McLachlan/ML_ADMConstraints
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMConstraints inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved SUBROUTI...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Ham[timelevels] STORAGE: ML_mom[timelevels] schedule ML_ADMConstraints_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMConstraints_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMCons...
Boundaries.cc
/* File produced by Kranc */ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "cctk_Faces.h" #include "util_Table.h" #include "Symmetry.h" /* the boundary treatment is split into 3 steps: */ /* 1. excision */ /* 2. symmetries ...
McLachlan/ML_ADMConstraints
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMConstraints inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved SUBROUTI...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Ham[timelevels] STORAGE: ML_mom[timelevels] schedule ML_ADMConstraints_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMConstraints_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMCons...
ML_ADMConstraints_evaluate.cc
/* File produced by Kranc */ #define KRANC_C #include <algorithm> #include <assert.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Kranc.hh" #include "Differencing.h" #include "loopcontrol.h" namespa...
McLachlan/ML_ADMQuantities
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMQuantities inherits: ADMBase Boundary GenericFD Grid ML_BSSN TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved S...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Madm[timelevels] STORAGE: ML_Jadm[timelevels] schedule ML_ADMQuantities_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMQuantities_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMQuan...
Kranc.cc
/* Copyright 2014 Ian Hinder This file is part of Kranc. Kranc is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. K...
McLachlan/ML_ADMQuantities
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMQuantities inherits: ADMBase Boundary GenericFD Grid ML_BSSN TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved S...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Madm[timelevels] STORAGE: ML_Jadm[timelevels] schedule ML_ADMQuantities_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMQuantities_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMQuan...
Kranc.hh
#ifndef KRANC_HH #define KRANC_HH #include <cmath> #include <math.h> #include <sys/time.h> #include <cctk.h> namespace ML_ADMQuantities { /********************************************************************* * Types *********************************************************************/ struct KrancData { // A...
McLachlan/ML_ADMQuantities
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMQuantities inherits: ADMBase Boundary GenericFD Grid ML_BSSN TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved S...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Madm[timelevels] STORAGE: ML_Jadm[timelevels] schedule ML_ADMQuantities_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMQuantities_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMQuan...
ML_ADMQuantities_calculate.cc
/* File produced by Kranc */ #define KRANC_C #include <algorithm> #include <assert.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Kranc.hh" #include "Differencing.h" #include "loopcontrol.h" namespa...
McLachlan/ML_ADMQuantities
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMQuantities inherits: ADMBase Boundary GenericFD Grid ML_BSSN TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved S...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Madm[timelevels] STORAGE: ML_Jadm[timelevels] schedule ML_ADMQuantities_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMQuantities_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMQuan...
Differencing.h
#ifndef KRANC_DIFF_FUNCTIONS # define PDstandardNth1(u) ((-8*KRANC_GFOFFSET3D(u,-1,0,0) + 8*KRANC_GFOFFSET3D(u,1,0,0) + KRANC_GFOFFSET3D(u,-2,0,0) - KRANC_GFOFFSET3D(u,2,0,0))*p1o12dx) #else # define PDstandardNth1(u) (PDstandardNth1_impl(u,p1o12dx,cdj,cdk)) static CCTK_REAL PDstandardNth1_impl(const CCTK_REAL* restr...
McLachlan/ML_ADMQuantities
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMQuantities inherits: ADMBase Boundary GenericFD Grid ML_BSSN TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved S...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Madm[timelevels] STORAGE: ML_Jadm[timelevels] schedule ML_ADMQuantities_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMQuantities_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMQuan...
RegisterMoL.cc
/* File produced by Kranc */ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" extern "C" void ML_ADMQuantities_RegisterVars(CCTK_ARGUMENTS) { DECLARE_CCTK_ARGUMENTS; DECLARE_CCTK_PARAMETERS; CCTK_INT ierr CCTK_ATTRIBUTE_UNUSED = 0; /* Register all the evolved grid functions with ...
McLachlan/ML_ADMQuantities
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMQuantities inherits: ADMBase Boundary GenericFD Grid ML_BSSN TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved S...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Madm[timelevels] STORAGE: ML_Jadm[timelevels] schedule ML_ADMQuantities_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMQuantities_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMQuan...
make.code.defn
# File produced by Kranc SRCS = Boundaries.cc Kranc.cc ML_ADMQuantities_calculate.cc RegisterMoL.cc RegisterSymmetries.cc Startup.cc
McLachlan/ML_ADMQuantities
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMQuantities inherits: ADMBase Boundary GenericFD Grid ML_BSSN TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved S...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Madm[timelevels] STORAGE: ML_Jadm[timelevels] schedule ML_ADMQuantities_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMQuantities_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMQuan...
RegisterSymmetries.cc
/* File produced by Kranc */ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Symmetry.h" extern "C" void ML_ADMQuantities_RegisterSymmetries(CCTK_ARGUMENTS) { DECLARE_CCTK_ARGUMENTS; DECLARE_CCTK_PARAMETERS; /* array holding symmetry definitions */ int sym[3]; /* ...
McLachlan/ML_ADMQuantities
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMQuantities inherits: ADMBase Boundary GenericFD Grid ML_BSSN TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved S...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Madm[timelevels] STORAGE: ML_Jadm[timelevels] schedule ML_ADMQuantities_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMQuantities_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMQuan...
Startup.cc
/* File produced by Kranc */ #include "cctk.h" extern "C" int ML_ADMQuantities_Startup(void) { const char* banner CCTK_ATTRIBUTE_UNUSED = "ML_ADMQuantities"; CCTK_RegisterBanner(banner); return 0; }
McLachlan/ML_ADMQuantities
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD OPTIONAL LoopControl { }
# File produced by Kranc implements: ML_ADMQuantities inherits: ADMBase Boundary GenericFD Grid ML_BSSN TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvolved S...
# File produced by Kranc shares: GenericFD USES CCTK_INT assume_stress_energy_state USES CCTK_INT assume_use_jacobian USES CCTK_STRING jacobian_group USES CCTK_STRING jacobian_determinant_group USES CCTK_STRING jacobian_inverse_group USES CCTK_STRING jacobian_derivative_group USES CCTK_INT jacobian_identity_map sh...
# File produced by Kranc STORAGE: ML_Madm[timelevels] STORAGE: ML_Jadm[timelevels] schedule ML_ADMQuantities_Startup at STARTUP { LANG: C OPTIONS: meta } "create banner" schedule ML_ADMQuantities_RegisterSymmetries in SymmetryRegister { LANG: C OPTIONS: meta } "register symmetries" schedule group ML_ADMQuan...
Boundaries.cc
/* File produced by Kranc */ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "cctk_Faces.h" #include "util_Table.h" #include "Symmetry.h" /* the boundary treatment is split into 3 steps: */ /* 1. excision */ /* 2. symmetries ...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
ML_BSSN_ConstraintsEverywhere.cc
/* File produced by Kranc */ #define KRANC_C #include <algorithm> #include <assert.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Kranc.hh" #include "Differencing.h" #include "loopcontrol.h" #include...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
ML_BSSN_EvolutionInteriorSplitBy1.cc
/* File produced by Kranc */ #define KRANC_C #include <algorithm> #include <assert.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Kranc.hh" #include "Differencing.h" #include "loopcontrol.h" #include...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
ML_BSSN_EnforceEverywhere.cc
/* File produced by Kranc */ #define KRANC_C #include <algorithm> #include <assert.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Kranc.hh" #include "Differencing.h" #include "loopcontrol.h" #include...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
Kranc.cc
/* Copyright 2014 Ian Hinder This file is part of Kranc. Kranc is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. K...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
Kranc.hh
#ifndef KRANC_HH #define KRANC_HH #include <cmath> #include <math.h> #include <sys/time.h> #include <cctk.h> namespace ML_BSSN { /********************************************************************* * Types *********************************************************************/ struct KrancData { // Actual loo...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
Differencing.h
#include <assert.h> #include "vectors.h" #ifndef KRANC_DIFF_FUNCTIONS # define PDstandardNthfdOrder21(u) (kmul(p1o2dx,ksub(KRANC_GFOFFSET3D(u,1,0,0),KRANC_GFOFFSET3D(u,-1,0,0)))) #else # define PDstandardNthfdOrder21(u) (PDstandardNthfdOrder21_impl(u,p1o2dx,cdj,cdk)) static CCTK_REAL_VEC PDstandardNthfdOrder21_impl(...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
ML_BSSN_InitialADMBase1Everywhere.cc
/* File produced by Kranc */ #define KRANC_C #include <algorithm> #include <assert.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Kranc.hh" #include "Differencing.h" #include "loopcontrol.h" #include...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
ML_BSSN_InitialADMBase2Interior.cc
/* File produced by Kranc */ #define KRANC_C #include <algorithm> #include <assert.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Kranc.hh" #include "Differencing.h" #include "loopcontrol.h" #include...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
RegisterMoL.cc
/* File produced by Kranc */ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" extern "C" void ML_BSSN_RegisterVars(CCTK_ARGUMENTS) { DECLARE_CCTK_ARGUMENTS; DECLARE_CCTK_PARAMETERS; CCTK_INT ierr CCTK_ATTRIBUTE_UNUSED = 0; /* Register all the evolved grid functions with MoL */ ...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
make.code.defn
# File produced by Kranc SRCS = Boundaries.cc Kranc.cc ML_BSSN_ADMBaseBoundaryScalar.cc ML_BSSN_ADMBaseEverywhere.cc ML_BSSN_ADMBaseInterior.cc ML_BSSN_ConstraintsEverywhere.cc ML_BSSN_ConstraintsInterior.cc ML_BSSN_EnforceEverywhere.cc ML_BSSN_EvolutionAnalysisInit.cc ML_BSSN_EvolutionAnalysisInterior.cc ML_BSSN_Evol...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
ML_BSSN_EvolutionBoundaryScalar.cc
/* File produced by Kranc */ #define KRANC_C #include <algorithm> #include <assert.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Kranc.hh" #include "Differencing.h" #include "loopcontrol.h" #include...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
RegisterSymmetries.cc
/* File produced by Kranc */ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Symmetry.h" extern "C" void ML_BSSN_RegisterSymmetries(CCTK_ARGUMENTS) { DECLARE_CCTK_ARGUMENTS; DECLARE_CCTK_PARAMETERS; /* array holding symmetry definitions */ int sym[3]; /* Register ...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
ML_BSSN_ADMBaseEverywhere.cc
/* File produced by Kranc */ #define KRANC_C #include <algorithm> #include <assert.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Kranc.hh" #include "Differencing.h" #include "loopcontrol.h" #include...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
ML_BSSN_EvolutionInteriorSplitBy2.cc
/* File produced by Kranc */ #define KRANC_C #include <algorithm> #include <assert.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Kranc.hh" #include "Differencing.h" #include "loopcontrol.h" #include...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
Startup.cc
/* File produced by Kranc */ #include "cctk.h" extern "C" int ML_BSSN_Startup(void) { const char* banner CCTK_ATTRIBUTE_UNUSED = "ML_BSSN"; CCTK_RegisterBanner(banner); return 0; }
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
ML_BSSN_InitialADMBase2BoundaryScalar.cc
/* File produced by Kranc */ #define KRANC_C #include <algorithm> #include <assert.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Kranc.hh" #include "Differencing.h" #include "loopcontrol.h" #include...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
ML_BSSN_ADMBaseInterior.cc
/* File produced by Kranc */ #define KRANC_C #include <algorithm> #include <assert.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Kranc.hh" #include "Differencing.h" #include "loopcontrol.h" #include...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
ML_BSSN_EvolutionInterior.cc
/* File produced by Kranc */ #define KRANC_C #include <algorithm> #include <assert.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Kranc.hh" #include "Differencing.h" #include "loopcontrol.h" #include...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
Boundaries.cc
/* File produced by Kranc */ #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "cctk_Faces.h" #include "util_Table.h" #include "Symmetry.h" /* the boundary treatment is split into 3 steps: */ /* 1. excision */ /* 2. symmetries ...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
ML_BSSN_EvolutionAnalysisInterior.cc
/* File produced by Kranc */ #define KRANC_C #include <algorithm> #include <assert.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Kranc.hh" #include "Differencing.h" #include "loopcontrol.h" #include...
McLachlan/ML_BSSN
https://bitbucket.org/einsteintoolkit/mclachlan.git
# File produced by Kranc REQUIRES GenericFD REQUIRES LoopControl REQUIRES Vectors
# File produced by Kranc implements: ML_BSSN inherits: ADMBase Boundary GenericFD Grid TmunuBase USES INCLUDE: loopcontrol.h USES INCLUDE: Symmetry.h USES INCLUDE: vectors.h USES INCLUDE: Boundary.h CCTK_INT FUNCTION MoLRegisterEvolved(CCTK_INT IN EvolvedIndex, CCTK_INT IN RHSIndex) USES FUNCTION MoLRegisterEvo...
# File produced by Kranc shares: ADMBase EXTENDS CCTK_KEYWORD evolution_method "evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD lapse_evolution_method "lapse_evolution_method" { "ML_BSSN" :: "" } EXTENDS CCTK_KEYWORD shift_evolution_method "shift_evolution_method" { "ML_BSSN" :: "" } EXTEN...
# File produced by Kranc STORAGE: ML_log_confac[timelevels] STORAGE: ML_metric[timelevels] STORAGE: ML_Gamma[timelevels] STORAGE: ML_trace_curv[timelevels] STORAGE: ML_curv[timelevels] STORAGE: ML_lapse[timelevels] STORAGE: ML_dtlapse[timelevels] STORAGE: ML_shift[timelevels] STORAGE: ML_dtshift[timelevels] S...
ML_BSSN_ADMBaseBoundaryScalar.cc
/* File produced by Kranc */ #define KRANC_C #include <algorithm> #include <assert.h> #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "cctk.h" #include "cctk_Arguments.h" #include "cctk_Parameters.h" #include "Kranc.hh" #include "Differencing.h" #include "loopcontrol.h" #include...