aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhinder <hinder@105869f7-3296-0410-a4ea-f4349344b45a>2011-06-16 20:57:52 +0000
committerhinder <hinder@105869f7-3296-0410-a4ea-f4349344b45a>2011-06-16 20:57:52 +0000
commita8dd909e99aa25fe697e46fee37c0cf48f087488 (patch)
treef1d10318f6aa479c204f792071e241cb15f75d1b /src
parent2ab4d61cd4b632c0e991c781f3c15f3b054d1bbd (diff)
Add startup message giving vector length
This allows you to check that a simulation is using vectorisation. git-svn-id: https://svn.cct.lsu.edu/repos/numrel/LSUThorns/Vectors/trunk@11 105869f7-3296-0410-a4ea-f4349344b45a
Diffstat (limited to 'src')
-rw-r--r--src/make.code.defn2
-rw-r--r--src/vectors.c11
2 files changed, 12 insertions, 1 deletions
diff --git a/src/make.code.defn b/src/make.code.defn
index fa10ccb..15ba9a9 100644
--- a/src/make.code.defn
+++ b/src/make.code.defn
@@ -1,7 +1,7 @@
# Main make.code.defn file for thorn Vectors
# Source files in this directory
-SRCS =
+SRCS = vectors.c
# Subdirectories containing source files
SUBDIRS =
diff --git a/src/vectors.c b/src/vectors.c
new file mode 100644
index 0000000..04df73c
--- /dev/null
+++ b/src/vectors.c
@@ -0,0 +1,11 @@
+
+#include "cctk.h"
+#include "cctk_Arguments.h"
+#include "cctk_Parameters.h"
+#include "vectors.h"
+
+int Vectors_Startup(void)
+{
+ CCTK_VInfo(CCTK_THORNSTRING, "Using vector size %d", CCTK_REAL_VEC_SIZE);
+ return 0;
+}