Add CPUID identification of Intel Ice Lake
[platform/upstream/openblas.git] / interface / geadd.c
1 /*********************************************************************/
2 /* Copyright 2009, 2010 The University of Texas at Austin.           */
3 /* All rights reserved.                                              */
4 /*                                                                   */
5 /* Redistribution and use in source and binary forms, with or        */
6 /* without modification, are permitted provided that the following   */
7 /* conditions are met:                                               */
8 /*                                                                   */
9 /*   1. Redistributions of source code must retain the above         */
10 /*      copyright notice, this list of conditions and the following  */
11 /*      disclaimer.                                                  */
12 /*                                                                   */
13 /*   2. Redistributions in binary form must reproduce the above      */
14 /*      copyright notice, this list of conditions and the following  */
15 /*      disclaimer in the documentation and/or other materials       */
16 /*      provided with the distribution.                              */
17 /*                                                                   */
18 /*    THIS  SOFTWARE IS PROVIDED  BY THE  UNIVERSITY OF  TEXAS AT    */
19 /*    AUSTIN  ``AS IS''  AND ANY  EXPRESS OR  IMPLIED WARRANTIES,    */
20 /*    INCLUDING, BUT  NOT LIMITED  TO, THE IMPLIED  WARRANTIES OF    */
21 /*    MERCHANTABILITY  AND FITNESS FOR  A PARTICULAR  PURPOSE ARE    */
22 /*    DISCLAIMED.  IN  NO EVENT SHALL THE UNIVERSITY  OF TEXAS AT    */
23 /*    AUSTIN OR CONTRIBUTORS BE  LIABLE FOR ANY DIRECT, INDIRECT,    */
24 /*    INCIDENTAL,  SPECIAL, EXEMPLARY,  OR  CONSEQUENTIAL DAMAGES    */
25 /*    (INCLUDING, BUT  NOT LIMITED TO,  PROCUREMENT OF SUBSTITUTE    */
26 /*    GOODS  OR  SERVICES; LOSS  OF  USE,  DATA,  OR PROFITS;  OR    */
27 /*    BUSINESS INTERRUPTION) HOWEVER CAUSED  AND ON ANY THEORY OF    */
28 /*    LIABILITY, WHETHER  IN CONTRACT, STRICT  LIABILITY, OR TORT    */
29 /*    (INCLUDING NEGLIGENCE OR OTHERWISE)  ARISING IN ANY WAY OUT    */
30 /*    OF  THE  USE OF  THIS  SOFTWARE,  EVEN  IF ADVISED  OF  THE    */
31 /*    POSSIBILITY OF SUCH DAMAGE.                                    */
32 /*                                                                   */
33 /* The views and conclusions contained in the software and           */
34 /* documentation are those of the authors and should not be          */
35 /* interpreted as representing official policies, either expressed   */
36 /* or implied, of The University of Texas at Austin.                 */
37 /*********************************************************************/
38
39 #include <stdio.h>
40 #include "common.h"
41 #ifdef FUNCTION_PROFILE
42 #include "functable.h"
43 #endif
44
45 #if defined(DOUBLE)
46 #define ERROR_NAME "DGEADD "
47 #else
48 #define ERROR_NAME "SGEADD "
49 #endif
50
51 #ifndef CBLAS
52
53 void NAME(blasint *M, blasint *N, FLOAT *ALPHA, FLOAT *a, blasint *LDA,
54                                   FLOAT *BETA,  FLOAT *c, blasint *LDC)
55 {
56
57   blasint m = *M;
58   blasint n = *N;
59   blasint lda = *LDA;
60   blasint ldc = *LDC; 
61   FLOAT alpha = *ALPHA;
62   FLOAT beta  = *BETA;
63
64   blasint info;
65
66   PRINT_DEBUG_NAME;
67
68   info = 0;
69
70
71   if (lda < MAX(1, m))  info = 6;
72   if (ldc < MAX(1, m))  info = 8;
73
74   if (n < 0)            info = 2;
75   if (m < 0)            info = 1;
76
77   if (info != 0){
78     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
79     return;
80   }
81
82 #else
83 void CNAME( enum CBLAS_ORDER order, blasint m,  blasint n,  FLOAT alpha, FLOAT *a,  blasint lda, FLOAT beta, 
84                   FLOAT *c,  blasint ldc)
85 {
86 /* 
87 void CNAME(enum CBLAS_ORDER order,
88            blasint m, blasint n,
89            FLOAT alpha,
90            FLOAT  *a, blasint lda,
91            FLOAT beta,
92            FLOAT  *c, blasint ldc){ */
93
94   blasint info, t;
95
96   PRINT_DEBUG_CNAME;
97
98   info  =  0;
99
100   if (order == CblasColMajor) {
101
102     info = -1;
103
104     if (ldc < MAX(1, m))  info = 8;
105     if (lda < MAX(1, m))  info = 5;
106     if (n < 0)            info = 2;
107     if (m < 0)            info = 1;
108
109   }
110
111   if (order == CblasRowMajor) {
112     info = -1;
113
114     t = n;
115     n = m;
116     m = t;
117
118     if (ldc < MAX(1, m))  info = 8;
119     if (lda < MAX(1, m))  info = 5;
120     if (n < 0)            info = 2;
121     if (m < 0)            info = 1;
122   }
123
124   if (info >= 0) {
125     BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME));
126     return;
127   }
128
129 #endif
130
131   if ((m==0) || (n==0)) return;
132
133
134   IDEBUG_START;
135
136   FUNCTION_PROFILE_START();
137
138
139   GEADD_K(m,n,alpha, a, lda, beta, c, ldc); 
140
141
142   FUNCTION_PROFILE_END(1, 2* m * n ,  2 * m * n);
143
144   IDEBUG_END;
145
146   return;
147
148 }