This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
OSchip
/
OpenBLAS
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
66
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Update LAPACK to 3.9.0
pull/2353/head
Martin Kroeker
GitHub
6 years ago
parent
82e45b23e6
commit
6f2f065471
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
2 changed files
with
7 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
lapack-netlib/BLAS/CMakeLists.txt
+6
-1
lapack-netlib/BLAS/Makefile
+ 1
- 0
lapack-netlib/BLAS/CMakeLists.txt
View File
@@ -6,4 +6,5 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/blas.pc.in ${CMAKE_CURRENT_BINARY_DIR
install(FILES
${CMAKE_CURRENT_BINARY_DIR}/blas.pc
DESTINATION ${PKG_CONFIG_DIR}
COMPONENT Development
)
+ 6
- 1
lapack-netlib/BLAS/Makefile
View File
@@ -1,13 +1,18 @@
include ../make.inc
TOPSRCDIR = ..
include $(TOPSRCDIR)/make.inc
.PHONY: all
all: blas
.PHONY: blas
blas:
$(MAKE) -C SRC
.PHONY: blas_testing
blas_testing: blas
$(MAKE) -C TESTING run
.PHONY: clean cleanobj cleanlib cleanexe cleantest
clean:
$(MAKE) -C SRC clean
$(MAKE) -C TESTING clean
Write
Preview
Loading…
Cancel
Save