From 79af79d471cc9ea43c6df64013548041a263ac9f Mon Sep 17 00:00:00 2001 From: CGH0S7 Date: Thu, 5 Feb 2026 19:53:55 +0800 Subject: [PATCH] baseline updated --- AMSS_NCKU_Input.py | 2 +- AMSS_NCKU_source/makefile.inc | 8 ++++---- makefile_and_run.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/AMSS_NCKU_Input.py b/AMSS_NCKU_Input.py index 6bf3589..fe25a50 100755 --- a/AMSS_NCKU_Input.py +++ b/AMSS_NCKU_Input.py @@ -16,7 +16,7 @@ import numpy File_directory = "GW150914" ## output file directory Output_directory = "binary_output" ## binary data file directory ## The file directory name should not be too long -MPI_processes = 8 ## number of mpi processes used in the simulation +MPI_processes = 64 ## number of mpi processes used in the simulation GPU_Calculation = "no" ## Use GPU or not ## (prefer "no" in the current version, because the GPU part may have bugs when integrated in this Python interface) diff --git a/AMSS_NCKU_source/makefile.inc b/AMSS_NCKU_source/makefile.inc index 9b7c970..00b4bc3 100755 --- a/AMSS_NCKU_source/makefile.inc +++ b/AMSS_NCKU_source/makefile.inc @@ -1,14 +1,14 @@ ## filein = -I/usr/include -I/usr/lib/x86_64-linux-gnu/mpich/include -I/usr/lib/x86_64-linux-gnu/openmpi/lib/ -I/usr/lib/gcc/x86_64-linux-gnu/11/ -I/usr/include/c++/11/ -filein = -I/usr/include/ -I/usr/lib/x86_64-linux-gnu/openmpi/include/ -I/usr/lib/x86_64-linux-gnu/openmpi/lib/ -I/usr/lib/gcc/x86_64-linux-gnu/11/ -I/usr/include/c++/11/ +filein = -I/usr/include/ -I/usr/include/openmpi-x86_64/ -I/usr/lib/x86_64-linux-gnu/openmpi/include/ -I/usr/lib/x86_64-linux-gnu/openmpi/lib/ -I/usr/lib/gcc/x86_64-linux-gnu/11/ -I/usr/include/c++/11/ ## LDLIBS = -L/usr/lib/x86_64-linux-gnu -lmpich -L/usr/lib64 -L/usr/lib/gcc/x86_64-linux-gnu/11 -lgfortran LDLIBS = -L/usr/lib/x86_64-linux-gnu -L/usr/lib64 -L/usr/lib/gcc/x86_64-linux-gnu/11 -lgfortran -lmpi -lgfortran -CXXAPPFLAGS = -O3 -Wno-deprecated -Dfortran3 -Dnewc -#f90appflags = -O3 -fpp -f90appflags = -O3 -x f95-cpp-input +CXXAPPFLAGS = -O0 -Wno-deprecated -Dfortran3 -Dnewc +#f90appflags = -O0 -fpp +f90appflags = -O0 -x f95-cpp-input f90 = gfortran f77 = gfortran CXX = g++ diff --git a/makefile_and_run.py b/makefile_and_run.py index 22e4de2..73c9ff6 100755 --- a/makefile_and_run.py +++ b/makefile_and_run.py @@ -28,7 +28,7 @@ def makefile_ABE(): ## Build command if (input_data.GPU_Calculation == "no"): - makefile_command = "make -j4" + " ABE" + makefile_command = "make -j96" + " ABE" elif (input_data.GPU_Calculation == "yes"): makefile_command = "make -j4" + " ABEGPU" else: