Skip to content

Commit 1ef22d2

Browse files
committed
Patch openblas to add 64_ suffix when using 64 bit ints
objconv cannot do in-place modification of files dont overwrite static library with objcopy on freebsd either fix linking of arpack and suitesparse with 64_ blas suffix the patched xlahqr2 was using UPPERCASE function names, and the probes during arpack configure were using the C compiler, sgemm_ and cheev_ need to enable c preprocessor, and disable syntax error on long lines SPQR also needed -DSUN64
1 parent 6290d34 commit 1ef22d2

File tree

2 files changed

+366
-5
lines changed

2 files changed

+366
-5
lines changed

deps/Makefile

+33-5
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,10 @@ endif
829829

830830
# 64-bit BLAS interface
831831
ifeq ($(USE_BLAS64), 1)
832-
OPENBLAS_BUILD_OPTS += INTERFACE64=1
832+
OPENBLAS_BUILD_OPTS += INTERFACE64=1 SYMBOLSUFFIX="64_"
833+
ifeq ($(OS),Darwin)
834+
OPENBLAS_BUILD_OPTS += OBJCONV=$(JULIAHOME)/deps/objconv/objconv
835+
endif
833836
endif
834837

835838
# Decide whether to build for 32-bit or 64-bit arch
@@ -864,6 +867,7 @@ endif
864867
mkdir -p openblas-$(OPENBLAS_VER) && \
865868
$(TAR) -C openblas-$(OPENBLAS_VER) --strip-components 1 -xf $<
866869
perl -i -ple 's/^\s*(EXTRALIB\s*\+=\s*-lSystemStubs)\s*$$/# $$1/g' openblas-$(OPENBLAS_VER)/Makefile.system
870+
cd openblas-$(OPENBLAS_VER) && patch -p1 < ../openblas-symbol-rename.patch
867871
echo 1 > $@
868872
$(OPENBLAS_OBJ_SOURCE): openblas-$(OPENBLAS_VER)/config.status
869873
$(MAKE) -C openblas-$(OPENBLAS_VER) $(OPENBLAS_BUILD_OPTS) || (echo "*** Clean the OpenBLAS build with 'make -C deps clean-openblas'. Rebuild with 'make OPENBLAS_USE_THREAD=0 if OpenBLAS had trouble linking libpthread.so, and with 'make OPENBLAS_TARGET_ARCH=NEHALEM' if there were errors building SandyBridge support. Both these options can also be used simultaneously. ***" && false)
@@ -1026,12 +1030,28 @@ install-lapack: $(LAPACK_OBJ_TARGET)
10261030

10271031
## ARPACK ##
10281032
ARPACK_FFLAGS = $(GFORTBLAS_FFLAGS)
1033+
ARPACK_CFLAGS =
10291034

10301035
ifeq ($(USE_BLAS64), 1)
10311036
ifeq ($(USEIFC),1)
10321037
ARPACK_FFLAGS += -i8
10331038
else
10341039
ARPACK_FFLAGS += -fdefault-integer-8
1040+
ifeq ($(USE_SYSTEM_BLAS), 0)
1041+
ifneq ($(USE_INTEL_MKL), 1)
1042+
ARPACK_FFLAGS += -cpp -ffixed-line-length-none
1043+
ARPACK_OPENBLASFCNS1 = axpy copy gemv geqr2 lacpy lahqr lanhs larnv lartg lascl laset scal trevc trmm trsen
1044+
ARPACK_OPENBLASFCNS2 = dot ger labad laev2 lamch lanst lanv2 lapy2 larf larfg lasr nrm2 orm2r rot steqr swap
1045+
ARPACK_OPENBLASFCNS3 = dotc geru unm2r
1046+
ARPACK_OPENBLASFCNS4 = COPY LABAD LAMCH LANHS LANV2 LARFG ROT
1047+
ARPACK_FFLAGS += $(foreach fcn, $(ARPACK_OPENBLASFCNS1) $(ARPACK_OPENBLASFCNS2), -Ds$(fcn)=s$(fcn)_64 -Dd$(fcn)=d$(fcn)_64)
1048+
ARPACK_FFLAGS += $(foreach fcn, $(ARPACK_OPENBLASFCNS1) $(ARPACK_OPENBLASFCNS3), -Dc$(fcn)=c$(fcn)_64 -Dz$(fcn)=z$(fcn)_64)
1049+
ARPACK_FFLAGS += $(foreach fcn, $(ARPACK_OPENBLASFCNS4), -DS$(fcn)=S$(fcn)_64 -DD$(fcn)=D$(fcn)_64)
1050+
ARPACK_FFLAGS += -Dscnrm2=scnrm2_64 -Ddznrm2=dznrm2_64 -Dcsscal=csscal_64 -Dzdscal=zdscal_64
1051+
# CFLAGS are for the configure checks
1052+
ARPACK_CFLAGS += -Dsgemm_=sgemm_64_ -Dcheev_=cheev_64_
1053+
endif
1054+
endif
10351055
endif
10361056
endif
10371057

