Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Do not merge yet] Add 'Mizuki', an SPH/Nbody code based on FDPS #942

Open
wants to merge 21 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update Makefile
  • Loading branch information
rieder committed Jan 7, 2022
commit ab25229c903ca55be846811dff3c3e978bc555a7
6 changes: 3 additions & 3 deletions src/amuse/community/sui/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ AMUSE_DIR := $(shell amusifier --get-amuse-dir)

MPICXX ?= mpicxx

use_phantom_grape_x86 = no
use_phantom_grape_x86 = no # speedup from ~1M particles or so?

FDPS_PATH = src/FDPS/src
SUI_PATH = src/sui
Expand All @@ -33,8 +33,8 @@ ifeq ($(use_phantom_grape_x86),yes)
CXXFLAGS += -I $(PG_ROOT)
CXXFLAGS += -DENABLE_PHANTOM_GRAPE_X86
CXXFLAGS += -L$(PG_ROOT) -lpg5
PG_BUILD = cd $(PG_ROOT) && $(MAKE) distclean libpg5.a
PG_CLEAN = cd $(PG_ROOT) && $(MAKE) distclean
PG_BUILD = make -C $(PG_ROOT) distclean libpg5.a
PG_CLEAN = make -C $(PG_ROOT) distclean
else
PG_BUILD =
PG_CLEAN =
Expand Down