Update LAPACK to 3.9.0
This commit is contained in:
parent
6d9ff11919
commit
e6ab4b0cab
|
@ -1,17 +1,21 @@
|
||||||
include ../../make.inc
|
TOPSRCDIR = ../..
|
||||||
|
include $(TOPSRCDIR)/make.inc
|
||||||
|
|
||||||
|
.SUFFIXES: .c .o
|
||||||
|
.c.o:
|
||||||
|
$(CC) $(CFLAGS) -I../include -c -o $@ $<
|
||||||
|
|
||||||
|
.PHONY: all
|
||||||
all: cblas_ex1 cblas_ex2
|
all: cblas_ex1 cblas_ex2
|
||||||
|
|
||||||
cblas_ex1: cblas_example1.o $(CBLASLIB) $(BLASLIB)
|
cblas_ex1: cblas_example1.o $(CBLASLIB) $(BLASLIB)
|
||||||
$(LOADER) $(LOADOPTS) -o $@ $^
|
$(FC) $(FFLAGS) $(LDFLAGS) -o $@ $^
|
||||||
cblas_ex2: cblas_example2.o $(CBLASLIB) $(BLASLIB)
|
cblas_ex2: cblas_example2.o $(CBLASLIB) $(BLASLIB)
|
||||||
$(LOADER) $(LOADOPTS) -o $@ $^
|
$(FC) $(FFLAGS) $(LDFLAGS) -o $@ $^
|
||||||
|
|
||||||
|
.PHONY: clean cleanobj cleanexe
|
||||||
clean: cleanobj cleanexe
|
clean: cleanobj cleanexe
|
||||||
cleanobj:
|
cleanobj:
|
||||||
rm -f *.o
|
rm -f *.o
|
||||||
cleanexe:
|
cleanexe:
|
||||||
rm -f cblas_ex1 cblas_ex2
|
rm -f cblas_ex1 cblas_ex2
|
||||||
|
|
||||||
.c.o:
|
|
||||||
$(CC) $(CFLAGS) -I../include -c -o $@ $<
|
|
||||||
|
|
|
@ -47,7 +47,7 @@ int main ( )
|
||||||
a[m*3+1] = 6;
|
a[m*3+1] = 6;
|
||||||
a[m*3+2] = 7;
|
a[m*3+2] = 7;
|
||||||
a[m*3+3] = 8;
|
a[m*3+3] = 8;
|
||||||
/* The elemetns of x and y */
|
/* The elements of x and y */
|
||||||
x[0] = 1;
|
x[0] = 1;
|
||||||
x[1] = 2;
|
x[1] = 2;
|
||||||
x[2] = 1;
|
x[2] = 1;
|
||||||
|
|
Loading…
Reference in New Issue