fix build error
[platform/upstream/openblas.git] / Makefile.rule
1 #
2 #  Beginning of user configuration
3 #
4
5 # This library's version
6 VERSION = 0.3.7
7
8 # If you set the suffix, the library name will be libopenblas_$(LIBNAMESUFFIX).a
9 # and libopenblas_$(LIBNAMESUFFIX).so. Meanwhile, the soname in shared library
10 # is libopenblas_$(LIBNAMESUFFIX).so.0.
11 # LIBNAMESUFFIX = omp
12
13 # You can specify the target architecture, otherwise it's
14 # automatically detected.
15 # TARGET = PENRYN
16
17 # If you want to support multiple architecture in one binary
18 # DYNAMIC_ARCH = 1
19
20 # If you want the full list of x86_64 architectures supported in DYNAMIC_ARCH
21 # mode (including individual optimizied codes for PENRYN, DUNNINGTON, OPTERON,
22 # OPTERON_SSE3, ATOM and NANO rather than fallbacks to older architectures)
23 # DYNAMIC_OLDER = 1
24
25 # C compiler including binary type(32bit / 64bit). Default is gcc.
26 # Don't use Intel Compiler or PGI, it won't generate right codes as I expect.
27 # CC = gcc
28
29 # Fortran compiler. Default is g77.
30 # FC = gfortran
31
32 # Even you can specify cross compiler. Meanwhile, please set HOSTCC.
33
34 # cross compiler for Windows
35 # CC = x86_64-w64-mingw32-gcc
36 # FC = x86_64-w64-mingw32-gfortran
37
38 # cross compiler for 32bit ARM
39 # CC = arm-linux-gnueabihf-gcc
40 # FC = arm-linux-gnueabihf-gfortran
41
42 # cross compiler for 64bit ARM
43 # CC = aarch64-linux-gnu-gcc
44 # FC = aarch64-linux-gnu-gfortran
45
46
47 # If you use the cross compiler, please set this host compiler.
48 # HOSTCC = gcc
49
50 # If you need 32bit binary, define BINARY=32, otherwise define BINARY=64
51 # Please note that AVX is not available on 32-bit.
52 # Setting BINARY=32 disables AVX/AVX2/AVX-512.
53 # BINARY=64
54
55 # About threaded BLAS. It will be automatically detected if you don't
56 # specify it.
57 # For force setting for single threaded, specify USE_THREAD = 0
58 # For force setting for multi  threaded, specify USE_THREAD = 1
59 # USE_THREAD = 0
60
61 # If you want to build a single-threaded OpenBLAS, but expect to call this
62 # from several concurrent threads in some other program, comment this in for
63 # thread safety. (This is done automatically for USE_THREAD=1 , and should not
64 # be necessary when USE_OPENMP=1)
65 # USE_LOCKING = 1
66
67 # If you're going to use this library with OpenMP, please comment it in.
68 # This flag is always set for POWER8. Don't set USE_OPENMP = 0 if you're targeting POWER8.
69 # USE_OPENMP = 1
70
71 # The OpenMP scheduler to use - by default this is "static" and you
72 # will normally not want to change this unless you know that your main
73 # workload will involve tasks that have highly unbalanced running times
74 # for individual threads. Changing away from "static" may also adversely
75 # affect memory access locality in NUMA systems. Setting to "runtime" will
76 # allow you to select the scheduler from the environment variable OMP_SCHEDULE
77 # CCOMMON_OPT += -DOMP_SCHED=dynamic
78
79 # You can define the maximum number of threads. Basically it should be less
80 # than or equal to the number of CPU threads. If you don't specify one, it's
81 # automatically detected by the build system.
82 # If SMT (aka. HT) is enabled on the system, it may or may not be beneficial to 
83 # restrict NUM_THREADS to the number of physical cores. By default, the automatic 
84 # detection includes logical CPUs, thus allowing the use of SMT.
85 # Users may opt at runtime to use less than NUM_THREADS threads.
86 #
87 # Note for package maintainers: you can build OpenBLAS with a large NUM_THREADS
88 # value (eg. 32-256) if you expect your users to use that many threads. Due to the way
89 # some internal structures are allocated, using a large NUM_THREADS value has a RAM
90 # footprint penalty, even if users reduce the actual number of threads at runtime.
91 # NUM_THREADS = 24
92
93 # If you have enabled USE_OPENMP and your application would call
94 # OpenBLAS's calculation API from multiple threads, please comment this in.
95 # This flag defines how many instances of OpenBLAS's calculation API can actually
96 # run in parallel. If more than NUM_PARALLEL threads call OpenBLAS's calculation API,
97 # they need to wait for the preceding API calls to finish or risk data corruption.
98 # NUM_PARALLEL = 2
99
100 # If you don't need to install the static library, please comment this in.
101 # NO_STATIC = 1
102
103 # If you don't need to generate the shared library, please comment this in.
104 # NO_SHARED = 1
105
106 # If you don't need the CBLAS interface, please comment this in.
107 # NO_CBLAS = 1
108
109 # If you only want the CBLAS interface without installing a Fortran compiler,
110 # please comment this in.
111 # ONLY_CBLAS = 1
112
113 # If you don't need LAPACK, please comment this in.
114 # If you set NO_LAPACK=1, the build system automatically sets NO_LAPACKE=1.
115 # NO_LAPACK = 1
116
117 # If you don't need LAPACKE (C Interface to LAPACK), please comment this in.
118 # NO_LAPACKE = 1
119
120 # Build LAPACK Deprecated functions since LAPACK 3.6.0
121 BUILD_LAPACK_DEPRECATED = 1
122
123 # Build RecursiveLAPACK on top of LAPACK
124 # BUILD_RELAPACK = 1
125
126 # If you want to use the legacy threaded Level 3 implementation.
127 # USE_SIMPLE_THREADED_LEVEL3 = 1
128
129 # If you want to use the new, still somewhat experimental code that uses
130 # thread-local storage instead of a central memory buffer in memory.c
131 # Note that if your system uses GLIBC, it needs to have at least glibc 2.21
132 # for this to work.
133 # USE_TLS = 1
134
135 # If you want to drive whole 64bit region by BLAS. Not all Fortran
136 # compilers support this. It's safe to keep this commented out if you
137 # are not sure. (This is equivalent to the "-i8" ifort option).
138 # INTERFACE64 = 1
139
140 # Unfortunately most of kernel won't give us high quality buffer.
141 # BLAS tries to find the best region before entering main function,
142 # but it will consume time. If you don't like it, you can disable one.
143 NO_WARMUP = 1
144
145 # Comment this in if you want to disable OpenBLAS's CPU/Memory affinity handling.
146 # This feature is only implemented on Linux, and is always disabled on other platforms.
147 # Enabling affinity handling may improve performance, especially on NUMA systems, but 
148 # it may conflict with certain applications that also try to manage affinity.
149 # This conflict can result in threads of the application calling OpenBLAS ending up locked
150 # to the same core(s) as OpenBLAS, possibly binding all threads to a single core.
151 # For this reason, affinity handling is disabled by default. Can be safely enabled if nothing
152 # else modifies affinity settings.
153 # Note: enabling affinity has been known to cause problems with NumPy and R
154 NO_AFFINITY = 1
155
156 # If you are compiling for Linux and you have more than 16 numa nodes or more than 256 cpus
157 # BIGNUMA = 1
158
159 # Don't use AVX kernel on Sandy Bridge. It is compatible with old compilers
160 # and OS. However, the performance is low.
161 # NO_AVX = 1
162
163 # Don't use Haswell optimizations if binutils is too old (e.g. RHEL6)
164 # NO_AVX2 = 1
165
166 # Don't use SkylakeX optimizations if binutils or compiler are too old (the build
167 # system will try to determine this automatically)
168 # NO_AVX512 = 1
169
170 # Don't use parallel make.
171 # NO_PARALLEL_MAKE = 1
172
173 # Force number of make jobs. The default is the number of logical CPU of the host.
174 # This is particularly useful when using distcc.
175 # A negative value will disable adding a -j flag to make, allowing to use a parent
176 # make -j value. This is useful to call OpenBLAS make from an other project
177 # makefile
178 # MAKE_NB_JOBS = 2
179
180 # If you would like to know minute performance report of GotoBLAS.
181 # FUNCTION_PROFILE = 1
182
183 # Support for IEEE quad precision(it's *real* REAL*16)( under testing)
184 # This option should not be used - it is a holdover from unfinished code present
185 # in the original GotoBLAS2 library that may be usable as a starting point but
186 # is not even expected to compile in its present form.
187 # QUAD_PRECISION = 1
188
189 # Theads are still working for a while after finishing BLAS operation
190 # to reduce thread activate/deactivate overhead. You can determine
191 # time out to improve performance. This number should be from 4 to 30
192 # which corresponds to (1 << n) cycles. For example, if you set to 26,
193 # thread will be running for (1 << 26) cycles(about 25ms on 3.0GHz
194 # system). Also you can control this number by THREAD_TIMEOUT
195 # CCOMMON_OPT   += -DTHREAD_TIMEOUT=26
196
197 # Using special device driver for mapping physically contiguous memory
198 # to the user space. If bigphysarea is enabled, it will use it.
199 # DEVICEDRIVER_ALLOCATION = 1
200
201 # If you need to synchronize FP CSR between threads (for x86/x86_64 only).
202 # CONSISTENT_FPCSR = 1
203
204 # If any gemm argument m, n or k is less or equal this threshold, gemm will be execute
205 # with single thread. (Actually in recent versions this is a factor proportional to the
206 # number of floating point operations necessary for the given problem size, no longer
207 # an individual dimension). You can use this setting to avoid the overhead of multi-
208 # threading in small matrix sizes. The default value is 4, but values as high as 50 have 
209 # been reported to be optimal for certain workloads (50 is the recommended value for Julia).
210 # GEMM_MULTITHREAD_THRESHOLD = 4
211
212 # If you need sanity check by comparing results to reference BLAS. It'll be very
213 # slow (Not implemented yet).
214 # SANITY_CHECK = 1
215
216 # The installation directory.
217 # PREFIX = /opt/OpenBLAS
218
219 # Common Optimization Flag;
220 # The default -O2 is enough.
221 # Flags for POWER8 are defined in Makefile.power. Don't modify COMMON_OPT
222 # COMMON_OPT = -O2
223
224 # gfortran option for LAPACK to improve thread-safety
225 # It is enabled by default in Makefile.system for gfortran
226 # Flags for POWER8 are defined in Makefile.power. Don't modify FCOMMON_OPT
227 # FCOMMON_OPT = -frecursive
228
229 # Profiling flags
230 COMMON_PROF = -pg
231
232 # Build Debug version
233 # DEBUG = 1
234
235 # Set maximum stack allocation.
236 # The default value is 2048. 0 disable stack allocation a may reduce GER and GEMV
237 # performance. For details, https://github.com/xianyi/OpenBLAS/pull/482
238 #
239 # MAX_STACK_ALLOC = 0
240
241 # Add a prefix or suffix to all exported symbol names in the shared library.
242 # Avoid conflicts with other BLAS libraries, especially when using
243 # 64 bit integer interfaces in OpenBLAS.
244 # For details, https://github.com/xianyi/OpenBLAS/pull/459
245 #
246 # The same prefix and suffix are also added to the library name,
247 # i.e. you get lib$(SYMBOLPREFIX)openblas$(SYMBOLSUFFIX) rather than libopenblas
248 #
249 # SYMBOLPREFIX=
250 # SYMBOLSUFFIX=
251
252 # Run a C++ based thread safety tester after the build is done.
253 # This is mostly intended as a developer feature to spot regressions, but users and
254 # package maintainers can enable this if they have doubts about the thread safety of
255 # the library, given the configuration in this file.
256 # By default, the thread safety tester launches 52 concurrent calculations at the same
257 # time.
258 #
259 # Please note that the test uses ~1300 MiB of RAM for the DGEMM test.
260 #
261 # The test requires CBLAS to be built, a C++11 capable compiler and the presence of
262 # an OpenMP implementation. If you are cross-compiling this test will probably not
263 # work at all.
264 #
265 # CPP_THREAD_SAFETY_TEST = 1
266
267 #
268 #  End of user configuration
269 #