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

WIP: Add Fujistu Scientific Sofware Library #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 7 additions & 0 deletions src/Makefile.inc
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ OPTIONS=
# fftw3_f03 - FFTW 3.3-beta1 or later (with Fortran 2003 interface)
# generic - A general FFT algorithm (no 3rd-party library needed)
# mkl - Intel Math Kernel Library
# ssl - Fujistu Scientific Subroutine Library
FFT=generic

# Platform-dependent information - compiler, external library etc
Expand Down Expand Up @@ -94,6 +95,9 @@ LIB_FFTE=$(FFTE_PATH)/libffte.a
# For cuFFT
LIB_CUFFT=-L$(CUDA_PATH)/lib64 -lcudart -lcufft

# For SSL
LIB_SSL=-SSL2 --linkstl=libfjc++

ifeq ($(FFT),generic)
LIBFFT=
else ifeq ($(FFT),acml)
Expand All @@ -110,4 +114,7 @@ else ifeq ($(FFT),mkl)
LIBFFT=$(LIB_MKL)
else ifeq ($(FFT),cufft)
LIBFFT=$(LIB_CUFFT)
else ifeq ($(FFT),ssl)
LD_FLAGS=-Kfast
LIBFFT=$(LIB_SSL)
endif
Loading