Fixed #407. Support outputing the CPU corename on runtime.
[platform/upstream/openblas.git] / driver / others / openblas_get_config.c
1 /*****************************************************************************
2 Copyright (c) 2011,2012 Lab of Parallel Software and Computational Science,ISCAS
3 All rights reserved.
4
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are
7 met:
8
9    1. Redistributions of source code must retain the above copyright
10       notice, this list of conditions and the following disclaimer.
11
12    2. Redistributions in binary form must reproduce the above copyright
13       notice, this list of conditions and the following disclaimer in
14       the documentation and/or other materials provided with the
15       distribution.
16    3. Neither the name of the ISCAS nor the names of its contributors may
17       be used to endorse or promote products derived from this software
18       without specific prior written permission.
19
20 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
29 USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31 **********************************************************************************/
32
33 #include "common.h"
34
35 #include <string.h>
36
37 static char* openblas_config_str=""
38 #ifdef USE64BITINT
39   "USE64BITINT "
40 #endif
41 #ifdef NO_CBLAS
42   "NO_CBLAS "
43 #endif
44 #ifdef NO_LAPACK
45   "NO_LAPACK "
46 #endif
47 #ifdef NO_LAPACKE
48   "NO_LAPACKE "
49 #endif
50 #ifdef DYNAMIC_ARCH
51   "DYNAMIC_ARCH "
52 #endif
53 #ifdef NO_AFFINITY
54   "NO_AFFINITY "
55 #endif
56 #ifndef DYNAMIC_ARCH
57   CHAR_CORENAME
58 #endif
59   ;
60
61 #ifdef DYNAMIC_ARCH
62 char *gotoblas_corename();
63 static char tmp_config_str[256];
64 #endif
65
66
67 char* CNAME() {
68 #ifndef DYNAMIC_ARCH
69   return openblas_config_str;
70 #else
71   strcpy(tmp_config_str, openblas_config_str);
72   strcat(tmp_config_str, gotoblas_corename());
73   return tmp_config_str;
74 #endif
75 }
76
77
78 char* openblas_get_corename() {
79 #ifndef DYNAMIC_ARCH 
80   return CHAR_CORENAME;
81 #else
82   return gotoblas_corename();
83 #endif
84 }