Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
HongzheWang
slapos
Commits
1b532896
Commit
1b532896
authored
Mar 04, 2015
by
Kazuhiko Shiozaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use OpenBLAS instead of ATLAS to build numpy.
parent
990062d1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
5 deletions
+26
-5
component/numpy/buildout.cfg
component/numpy/buildout.cfg
+5
-5
component/openblas/buildout.cfg
component/openblas/buildout.cfg
+21
-0
No files found.
component/numpy/buildout.cfg
View file @
1b532896
...
@@ -2,19 +2,19 @@
...
@@ -2,19 +2,19 @@
extends =
extends =
../gcc/buildout.cfg
../gcc/buildout.cfg
../
libat
las/buildout.cfg
../
openb
las/buildout.cfg
[numpy-env]
[numpy-env]
PATH = ${gcc-fortran:location}/bin:%(PATH)s
PATH = ${gcc-fortran:location}/bin:%(PATH)s
BLAS = ${
libatlas:location}/lib/libcblas.a
BLAS = ${
openblas:location}/lib/libopenblas.so
LAPACK = ${
libatlas:location}/lib/liblapack.a
LAPACK = ${
openblas:location}/lib/libopenblas.so
ATLAS = ${
libatlas:location}/lib/libatlas.a
ATLAS = ${
openblas:location}/lib/libopenblas.so
[numpy]
[numpy]
recipe = zc.recipe.egg:custom
recipe = zc.recipe.egg:custom
egg = numpy
egg = numpy
environment = numpy-env
environment = numpy-env
# no need to add libatlas location because they are statically linked.
rpath =
rpath =
${gcc-fortran:location}/lib
${gcc-fortran:location}/lib
${gcc-fortran:location}/lib64
${gcc-fortran:location}/lib64
${openblas:location}/lib
component/openblas/buildout.cfg
0 → 100644
View file @
1b532896
[buildout]
parts =
openblas
[openblas]
recipe = slapos.recipe.cmmi
url = http://github.com/xianyi/OpenBLAS/tarball/v0.2.13
md5sum = 74adf4c0d0d82bff4774be5bf2134183
configure-command = true
make-options =
PREFIX="${buildout:parts-directory}/${:_buildout_section_name_}"
BINARY="$(uname -m | grep -q x86_64 && echo 64 || echo 32)"
NO_STATIC=1
USE_OPENMP=1
USE_THREAD=1
# to build generic binary that supports multiple architecture in one binary
# DYNAMIC_ARCH=1
environment =
PATH=${gcc-fortran:location}/bin:%(PATH)s
LD_LIBRARY_PATH=${gcc-fortran:location}/lib:${gcc-fortran:location}/lib64
LDFLAGS=-Wl,-rpath=${gcc-fortran:location}/lib -Wl,-rpath=${gcc-fortran:location}/lib64
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment