From 7ae71508348ea21a654f36536c317f4445117ac4 Mon Sep 17 00:00:00 2001 From: hishinuma_t Date: Mon, 7 Sep 2020 02:50:06 +0900 Subject: [PATCH 1/2] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index acc6799..fa9de52 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,8 @@ This library provides BLAS / Sparse BLAS functions for the following six types. ### Vector * d_real_vector * dd_real_vector -### Sparse matrix +### Sparse matrix (CRS format) * d_real_SpMat -* dd_real_SpMat It has BLAS Lv.1 and Sparse BLAS functions for these types. From e45bbdfcbb7857a5f7a593ee8fd745c51ca6dc16 Mon Sep 17 00:00:00 2001 From: doi Date: Fri, 9 Oct 2020 13:40:49 +0900 Subject: [PATCH 2/2] bug fix Makefile.avx512 --- src/Makefile.avx512 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile.avx512 b/src/Makefile.avx512 index f7b120f..943d5c5 100644 --- a/src/Makefile.avx512 +++ b/src/Makefile.avx512 @@ -1,7 +1,7 @@ TARGET=../lib/libdd-avx.so LINK=-I../include/ -I./core/ -L../lib/ -lqd -CXXFLAGS+=-O3 -std=c++17 -fopenmp -lm -g -fPIC +CXXFLAGS= -O3 -std=c++17 -fopenmp -lm -fPIC CXXFLAGS+= -DUSE_AVX512 -DUSE_FMA -mavx512f -mfma LIBFLAGS=-shared @@ -31,4 +31,4 @@ $(TARGET): $(OBJS) g++ $(CXXFLAGS) $(LIBFLAGS) $(LINK) $(OBJS) -o $(TARGET) $(OBJDIR)/%.o: %.cpp - g++ $(CXXFLAGS) $(LINK) -c $< -o $@ + g++ $(CXXFLAGS) $(LINK) -I../include -c $< -o $@