File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 130
130
# include_dirs = /opt/OpenBLAS/include
131
131
# runtime_library_dirs = /opt/OpenBLAS/lib
132
132
133
+ # BLIS
134
+ # ----
135
+ # BLIS (https://github.com/flame/blis) also provides a BLAS interface. It's a
136
+ # relatively new library, its performance in some cases seems to match that of
137
+ # MKL and OpenBLAS, but it hasn't been benchmarked with Numpy or Scipy yet.
138
+ #
139
+ # Notes on compiling BLIS itself:
140
+ # - the CBLAS interface (needed by Numpy) isn't built by default; define
141
+ # BLIS_ENABLE_CBLAS to build it.
142
+ # - ``./configure auto`` doesn't support 32-bit builds, see gh-7294 for
143
+ # details.
144
+ # Notes on compiling Numpy against BLIS:
145
+ # - ``include_dirs`` below should be the directory where the BLIS cblas.h
146
+ # header is installed.
147
+ #
133
148
# [blis]
134
149
# libraries = blis
135
150
# library_dirs = /home/username/blis/lib
You can’t perform that action at this time.
0 commit comments