@@ -1044,7 +1064,7 @@ ARPACK_OBJ_TARGET = $(build_shlibdir)/libarpack.$(SHLIB_EXT)
10441064

10451065
ARPACK_MFLAGS = F77="$(FC)" MPIF77="$(FC)"
10461066
ARPACK_FFLAGS += $(FFLAGS) $(JFFLAGS)
1047-
ARPACK_FLAGS = --with-blas="$(LIBBLAS)" --with-lapack="$(LIBLAPACK)" --disable-mpi --enable-shared FFLAGS="$(ARPACK_FFLAGS)"
1067+
ARPACK_FLAGS = --with-blas="$(LIBBLAS)" --with-lapack="$(LIBLAPACK)" --disable-mpi --enable-shared FFLAGS="$(ARPACK_FFLAGS)" CFLAGS="$(ARPACK_CFLAGS)"
10481068
ifneq ($(OS),WINNT)
10491069
ARPACK_FLAGS += LDFLAGS="$(LDFLAGS) -Wl,-rpath,'$(build_libdir)'"
10501070
endif
@@ -1287,8 +1307,16 @@ SUITESPARSE_OBJ_SOURCE = SuiteSparse-$(SUITESPARSE_VER)/UMFPACK/Lib/libumfpack.a
12871307
SUITESPARSE_OBJ_TARGET = $(build_shlibdir)/libspqr.$(SHLIB_EXT)
12881308

12891309
ifeq ($(USE_BLAS64), 1)
1290-
UMFPACK_CONFIG = -DLONGBLAS='long long'
1291-
CHOLMOD_CONFIG = -DLONGBLAS='long long'
1310+
UMFPACK_CONFIG = -DLONGBLAS='long long'
1311+
CHOLMOD_CONFIG = -DLONGBLAS='long long'
1312+
SPQR_CONFIG = -DLONGBLAS='long long'
1313+
ifeq ($(USE_SYSTEM_BLAS), 0)
1314+
ifneq ($(USE_INTEL_MKL), 1)
1315+
UMFPACK_CONFIG += -DSUN64
1316+
CHOLMOD_CONFIG += -DSUN64
1317+
SPQR_CONFIG += -DSUN64
1318+
endif
1319+
endif
12921320
endif
12931321

12941322
SUITE_SPARSE_LIB = -lm
@@ -1302,7 +1330,7 @@ SUITE_SPARSE_LIB += -Wl,-rpath,'$(build_libdir)'
13021330
endif
13031331
SUITESPARSE_MFLAGS = CC="$(CC)" CXX="$(CXX)" F77="$(FC)" AR="$(AR)" RANLIB="$(RANLIB)" BLAS="$(LIBBLAS)" LAPACK="$(LIBLAPACK)" \
13041332
INSTALL_LIB="$(build_libdir)" INSTALL_INCLUDE="$(build_includedir)" LIB="$(SUITE_SPARSE_LIB)" \
1305-
UMFPACK_CONFIG="$(UMFPACK_CONFIG)" CHOLMOD_CONFIG="$(CHOLMOD_CONFIG)"
1333+
UMFPACK_CONFIG="$(UMFPACK_CONFIG)" CHOLMOD_CONFIG="$(CHOLMOD_CONFIG)" SPQR_CONFIG="$(SPQR_CONFIG)"
13061334

13071335
SuiteSparse-$(SUITESPARSE_VER).tar.gz:
13081336
$(JLDOWNLOAD) $@ http://faculty.cse.tamu.edu/davis/SuiteSparse/$@

0 commit comments

Comments
 (0)