@@ -829,7 +829,10 @@ endif
829
829
830
830
# 64-bit BLAS interface
831
831
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
833
836
endif
834
837
835
838
# Decide whether to build for 32-bit or 64-bit arch
@@ -864,6 +867,7 @@ endif
864
867
mkdir -p openblas-$(OPENBLAS_VER) && \
865
868
$(TAR) -C openblas-$(OPENBLAS_VER) --strip-components 1 -xf $<
866
869
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
867
871
echo 1 > $@
868
872
$(OPENBLAS_OBJ_SOURCE ) : openblas-$(OPENBLAS_VER ) /config.status
869
873
$(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)
1026
1030
1027
1031
# # ARPACK ##
1028
1032
ARPACK_FFLAGS = $(GFORTBLAS_FFLAGS )
1033
+ ARPACK_CFLAGS =
1029
1034
1030
1035
ifeq ($(USE_BLAS64 ) , 1)
1031
1036
ifeq ($(USEIFC ) ,1)
1032
1037
ARPACK_FFLAGS += -i8
1033
1038
else
1034
1039
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
1035
1055
endif
1036
1056
endif
1037
1057
@@ -1044,7 +1064,7 @@ ARPACK_OBJ_TARGET = $(build_shlibdir)/libarpack.$(SHLIB_EXT)
1044
1064
1045
1065
ARPACK_MFLAGS = F77="$(FC ) " MPIF77="$(FC ) "
1046
1066
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 ) "
1048
1068
ifneq ($(OS ) ,WINNT)
1049
1069
ARPACK_FLAGS += LDFLAGS="$(LDFLAGS ) -Wl,-rpath,'$(build_libdir ) '"
1050
1070
endif
@@ -1287,8 +1307,16 @@ SUITESPARSE_OBJ_SOURCE = SuiteSparse-$(SUITESPARSE_VER)/UMFPACK/Lib/libumfpack.a
1287
1307
SUITESPARSE_OBJ_TARGET = $(build_shlibdir ) /libspqr.$(SHLIB_EXT )
1288
1308
1289
1309
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
1292
1320
endif
1293
1321
1294
1322
SUITE_SPARSE_LIB = -lm
@@ -1302,7 +1330,7 @@ SUITE_SPARSE_LIB += -Wl,-rpath,'$(build_libdir)'
1302
1330
endif
1303
1331
SUITESPARSE_MFLAGS = CC="$(CC ) " CXX="$(CXX ) " F77="$(FC ) " AR="$(AR ) " RANLIB="$(RANLIB ) " BLAS="$(LIBBLAS ) " LAPACK="$(LIBLAPACK ) " \
1304
1332
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 ) "
1306
1334
1307
1335
SuiteSparse-$(SUITESPARSE_VER ) .tar.gz :
1308
1336
$(JLDOWNLOAD ) $@ http://faculty.cse.tamu.edu/davis/SuiteSparse/$@
0 commit comments