Browse Source

enabled and tested optimized potrf lapack functions

tags/v0.2.9^2
wernsaar 12 years ago
parent
commit
4f98f8c9b3
3 changed files with 13 additions and 13 deletions
  1. +8
    -8
      interface/Makefile
  2. +4
    -4
      lapack-netlib/SRC/Makefile
  3. +1
    -1
      lapack/Makefile

+ 8
- 8
interface/Makefile View File

@@ -348,7 +348,7 @@ XBLASOBJS = $(XBLAS1OBJS) $(XBLAS2OBJS) $(XBLAS3OBJS)
# slaswp.$(SUFFIX) sgetrs.$(SUFFIX) sgesv.$(SUFFIX) spotri.$(SUFFIX) \

SLAPACKOBJS = \
sgetrf.$(SUFFIX) sgetrs.$(SUFFIX)
sgetrf.$(SUFFIX) sgetrs.$(SUFFIX) spotrf.$(SUFFIX)


#DLAPACKOBJS = \
@@ -357,7 +357,7 @@ SLAPACKOBJS = \
# dlaswp.$(SUFFIX) dgetrs.$(SUFFIX) dgesv.$(SUFFIX) dpotri.$(SUFFIX) \

DLAPACKOBJS = \
dgetrf.$(SUFFIX) dgetrs.$(SUFFIX)
dgetrf.$(SUFFIX) dgetrs.$(SUFFIX) dpotrf.$(SUFFIX)

QLAPACKOBJS = \
qgetf2.$(SUFFIX) qgetrf.$(SUFFIX) qlauu2.$(SUFFIX) qlauum.$(SUFFIX) \
@@ -370,7 +370,7 @@ QLAPACKOBJS = \
# claswp.$(SUFFIX) cgetrs.$(SUFFIX) cgesv.$(SUFFIX) cpotri.$(SUFFIX) \

CLAPACKOBJS = \
cgetrf.$(SUFFIX) cgetrs.$(SUFFIX)
cgetrf.$(SUFFIX) cgetrs.$(SUFFIX) cpotrf.$(SUFFIX)


#ZLAPACKOBJS = \
@@ -379,7 +379,7 @@ CLAPACKOBJS = \
# zlaswp.$(SUFFIX) zgetrs.$(SUFFIX) zgesv.$(SUFFIX) zpotri.$(SUFFIX) \

ZLAPACKOBJS = \
zgetrf.$(SUFFIX) zgetrs.$(SUFFIX)
zgetrf.$(SUFFIX) zgetrs.$(SUFFIX) zpotrf.$(SUFFIX)

XLAPACKOBJS = \
xgetf2.$(SUFFIX) xgetrf.$(SUFFIX) xlauu2.$(SUFFIX) xlauum.$(SUFFIX) \
@@ -1835,19 +1835,19 @@ zpotf2.$(SUFFIX) zpotf2.$(PSUFFIX) : zpotf2.c
xpotf2.$(SUFFIX) xpotf2.$(PSUFFIX) : zpotf2.c
$(CC) -c $(CFLAGS) $< -o $(@F)

spotrf.$(SUFFIX) spotrf.$(PSUFFIX) : potrf.c
spotrf.$(SUFFIX) spotrf.$(PSUFFIX) : lapack/potrf.c
$(CC) -c $(CFLAGS) $< -o $(@F)

dpotrf.$(SUFFIX) dpotrf.$(PSUFFIX) : potrf.c
dpotrf.$(SUFFIX) dpotrf.$(PSUFFIX) : lapack/potrf.c
$(CC) -c $(CFLAGS) $< -o $(@F)

qpotrf.$(SUFFIX) qpotrf.$(PSUFFIX) : potrf.c
$(CC) -c $(CFLAGS) $< -o $(@F)

cpotrf.$(SUFFIX) cpotrf.$(PSUFFIX) : zpotrf.c
cpotrf.$(SUFFIX) cpotrf.$(PSUFFIX) : lapack/zpotrf.c
$(CC) -c $(CFLAGS) $< -o $(@F)

zpotrf.$(SUFFIX) zpotrf.$(PSUFFIX) : zpotrf.c
zpotrf.$(SUFFIX) zpotrf.$(PSUFFIX) : lapack/zpotrf.c
$(CC) -c $(CFLAGS) $< -o $(@F)

xpotrf.$(SUFFIX) xpotrf.$(PSUFFIX) : zpotrf.c


+ 4
- 4
lapack-netlib/SRC/Makefile View File

@@ -157,7 +157,7 @@ SLASRC = \
sgeqrt.o sgeqrt2.o sgeqrt3.o sgemqrt.o \
stpqrt.o stpqrt2.o stpmqrt.o stprfb.o

DSLASRC = spotrs.o spotrf.o
DSLASRC = spotrs.o

ifdef USEXBLAS
SXLASRC = sgesvxx.o sgerfsx.o sla_gerfsx_extended.o sla_geamv.o \
@@ -252,7 +252,7 @@ CXLASRC = cgesvxx.o cgerfsx.o cla_gerfsx_extended.o cla_geamv.o \
cla_lin_berr.o clarscl2.o clascl2.o cla_wwaddw.o
endif

ZCLASRC = cpotrs.o cpotrf.o
ZCLASRC = cpotrs.o

DLASRC = \
dgbbrd.o dgbcon.o dgbequ.o dgbrfs.o dgbsv.o \
@@ -287,7 +287,7 @@ DLASRC = \
dormr3.o dormrq.o dormrz.o dormtr.o dpbcon.o dpbequ.o dpbrfs.o \
dpbstf.o dpbsv.o dpbsvx.o \
dpbtf2.o dpbtrf.o dpbtrs.o dpocon.o dpoequ.o dporfs.o dposv.o \
dposvx.o dpotf2.o dpotrf.o dpotri.o dpotrs.o dpstrf.o dpstf2.o \
dposvx.o dpotf2.o dpotri.o dpotrs.o dpstrf.o dpstf2.o \
dppcon.o dppequ.o \
dpprfs.o dppsv.o dppsvx.o dpptrf.o dpptri.o dpptrs.o dptcon.o \
dpteqr.o dptrfs.o dptsv.o dptsvx.o dpttrs.o dptts2.o drscl.o \
@@ -372,7 +372,7 @@ ZLASRC = \
zlatbs.o zlatdf.o zlatps.o zlatrd.o zlatrs.o zlatrz.o zlatzm.o zlauu2.o \
zlauum.o zpbcon.o zpbequ.o zpbrfs.o zpbstf.o zpbsv.o \
zpbsvx.o zpbtf2.o zpbtrf.o zpbtrs.o zpocon.o zpoequ.o zporfs.o \
zposv.o zposvx.o zpotf2.o zpotrf.o zpotri.o zpotrs.o zpstrf.o zpstf2.o \
zposv.o zposvx.o zpotf2.o zpotri.o zpotrs.o zpstrf.o zpstf2.o \
zppcon.o zppequ.o zpprfs.o zppsv.o zppsvx.o zpptrf.o zpptri.o zpptrs.o \
zptcon.o zpteqr.o zptrfs.o zptsv.o zptsvx.o zpttrf.o zpttrs.o zptts2.o \
zrot.o zspcon.o zspmv.o zspr.o zsprfs.o zspsv.o \


+ 1
- 1
lapack/Makefile View File

@@ -2,7 +2,7 @@ TOPDIR = ..
include ../Makefile.system

#SUBDIRS = laswp getf2 getrf potf2 potrf lauu2 lauum trti2 trtri getrs
SUBDIRS = getrf getf2 laswp getrs
SUBDIRS = getrf getf2 laswp getrs potrf potf2

FLAMEDIRS = laswp getf2 potf2 lauu2 trti2



Loading…
Cancel
Save