You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

common_interface.h 46 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747
  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. #ifndef ASSEMBLER
  39. #ifdef __cplusplus
  40. extern "C" {
  41. /* Assume C declarations for C++ */
  42. #endif /* __cplusplus */
  43. int BLASFUNC(xerbla)(char *, blasint *info, blasint);
  44. FLOATRET BLASFUNC(sdot) (blasint *, float *, blasint *, float *, blasint *);
  45. FLOATRET BLASFUNC(sdsdot)(blasint *, float *, float *, blasint *, float *, blasint *);
  46. double BLASFUNC(dsdot) (blasint *, float *, blasint *, float *, blasint *);
  47. double BLASFUNC(ddot) (blasint *, double *, blasint *, double *, blasint *);
  48. xdouble BLASFUNC(qdot) (blasint *, xdouble *, blasint *, xdouble *, blasint *);
  49. #ifdef RETURN_BY_STRUCT
  50. typedef struct {
  51. float r, i;
  52. } myccomplex_t;
  53. typedef struct {
  54. double r, i;
  55. } myzcomplex_t;
  56. typedef struct {
  57. xdouble r, i;
  58. } myxcomplex_t;
  59. myccomplex_t BLASFUNC(cdotu) (blasint *, float *, blasint *, float *, blasint *);
  60. myccomplex_t BLASFUNC(cdotc) (blasint *, float *, blasint *, float *, blasint *);
  61. myzcomplex_t BLASFUNC(zdotu) (blasint *, double *, blasint *, double *, blasint *);
  62. myzcomplex_t BLASFUNC(zdotc) (blasint *, double *, blasint *, double *, blasint *);
  63. myxcomplex_t BLASFUNC(xdotu) (blasint *, xdouble *, blasint *, xdouble *, blasint *);
  64. myxcomplex_t BLASFUNC(xdotc) (blasint *, xdouble *, blasint *, xdouble *, blasint *);
  65. #elif defined RETURN_BY_STACK
  66. void BLASFUNC(cdotu) (float _Complex *, blasint *, float * , blasint *, float *, blasint *);
  67. void BLASFUNC(cdotc) (float _Complex *, blasint *, float *, blasint *, float *, blasint *);
  68. void BLASFUNC(zdotu) (double _Complex *, blasint *, double *, blasint *, double *, blasint *);
  69. void BLASFUNC(zdotc) (double _Complex *, blasint *, double *, blasint *, double *, blasint *);
  70. void BLASFUNC(xdotu) (xdouble _Complex *, blasint *, xdouble *, blasint *, xdouble *, blasint *);
  71. void BLASFUNC(xdotc) (xdouble _Complex *, blasint *, xdouble *, blasint *, xdouble *, blasint *);
  72. #else
  73. float _Complex BLASFUNC(cdotu) (blasint *, float *, blasint *, float *, blasint *);
  74. float _Complex BLASFUNC(cdotc) (blasint *, float *, blasint *, float *, blasint *);
  75. double _Complex BLASFUNC(zdotu) (blasint *, double *, blasint *, double *, blasint *);
  76. double _Complex BLASFUNC(zdotc) (blasint *, double *, blasint *, double *, blasint *);
  77. xdouble _Complex BLASFUNC(xdotu) (blasint *, xdouble *, blasint *, xdouble *, blasint *);
  78. xdouble _Complex BLASFUNC(xdotc) (blasint *, xdouble *, blasint *, xdouble *, blasint *);
  79. #endif
  80. void BLASFUNC(saxpy) (blasint *, float *, float *, blasint *, float *, blasint *);
  81. void BLASFUNC(daxpy) (blasint *, double *, double *, blasint *, double *, blasint *);
  82. void BLASFUNC(qaxpy) (blasint *, xdouble *, xdouble *, blasint *, xdouble *, blasint *);
  83. void BLASFUNC(caxpy) (blasint *, float *, float *, blasint *, float *, blasint *);
  84. void BLASFUNC(zaxpy) (blasint *, double *, double *, blasint *, double *, blasint *);
  85. void BLASFUNC(xaxpy) (blasint *, xdouble *, xdouble *, blasint *, xdouble *, blasint *);
  86. void BLASFUNC(caxpyc)(blasint *, float *, float *, blasint *, float *, blasint *);
  87. void BLASFUNC(zaxpyc)(blasint *, double *, double *, blasint *, double *, blasint *);
  88. void BLASFUNC(xaxpyc)(blasint *, xdouble *, xdouble *, blasint *, xdouble *, blasint *);
  89. void BLASFUNC(scopy) (blasint *, float *, blasint *, float *, blasint *);
  90. void BLASFUNC(dcopy) (blasint *, double *, blasint *, double *, blasint *);
  91. void BLASFUNC(qcopy) (blasint *, xdouble *, blasint *, xdouble *, blasint *);
  92. void BLASFUNC(ccopy) (blasint *, float *, blasint *, float *, blasint *);
  93. void BLASFUNC(zcopy) (blasint *, double *, blasint *, double *, blasint *);
  94. void BLASFUNC(xcopy) (blasint *, xdouble *, blasint *, xdouble *, blasint *);
  95. void BLASFUNC(sswap) (blasint *, float *, blasint *, float *, blasint *);
  96. void BLASFUNC(dswap) (blasint *, double *, blasint *, double *, blasint *);
  97. void BLASFUNC(qswap) (blasint *, xdouble *, blasint *, xdouble *, blasint *);
  98. void BLASFUNC(cswap) (blasint *, float *, blasint *, float *, blasint *);
  99. void BLASFUNC(zswap) (blasint *, double *, blasint *, double *, blasint *);
  100. void BLASFUNC(xswap) (blasint *, xdouble *, blasint *, xdouble *, blasint *);
  101. FLOATRET BLASFUNC(sasum) (blasint *, float *, blasint *);
  102. FLOATRET BLASFUNC(scasum)(blasint *, float *, blasint *);
  103. double BLASFUNC(dasum) (blasint *, double *, blasint *);
  104. xdouble BLASFUNC(qasum) (blasint *, xdouble *, blasint *);
  105. double BLASFUNC(dzasum)(blasint *, double *, blasint *);
  106. xdouble BLASFUNC(qxasum)(blasint *, xdouble *, blasint *);
  107. blasint BLASFUNC(isamax)(blasint *, float *, blasint *);
  108. blasint BLASFUNC(idamax)(blasint *, double *, blasint *);
  109. blasint BLASFUNC(iqamax)(blasint *, xdouble *, blasint *);
  110. blasint BLASFUNC(icamax)(blasint *, float *, blasint *);
  111. blasint BLASFUNC(izamax)(blasint *, double *, blasint *);
  112. blasint BLASFUNC(ixamax)(blasint *, xdouble *, blasint *);
  113. blasint BLASFUNC(ismax) (blasint *, float *, blasint *);
  114. blasint BLASFUNC(idmax) (blasint *, double *, blasint *);
  115. blasint BLASFUNC(iqmax) (blasint *, xdouble *, blasint *);
  116. blasint BLASFUNC(icmax) (blasint *, float *, blasint *);
  117. blasint BLASFUNC(izmax) (blasint *, double *, blasint *);
  118. blasint BLASFUNC(ixmax) (blasint *, xdouble *, blasint *);
  119. blasint BLASFUNC(isamin)(blasint *, float *, blasint *);
  120. blasint BLASFUNC(idamin)(blasint *, double *, blasint *);
  121. blasint BLASFUNC(iqamin)(blasint *, xdouble *, blasint *);
  122. blasint BLASFUNC(icamin)(blasint *, float *, blasint *);
  123. blasint BLASFUNC(izamin)(blasint *, double *, blasint *);
  124. blasint BLASFUNC(ixamin)(blasint *, xdouble *, blasint *);
  125. blasint BLASFUNC(ismin)(blasint *, float *, blasint *);
  126. blasint BLASFUNC(idmin)(blasint *, double *, blasint *);
  127. blasint BLASFUNC(iqmin)(blasint *, xdouble *, blasint *);
  128. blasint BLASFUNC(icmin)(blasint *, float *, blasint *);
  129. blasint BLASFUNC(izmin)(blasint *, double *, blasint *);
  130. blasint BLASFUNC(ixmin)(blasint *, xdouble *, blasint *);
  131. FLOATRET BLASFUNC(samax) (blasint *, float *, blasint *);
  132. double BLASFUNC(damax) (blasint *, double *, blasint *);
  133. xdouble BLASFUNC(qamax) (blasint *, xdouble *, blasint *);
  134. FLOATRET BLASFUNC(scamax)(blasint *, float *, blasint *);
  135. double BLASFUNC(dzamax)(blasint *, double *, blasint *);
  136. xdouble BLASFUNC(qxamax)(blasint *, xdouble *, blasint *);
  137. FLOATRET BLASFUNC(samin) (blasint *, float *, blasint *);
  138. double BLASFUNC(damin) (blasint *, double *, blasint *);
  139. xdouble BLASFUNC(qamin) (blasint *, xdouble *, blasint *);
  140. FLOATRET BLASFUNC(scamin)(blasint *, float *, blasint *);
  141. double BLASFUNC(dzamin)(blasint *, double *, blasint *);
  142. xdouble BLASFUNC(qxamin)(blasint *, xdouble *, blasint *);
  143. FLOATRET BLASFUNC(smax) (blasint *, float *, blasint *);
  144. double BLASFUNC(dmax) (blasint *, double *, blasint *);
  145. xdouble BLASFUNC(qmax) (blasint *, xdouble *, blasint *);
  146. FLOATRET BLASFUNC(scmax) (blasint *, float *, blasint *);
  147. double BLASFUNC(dzmax) (blasint *, double *, blasint *);
  148. xdouble BLASFUNC(qxmax) (blasint *, xdouble *, blasint *);
  149. FLOATRET BLASFUNC(smin) (blasint *, float *, blasint *);
  150. double BLASFUNC(dmin) (blasint *, double *, blasint *);
  151. xdouble BLASFUNC(qmin) (blasint *, xdouble *, blasint *);
  152. FLOATRET BLASFUNC(scmin) (blasint *, float *, blasint *);
  153. double BLASFUNC(dzmin) (blasint *, double *, blasint *);
  154. xdouble BLASFUNC(qxmin) (blasint *, xdouble *, blasint *);
  155. void BLASFUNC(sscal) (blasint *, float *, float *, blasint *);
  156. void BLASFUNC(dscal) (blasint *, double *, double *, blasint *);
  157. void BLASFUNC(qscal) (blasint *, xdouble *, xdouble *, blasint *);
  158. void BLASFUNC(cscal) (blasint *, float *, float *, blasint *);
  159. void BLASFUNC(zscal) (blasint *, double *, double *, blasint *);
  160. void BLASFUNC(xscal) (blasint *, xdouble *, xdouble *, blasint *);
  161. void BLASFUNC(csscal)(blasint *, float *, float *, blasint *);
  162. void BLASFUNC(zdscal)(blasint *, double *, double *, blasint *);
  163. void BLASFUNC(xqscal)(blasint *, xdouble *, xdouble *, blasint *);
  164. FLOATRET BLASFUNC(snrm2) (blasint *, float *, blasint *);
  165. FLOATRET BLASFUNC(scnrm2)(blasint *, float *, blasint *);
  166. double BLASFUNC(dnrm2) (blasint *, double *, blasint *);
  167. xdouble BLASFUNC(qnrm2) (blasint *, xdouble *, blasint *);
  168. double BLASFUNC(dznrm2)(blasint *, double *, blasint *);
  169. xdouble BLASFUNC(qxnrm2)(blasint *, xdouble *, blasint *);
  170. void BLASFUNC(srot) (blasint *, float *, blasint *, float *, blasint *, float *, float *);
  171. void BLASFUNC(drot) (blasint *, double *, blasint *, double *, blasint *, double *, double *);
  172. void BLASFUNC(qrot) (blasint *, xdouble *, blasint *, xdouble *, blasint *, xdouble *, xdouble *);
  173. void BLASFUNC(csrot) (blasint *, float *, blasint *, float *, blasint *, float *, float *);
  174. void BLASFUNC(zdrot) (blasint *, double *, blasint *, double *, blasint *, double *, double *);
  175. void BLASFUNC(xqrot) (blasint *, xdouble *, blasint *, xdouble *, blasint *, xdouble *, xdouble *);
  176. void BLASFUNC(srotg) (float *, float *, float *, float *);
  177. void BLASFUNC(drotg) (double *, double *, double *, double *);
  178. void BLASFUNC(qrotg) (xdouble *, xdouble *, xdouble *, xdouble *);
  179. void BLASFUNC(crotg) (float *, float *, float *, float *);
  180. void BLASFUNC(zrotg) (double *, double *, double *, double *);
  181. void BLASFUNC(xrotg) (xdouble *, xdouble *, xdouble *, xdouble *);
  182. void BLASFUNC(srotmg)(float *, float *, float *, float *, float *);
  183. void BLASFUNC(drotmg)(double *, double *, double *, double *, double *);
  184. void BLASFUNC(srotm) (blasint *, float *, blasint *, float *, blasint *, float *);
  185. void BLASFUNC(drotm) (blasint *, double *, blasint *, double *, blasint *, double *);
  186. void BLASFUNC(qrotm) (blasint *, xdouble *, blasint *, xdouble *, blasint *, xdouble *);
  187. /* Level 2 routines */
  188. void BLASFUNC(sger)(blasint *, blasint *, float *, float *, blasint *,
  189. float *, blasint *, float *, blasint *);
  190. void BLASFUNC(dger)(blasint *, blasint *, double *, double *, blasint *,
  191. double *, blasint *, double *, blasint *);
  192. void BLASFUNC(qger)(blasint *, blasint *, xdouble *, xdouble *, blasint *,
  193. xdouble *, blasint *, xdouble *, blasint *);
  194. void BLASFUNC(cgeru)(blasint *, blasint *, float *, float *, blasint *,
  195. float *, blasint *, float *, blasint *);
  196. void BLASFUNC(cgerc)(blasint *, blasint *, float *, float *, blasint *,
  197. float *, blasint *, float *, blasint *);
  198. void BLASFUNC(zgeru)(blasint *, blasint *, double *, double *, blasint *,
  199. double *, blasint *, double *, blasint *);
  200. void BLASFUNC(zgerc)(blasint *, blasint *, double *, double *, blasint *,
  201. double *, blasint *, double *, blasint *);
  202. void BLASFUNC(xgeru)(blasint *, blasint *, xdouble *, xdouble *, blasint *,
  203. xdouble *, blasint *, xdouble *, blasint *);
  204. void BLASFUNC(xgerc)(blasint *, blasint *, xdouble *, xdouble *, blasint *,
  205. xdouble *, blasint *, xdouble *, blasint *);
  206. void BLASFUNC(sgemv)(char *, blasint *, blasint *, float *, float *, blasint *,
  207. float *, blasint *, float *, float *, blasint *);
  208. void BLASFUNC(dgemv)(char *, blasint *, blasint *, double *, double *, blasint *,
  209. double *, blasint *, double *, double *, blasint *);
  210. void BLASFUNC(qgemv)(char *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  211. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  212. void BLASFUNC(cgemv)(char *, blasint *, blasint *, float *, float *, blasint *,
  213. float *, blasint *, float *, float *, blasint *);
  214. void BLASFUNC(zgemv)(char *, blasint *, blasint *, double *, double *, blasint *,
  215. double *, blasint *, double *, double *, blasint *);
  216. void BLASFUNC(xgemv)(char *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  217. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  218. void BLASFUNC(strsv) (char *, char *, char *, blasint *, float *, blasint *,
  219. float *, blasint *);
  220. void BLASFUNC(dtrsv) (char *, char *, char *, blasint *, double *, blasint *,
  221. double *, blasint *);
  222. void BLASFUNC(qtrsv) (char *, char *, char *, blasint *, xdouble *, blasint *,
  223. xdouble *, blasint *);
  224. void BLASFUNC(ctrsv) (char *, char *, char *, blasint *, float *, blasint *,
  225. float *, blasint *);
  226. void BLASFUNC(ztrsv) (char *, char *, char *, blasint *, double *, blasint *,
  227. double *, blasint *);
  228. void BLASFUNC(xtrsv) (char *, char *, char *, blasint *, xdouble *, blasint *,
  229. xdouble *, blasint *);
  230. void BLASFUNC(strmv) (char *, char *, char *, blasint *, float *, blasint *,
  231. float *, blasint *);
  232. void BLASFUNC(dtrmv) (char *, char *, char *, blasint *, double *, blasint *,
  233. double *, blasint *);
  234. void BLASFUNC(qtrmv) (char *, char *, char *, blasint *, xdouble *, blasint *,
  235. xdouble *, blasint *);
  236. void BLASFUNC(ctrmv) (char *, char *, char *, blasint *, float *, blasint *,
  237. float *, blasint *);
  238. void BLASFUNC(ztrmv) (char *, char *, char *, blasint *, double *, blasint *,
  239. double *, blasint *);
  240. void BLASFUNC(xtrmv) (char *, char *, char *, blasint *, xdouble *, blasint *,
  241. xdouble *, blasint *);
  242. void BLASFUNC(stpsv) (char *, char *, char *, blasint *, float *, float *, blasint *);
  243. void BLASFUNC(dtpsv) (char *, char *, char *, blasint *, double *, double *, blasint *);
  244. void BLASFUNC(qtpsv) (char *, char *, char *, blasint *, xdouble *, xdouble *, blasint *);
  245. void BLASFUNC(ctpsv) (char *, char *, char *, blasint *, float *, float *, blasint *);
  246. void BLASFUNC(ztpsv) (char *, char *, char *, blasint *, double *, double *, blasint *);
  247. void BLASFUNC(xtpsv) (char *, char *, char *, blasint *, xdouble *, xdouble *, blasint *);
  248. void BLASFUNC(stpmv) (char *, char *, char *, blasint *, float *, float *, blasint *);
  249. void BLASFUNC(dtpmv) (char *, char *, char *, blasint *, double *, double *, blasint *);
  250. void BLASFUNC(qtpmv) (char *, char *, char *, blasint *, xdouble *, xdouble *, blasint *);
  251. void BLASFUNC(ctpmv) (char *, char *, char *, blasint *, float *, float *, blasint *);
  252. void BLASFUNC(ztpmv) (char *, char *, char *, blasint *, double *, double *, blasint *);
  253. void BLASFUNC(xtpmv) (char *, char *, char *, blasint *, xdouble *, xdouble *, blasint *);
  254. void BLASFUNC(stbmv) (char *, char *, char *, blasint *, blasint *, float *, blasint *, float *, blasint *);
  255. void BLASFUNC(dtbmv) (char *, char *, char *, blasint *, blasint *, double *, blasint *, double *, blasint *);
  256. void BLASFUNC(qtbmv) (char *, char *, char *, blasint *, blasint *, xdouble *, blasint *, xdouble *, blasint *);
  257. void BLASFUNC(ctbmv) (char *, char *, char *, blasint *, blasint *, float *, blasint *, float *, blasint *);
  258. void BLASFUNC(ztbmv) (char *, char *, char *, blasint *, blasint *, double *, blasint *, double *, blasint *);
  259. void BLASFUNC(xtbmv) (char *, char *, char *, blasint *, blasint *, xdouble *, blasint *, xdouble *, blasint *);
  260. void BLASFUNC(stbsv) (char *, char *, char *, blasint *, blasint *, float *, blasint *, float *, blasint *);
  261. void BLASFUNC(dtbsv) (char *, char *, char *, blasint *, blasint *, double *, blasint *, double *, blasint *);
  262. void BLASFUNC(qtbsv) (char *, char *, char *, blasint *, blasint *, xdouble *, blasint *, xdouble *, blasint *);
  263. void BLASFUNC(ctbsv) (char *, char *, char *, blasint *, blasint *, float *, blasint *, float *, blasint *);
  264. void BLASFUNC(ztbsv) (char *, char *, char *, blasint *, blasint *, double *, blasint *, double *, blasint *);
  265. void BLASFUNC(xtbsv) (char *, char *, char *, blasint *, blasint *, xdouble *, blasint *, xdouble *, blasint *);
  266. void BLASFUNC(ssymv) (char *, blasint *, float *, float *, blasint *,
  267. float *, blasint *, float *, float *, blasint *);
  268. void BLASFUNC(dsymv) (char *, blasint *, double *, double *, blasint *,
  269. double *, blasint *, double *, double *, blasint *);
  270. void BLASFUNC(qsymv) (char *, blasint *, xdouble *, xdouble *, blasint *,
  271. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  272. void BLASFUNC(csymv) (char *, blasint *, float *, float *, blasint *,
  273. float *, blasint *, float *, float *, blasint *);
  274. void BLASFUNC(zsymv) (char *, blasint *, double *, double *, blasint *,
  275. double *, blasint *, double *, double *, blasint *);
  276. void BLASFUNC(xsymv) (char *, blasint *, xdouble *, xdouble *, blasint *,
  277. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  278. void BLASFUNC(sspmv) (char *, blasint *, float *, float *,
  279. float *, blasint *, float *, float *, blasint *);
  280. void BLASFUNC(dspmv) (char *, blasint *, double *, double *,
  281. double *, blasint *, double *, double *, blasint *);
  282. void BLASFUNC(qspmv) (char *, blasint *, xdouble *, xdouble *,
  283. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  284. void BLASFUNC(cspmv) (char *, blasint *, float *, float *,
  285. float *, blasint *, float *, float *, blasint *);
  286. void BLASFUNC(zspmv) (char *, blasint *, double *, double *,
  287. double *, blasint *, double *, double *, blasint *);
  288. void BLASFUNC(xspmv) (char *, blasint *, xdouble *, xdouble *,
  289. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  290. void BLASFUNC(ssyr) (char *, blasint *, float *, float *, blasint *,
  291. float *, blasint *);
  292. void BLASFUNC(dsyr) (char *, blasint *, double *, double *, blasint *,
  293. double *, blasint *);
  294. void BLASFUNC(qsyr) (char *, blasint *, xdouble *, xdouble *, blasint *,
  295. xdouble *, blasint *);
  296. void BLASFUNC(csyr) (char *, blasint *, float *, float *, blasint *,
  297. float *, blasint *);
  298. void BLASFUNC(zsyr) (char *, blasint *, double *, double *, blasint *,
  299. double *, blasint *);
  300. void BLASFUNC(xsyr) (char *, blasint *, xdouble *, xdouble *, blasint *,
  301. xdouble *, blasint *);
  302. void BLASFUNC(ssyr2) (char *, blasint *, float *,
  303. float *, blasint *, float *, blasint *, float *, blasint *);
  304. void BLASFUNC(dsyr2) (char *, blasint *, double *,
  305. double *, blasint *, double *, blasint *, double *, blasint *);
  306. void BLASFUNC(qsyr2) (char *, blasint *, xdouble *,
  307. xdouble *, blasint *, xdouble *, blasint *, xdouble *, blasint *);
  308. void BLASFUNC(csyr2) (char *, blasint *, float *,
  309. float *, blasint *, float *, blasint *, float *, blasint *);
  310. void BLASFUNC(zsyr2) (char *, blasint *, double *,
  311. double *, blasint *, double *, blasint *, double *, blasint *);
  312. void BLASFUNC(xsyr2) (char *, blasint *, xdouble *,
  313. xdouble *, blasint *, xdouble *, blasint *, xdouble *, blasint *);
  314. void BLASFUNC(sspr) (char *, blasint *, float *, float *, blasint *,
  315. float *);
  316. void BLASFUNC(dspr) (char *, blasint *, double *, double *, blasint *,
  317. double *);
  318. void BLASFUNC(qspr) (char *, blasint *, xdouble *, xdouble *, blasint *,
  319. xdouble *);
  320. void BLASFUNC(cspr) (char *, blasint *, float *, float *, blasint *,
  321. float *);
  322. void BLASFUNC(zspr) (char *, blasint *, double *, double *, blasint *,
  323. double *);
  324. void BLASFUNC(xspr) (char *, blasint *, xdouble *, xdouble *, blasint *,
  325. xdouble *);
  326. void BLASFUNC(sspr2) (char *, blasint *, float *,
  327. float *, blasint *, float *, blasint *, float *);
  328. void BLASFUNC(dspr2) (char *, blasint *, double *,
  329. double *, blasint *, double *, blasint *, double *);
  330. void BLASFUNC(qspr2) (char *, blasint *, xdouble *,
  331. xdouble *, blasint *, xdouble *, blasint *, xdouble *);
  332. void BLASFUNC(cspr2) (char *, blasint *, float *,
  333. float *, blasint *, float *, blasint *, float *);
  334. void BLASFUNC(zspr2) (char *, blasint *, double *,
  335. double *, blasint *, double *, blasint *, double *);
  336. void BLASFUNC(xspr2) (char *, blasint *, xdouble *,
  337. xdouble *, blasint *, xdouble *, blasint *, xdouble *);
  338. void BLASFUNC(cher) (char *, blasint *, float *, float *, blasint *,
  339. float *, blasint *);
  340. void BLASFUNC(zher) (char *, blasint *, double *, double *, blasint *,
  341. double *, blasint *);
  342. void BLASFUNC(xher) (char *, blasint *, xdouble *, xdouble *, blasint *,
  343. xdouble *, blasint *);
  344. void BLASFUNC(chpr) (char *, blasint *, float *, float *, blasint *, float *);
  345. void BLASFUNC(zhpr) (char *, blasint *, double *, double *, blasint *, double *);
  346. void BLASFUNC(xhpr) (char *, blasint *, xdouble *, xdouble *, blasint *, xdouble *);
  347. void BLASFUNC(cher2) (char *, blasint *, float *,
  348. float *, blasint *, float *, blasint *, float *, blasint *);
  349. void BLASFUNC(zher2) (char *, blasint *, double *,
  350. double *, blasint *, double *, blasint *, double *, blasint *);
  351. void BLASFUNC(xher2) (char *, blasint *, xdouble *,
  352. xdouble *, blasint *, xdouble *, blasint *, xdouble *, blasint *);
  353. void BLASFUNC(chpr2) (char *, blasint *, float *,
  354. float *, blasint *, float *, blasint *, float *);
  355. void BLASFUNC(zhpr2) (char *, blasint *, double *,
  356. double *, blasint *, double *, blasint *, double *);
  357. void BLASFUNC(xhpr2) (char *, blasint *, xdouble *,
  358. xdouble *, blasint *, xdouble *, blasint *, xdouble *);
  359. void BLASFUNC(chemv) (char *, blasint *, float *, float *, blasint *,
  360. float *, blasint *, float *, float *, blasint *);
  361. void BLASFUNC(zhemv) (char *, blasint *, double *, double *, blasint *,
  362. double *, blasint *, double *, double *, blasint *);
  363. void BLASFUNC(xhemv) (char *, blasint *, xdouble *, xdouble *, blasint *,
  364. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  365. void BLASFUNC(chpmv) (char *, blasint *, float *, float *,
  366. float *, blasint *, float *, float *, blasint *);
  367. void BLASFUNC(zhpmv) (char *, blasint *, double *, double *,
  368. double *, blasint *, double *, double *, blasint *);
  369. void BLASFUNC(xhpmv) (char *, blasint *, xdouble *, xdouble *,
  370. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  371. int BLASFUNC(snorm)(char *, blasint *, blasint *, float *, blasint *);
  372. int BLASFUNC(dnorm)(char *, blasint *, blasint *, double *, blasint *);
  373. int BLASFUNC(cnorm)(char *, blasint *, blasint *, float *, blasint *);
  374. int BLASFUNC(znorm)(char *, blasint *, blasint *, double *, blasint *);
  375. void BLASFUNC(sgbmv)(char *, blasint *, blasint *, blasint *, blasint *, float *, float *, blasint *,
  376. float *, blasint *, float *, float *, blasint *);
  377. void BLASFUNC(dgbmv)(char *, blasint *, blasint *, blasint *, blasint *, double *, double *, blasint *,
  378. double *, blasint *, double *, double *, blasint *);
  379. void BLASFUNC(qgbmv)(char *, blasint *, blasint *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  380. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  381. void BLASFUNC(cgbmv)(char *, blasint *, blasint *, blasint *, blasint *, float *, float *, blasint *,
  382. float *, blasint *, float *, float *, blasint *);
  383. void BLASFUNC(zgbmv)(char *, blasint *, blasint *, blasint *, blasint *, double *, double *, blasint *,
  384. double *, blasint *, double *, double *, blasint *);
  385. void BLASFUNC(xgbmv)(char *, blasint *, blasint *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  386. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  387. void BLASFUNC(ssbmv)(char *, blasint *, blasint *, float *, float *, blasint *,
  388. float *, blasint *, float *, float *, blasint *);
  389. void BLASFUNC(dsbmv)(char *, blasint *, blasint *, double *, double *, blasint *,
  390. double *, blasint *, double *, double *, blasint *);
  391. void BLASFUNC(qsbmv)(char *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  392. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  393. void BLASFUNC(csbmv)(char *, blasint *, blasint *, float *, float *, blasint *,
  394. float *, blasint *, float *, float *, blasint *);
  395. void BLASFUNC(zsbmv)(char *, blasint *, blasint *, double *, double *, blasint *,
  396. double *, blasint *, double *, double *, blasint *);
  397. void BLASFUNC(xsbmv)(char *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  398. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  399. void BLASFUNC(chbmv)(char *, blasint *, blasint *, float *, float *, blasint *,
  400. float *, blasint *, float *, float *, blasint *);
  401. void BLASFUNC(zhbmv)(char *, blasint *, blasint *, double *, double *, blasint *,
  402. double *, blasint *, double *, double *, blasint *);
  403. void BLASFUNC(xhbmv)(char *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  404. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  405. /* Level 3 routines */
  406. void BLASFUNC(sgemm)(char *, char *, blasint *, blasint *, blasint *, float *,
  407. float *, blasint *, float *, blasint *, float *, float *, blasint *);
  408. void BLASFUNC(dgemm)(char *, char *, blasint *, blasint *, blasint *, double *,
  409. double *, blasint *, double *, blasint *, double *, double *, blasint *);
  410. void BLASFUNC(qgemm)(char *, char *, blasint *, blasint *, blasint *, xdouble *,
  411. xdouble *, blasint *, xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  412. void BLASFUNC(cgemm)(char *, char *, blasint *, blasint *, blasint *, float *,
  413. float *, blasint *, float *, blasint *, float *, float *, blasint *);
  414. void BLASFUNC(zgemm)(char *, char *, blasint *, blasint *, blasint *, double *,
  415. double *, blasint *, double *, blasint *, double *, double *, blasint *);
  416. void BLASFUNC(xgemm)(char *, char *, blasint *, blasint *, blasint *, xdouble *,
  417. xdouble *, blasint *, xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  418. void BLASFUNC(cgemm3m)(char *, char *, blasint *, blasint *, blasint *, float *,
  419. float *, blasint *, float *, blasint *, float *, float *, blasint *);
  420. void BLASFUNC(zgemm3m)(char *, char *, blasint *, blasint *, blasint *, double *,
  421. double *, blasint *, double *, blasint *, double *, double *, blasint *);
  422. void BLASFUNC(xgemm3m)(char *, char *, blasint *, blasint *, blasint *, xdouble *,
  423. xdouble *, blasint *, xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  424. int BLASFUNC(sge2mm)(char *, char *, char *, blasint *, blasint *,
  425. float *, float *, blasint *, float *, blasint *,
  426. float *, float *, blasint *);
  427. int BLASFUNC(dge2mm)(char *, char *, char *, blasint *, blasint *,
  428. double *, double *, blasint *, double *, blasint *,
  429. double *, double *, blasint *);
  430. int BLASFUNC(cge2mm)(char *, char *, char *, blasint *, blasint *,
  431. float *, float *, blasint *, float *, blasint *,
  432. float *, float *, blasint *);
  433. int BLASFUNC(zge2mm)(char *, char *, char *, blasint *, blasint *,
  434. double *, double *, blasint *, double *, blasint *,
  435. double *, double *, blasint *);
  436. void BLASFUNC(strsm)(char *, char *, char *, char *, blasint *, blasint *,
  437. float *, float *, blasint *, float *, blasint *);
  438. void BLASFUNC(dtrsm)(char *, char *, char *, char *, blasint *, blasint *,
  439. double *, double *, blasint *, double *, blasint *);
  440. void BLASFUNC(qtrsm)(char *, char *, char *, char *, blasint *, blasint *,
  441. xdouble *, xdouble *, blasint *, xdouble *, blasint *);
  442. void BLASFUNC(ctrsm)(char *, char *, char *, char *, blasint *, blasint *,
  443. float *, float *, blasint *, float *, blasint *);
  444. void BLASFUNC(ztrsm)(char *, char *, char *, char *, blasint *, blasint *,
  445. double *, double *, blasint *, double *, blasint *);
  446. void BLASFUNC(xtrsm)(char *, char *, char *, char *, blasint *, blasint *,
  447. xdouble *, xdouble *, blasint *, xdouble *, blasint *);
  448. void BLASFUNC(strmm)(char *, char *, char *, char *, blasint *, blasint *,
  449. float *, float *, blasint *, float *, blasint *);
  450. void BLASFUNC(dtrmm)(char *, char *, char *, char *, blasint *, blasint *,
  451. double *, double *, blasint *, double *, blasint *);
  452. void BLASFUNC(qtrmm)(char *, char *, char *, char *, blasint *, blasint *,
  453. xdouble *, xdouble *, blasint *, xdouble *, blasint *);
  454. void BLASFUNC(ctrmm)(char *, char *, char *, char *, blasint *, blasint *,
  455. float *, float *, blasint *, float *, blasint *);
  456. void BLASFUNC(ztrmm)(char *, char *, char *, char *, blasint *, blasint *,
  457. double *, double *, blasint *, double *, blasint *);
  458. void BLASFUNC(xtrmm)(char *, char *, char *, char *, blasint *, blasint *,
  459. xdouble *, xdouble *, blasint *, xdouble *, blasint *);
  460. void BLASFUNC(ssymm)(char *, char *, blasint *, blasint *, float *, float *, blasint *,
  461. float *, blasint *, float *, float *, blasint *);
  462. void BLASFUNC(dsymm)(char *, char *, blasint *, blasint *, double *, double *, blasint *,
  463. double *, blasint *, double *, double *, blasint *);
  464. void BLASFUNC(qsymm)(char *, char *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  465. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  466. void BLASFUNC(csymm)(char *, char *, blasint *, blasint *, float *, float *, blasint *,
  467. float *, blasint *, float *, float *, blasint *);
  468. void BLASFUNC(zsymm)(char *, char *, blasint *, blasint *, double *, double *, blasint *,
  469. double *, blasint *, double *, double *, blasint *);
  470. void BLASFUNC(xsymm)(char *, char *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  471. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  472. void BLASFUNC(csymm3m)(char *, char *, blasint *, blasint *, float *, float *, blasint *,
  473. float *, blasint *, float *, float *, blasint *);
  474. void BLASFUNC(zsymm3m)(char *, char *, blasint *, blasint *, double *, double *, blasint *,
  475. double *, blasint *, double *, double *, blasint *);
  476. void BLASFUNC(xsymm3m)(char *, char *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  477. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  478. void BLASFUNC(ssyrk)(char *, char *, blasint *, blasint *, float *, float *, blasint *,
  479. float *, float *, blasint *);
  480. void BLASFUNC(dsyrk)(char *, char *, blasint *, blasint *, double *, double *, blasint *,
  481. double *, double *, blasint *);
  482. void BLASFUNC(qsyrk)(char *, char *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  483. xdouble *, xdouble *, blasint *);
  484. void BLASFUNC(csyrk)(char *, char *, blasint *, blasint *, float *, float *, blasint *,
  485. float *, float *, blasint *);
  486. void BLASFUNC(zsyrk)(char *, char *, blasint *, blasint *, double *, double *, blasint *,
  487. double *, double *, blasint *);
  488. void BLASFUNC(xsyrk)(char *, char *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  489. xdouble *, xdouble *, blasint *);
  490. void BLASFUNC(ssyr2k)(char *, char *, blasint *, blasint *, float *, float *, blasint *,
  491. float *, blasint *, float *, float *, blasint *);
  492. void BLASFUNC(dsyr2k)(char *, char *, blasint *, blasint *, double *, double *, blasint *,
  493. double*, blasint *, double *, double *, blasint *);
  494. void BLASFUNC(qsyr2k)(char *, char *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  495. xdouble*, blasint *, xdouble *, xdouble *, blasint *);
  496. void BLASFUNC(csyr2k)(char *, char *, blasint *, blasint *, float *, float *, blasint *,
  497. float *, blasint *, float *, float *, blasint *);
  498. void BLASFUNC(zsyr2k)(char *, char *, blasint *, blasint *, double *, double *, blasint *,
  499. double*, blasint *, double *, double *, blasint *);
  500. void BLASFUNC(xsyr2k)(char *, char *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  501. xdouble*, blasint *, xdouble *, xdouble *, blasint *);
  502. void BLASFUNC(chemm)(char *, char *, blasint *, blasint *, float *, float *, blasint *,
  503. float *, blasint *, float *, float *, blasint *);
  504. void BLASFUNC(zhemm)(char *, char *, blasint *, blasint *, double *, double *, blasint *,
  505. double *, blasint *, double *, double *, blasint *);
  506. void BLASFUNC(xhemm)(char *, char *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  507. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  508. void BLASFUNC(chemm3m)(char *, char *, blasint *, blasint *, float *, float *, blasint *,
  509. float *, blasint *, float *, float *, blasint *);
  510. void BLASFUNC(zhemm3m)(char *, char *, blasint *, blasint *, double *, double *, blasint *,
  511. double *, blasint *, double *, double *, blasint *);
  512. void BLASFUNC(xhemm3m)(char *, char *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  513. xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  514. void BLASFUNC(cherk)(char *, char *, blasint *, blasint *, float *, float *, blasint *,
  515. float *, float *, blasint *);
  516. void BLASFUNC(zherk)(char *, char *, blasint *, blasint *, double *, double *, blasint *,
  517. double *, double *, blasint *);
  518. void BLASFUNC(xherk)(char *, char *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  519. xdouble *, xdouble *, blasint *);
  520. void BLASFUNC(cher2k)(char *, char *, blasint *, blasint *, float *, float *, blasint *,
  521. float *, blasint *, float *, float *, blasint *);
  522. void BLASFUNC(zher2k)(char *, char *, blasint *, blasint *, double *, double *, blasint *,
  523. double*, blasint *, double *, double *, blasint *);
  524. void BLASFUNC(xher2k)(char *, char *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  525. xdouble*, blasint *, xdouble *, xdouble *, blasint *);
  526. int BLASFUNC(cher2m)(char *, char *, char *, blasint *, blasint *, float *, float *, blasint *,
  527. float *, blasint *, float *, float *, blasint *);
  528. int BLASFUNC(zher2m)(char *, char *, char *, blasint *, blasint *, double *, double *, blasint *,
  529. double*, blasint *, double *, double *, blasint *);
  530. int BLASFUNC(xher2m)(char *, char *, char *, blasint *, blasint *, xdouble *, xdouble *, blasint *,
  531. xdouble*, blasint *, xdouble *, xdouble *, blasint *);
  532. int BLASFUNC(sgemt)(char *, blasint *, blasint *, float *, float *, blasint *,
  533. float *, blasint *);
  534. int BLASFUNC(dgemt)(char *, blasint *, blasint *, double *, double *, blasint *,
  535. double *, blasint *);
  536. int BLASFUNC(cgemt)(char *, blasint *, blasint *, float *, float *, blasint *,
  537. float *, blasint *);
  538. int BLASFUNC(zgemt)(char *, blasint *, blasint *, double *, double *, blasint *,
  539. double *, blasint *);
  540. int BLASFUNC(sgema)(char *, char *, blasint *, blasint *, float *,
  541. float *, blasint *, float *, float *, blasint *, float *, blasint *);
  542. int BLASFUNC(dgema)(char *, char *, blasint *, blasint *, double *,
  543. double *, blasint *, double*, double *, blasint *, double*, blasint *);
  544. int BLASFUNC(cgema)(char *, char *, blasint *, blasint *, float *,
  545. float *, blasint *, float *, float *, blasint *, float *, blasint *);
  546. int BLASFUNC(zgema)(char *, char *, blasint *, blasint *, double *,
  547. double *, blasint *, double*, double *, blasint *, double*, blasint *);
  548. int BLASFUNC(sgems)(char *, char *, blasint *, blasint *, float *,
  549. float *, blasint *, float *, float *, blasint *, float *, blasint *);
  550. int BLASFUNC(dgems)(char *, char *, blasint *, blasint *, double *,
  551. double *, blasint *, double*, double *, blasint *, double*, blasint *);
  552. int BLASFUNC(cgems)(char *, char *, blasint *, blasint *, float *,
  553. float *, blasint *, float *, float *, blasint *, float *, blasint *);
  554. int BLASFUNC(zgems)(char *, char *, blasint *, blasint *, double *,
  555. double *, blasint *, double*, double *, blasint *, double*, blasint *);
  556. int BLASFUNC(sgemc)(char *, char *, blasint *, blasint *, blasint *, float *,
  557. float *, blasint *, float *, blasint *, float *, blasint *, float *, float *, blasint *);
  558. int BLASFUNC(dgemc)(char *, char *, blasint *, blasint *, blasint *, double *,
  559. double *, blasint *, double *, blasint *, double *, blasint *, double *, double *, blasint *);
  560. int BLASFUNC(qgemc)(char *, char *, blasint *, blasint *, blasint *, xdouble *,
  561. xdouble *, blasint *, xdouble *, blasint *, xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  562. int BLASFUNC(cgemc)(char *, char *, blasint *, blasint *, blasint *, float *,
  563. float *, blasint *, float *, blasint *, float *, blasint *, float *, float *, blasint *);
  564. int BLASFUNC(zgemc)(char *, char *, blasint *, blasint *, blasint *, double *,
  565. double *, blasint *, double *, blasint *, double *, blasint *, double *, double *, blasint *);
  566. int BLASFUNC(xgemc)(char *, char *, blasint *, blasint *, blasint *, xdouble *,
  567. xdouble *, blasint *, xdouble *, blasint *, xdouble *, blasint *, xdouble *, xdouble *, blasint *);
  568. int BLASFUNC(sgetf2)(blasint *, blasint *, float *, blasint *, blasint *, blasint *);
  569. int BLASFUNC(dgetf2)(blasint *, blasint *, double *, blasint *, blasint *, blasint *);
  570. int BLASFUNC(qgetf2)(blasint *, blasint *, xdouble *, blasint *, blasint *, blasint *);
  571. int BLASFUNC(cgetf2)(blasint *, blasint *, float *, blasint *, blasint *, blasint *);
  572. int BLASFUNC(zgetf2)(blasint *, blasint *, double *, blasint *, blasint *, blasint *);
  573. int BLASFUNC(xgetf2)(blasint *, blasint *, xdouble *, blasint *, blasint *, blasint *);
  574. int BLASFUNC(sgetrf)(blasint *, blasint *, float *, blasint *, blasint *, blasint *);
  575. int BLASFUNC(dgetrf)(blasint *, blasint *, double *, blasint *, blasint *, blasint *);
  576. int BLASFUNC(qgetrf)(blasint *, blasint *, xdouble *, blasint *, blasint *, blasint *);
  577. int BLASFUNC(cgetrf)(blasint *, blasint *, float *, blasint *, blasint *, blasint *);
  578. int BLASFUNC(zgetrf)(blasint *, blasint *, double *, blasint *, blasint *, blasint *);
  579. int BLASFUNC(xgetrf)(blasint *, blasint *, xdouble *, blasint *, blasint *, blasint *);
  580. int BLASFUNC(slaswp)(blasint *, float *, blasint *, blasint *, blasint *, blasint *, blasint *);
  581. int BLASFUNC(dlaswp)(blasint *, double *, blasint *, blasint *, blasint *, blasint *, blasint *);
  582. int BLASFUNC(qlaswp)(blasint *, xdouble *, blasint *, blasint *, blasint *, blasint *, blasint *);
  583. int BLASFUNC(claswp)(blasint *, float *, blasint *, blasint *, blasint *, blasint *, blasint *);
  584. int BLASFUNC(zlaswp)(blasint *, double *, blasint *, blasint *, blasint *, blasint *, blasint *);
  585. int BLASFUNC(xlaswp)(blasint *, xdouble *, blasint *, blasint *, blasint *, blasint *, blasint *);
  586. int BLASFUNC(sgetrs)(char *, blasint *, blasint *, float *, blasint *, blasint *, float *, blasint *, blasint *);
  587. int BLASFUNC(dgetrs)(char *, blasint *, blasint *, double *, blasint *, blasint *, double *, blasint *, blasint *);
  588. int BLASFUNC(qgetrs)(char *, blasint *, blasint *, xdouble *, blasint *, blasint *, xdouble *, blasint *, blasint *);
  589. int BLASFUNC(cgetrs)(char *, blasint *, blasint *, float *, blasint *, blasint *, float *, blasint *, blasint *);
  590. int BLASFUNC(zgetrs)(char *, blasint *, blasint *, double *, blasint *, blasint *, double *, blasint *, blasint *);
  591. int BLASFUNC(xgetrs)(char *, blasint *, blasint *, xdouble *, blasint *, blasint *, xdouble *, blasint *, blasint *);
  592. int BLASFUNC(sgesv)(blasint *, blasint *, float *, blasint *, blasint *, float *, blasint *, blasint *);
  593. int BLASFUNC(dgesv)(blasint *, blasint *, double *, blasint *, blasint *, double*, blasint *, blasint *);
  594. int BLASFUNC(qgesv)(blasint *, blasint *, xdouble *, blasint *, blasint *, xdouble*, blasint *, blasint *);
  595. int BLASFUNC(cgesv)(blasint *, blasint *, float *, blasint *, blasint *, float *, blasint *, blasint *);
  596. int BLASFUNC(zgesv)(blasint *, blasint *, double *, blasint *, blasint *, double*, blasint *, blasint *);
  597. int BLASFUNC(xgesv)(blasint *, blasint *, xdouble *, blasint *, blasint *, xdouble*, blasint *, blasint *);
  598. int BLASFUNC(spotf2)(char *, blasint *, float *, blasint *, blasint *);
  599. int BLASFUNC(dpotf2)(char *, blasint *, double *, blasint *, blasint *);
  600. int BLASFUNC(qpotf2)(char *, blasint *, xdouble *, blasint *, blasint *);
  601. int BLASFUNC(cpotf2)(char *, blasint *, float *, blasint *, blasint *);
  602. int BLASFUNC(zpotf2)(char *, blasint *, double *, blasint *, blasint *);
  603. int BLASFUNC(xpotf2)(char *, blasint *, xdouble *, blasint *, blasint *);
  604. int BLASFUNC(spotrf)(char *, blasint *, float *, blasint *, blasint *);
  605. int BLASFUNC(dpotrf)(char *, blasint *, double *, blasint *, blasint *);
  606. int BLASFUNC(qpotrf)(char *, blasint *, xdouble *, blasint *, blasint *);
  607. int BLASFUNC(cpotrf)(char *, blasint *, float *, blasint *, blasint *);
  608. int BLASFUNC(zpotrf)(char *, blasint *, double *, blasint *, blasint *);
  609. int BLASFUNC(xpotrf)(char *, blasint *, xdouble *, blasint *, blasint *);
  610. int BLASFUNC(slauu2)(char *, blasint *, float *, blasint *, blasint *);
  611. int BLASFUNC(dlauu2)(char *, blasint *, double *, blasint *, blasint *);
  612. int BLASFUNC(qlauu2)(char *, blasint *, xdouble *, blasint *, blasint *);
  613. int BLASFUNC(clauu2)(char *, blasint *, float *, blasint *, blasint *);
  614. int BLASFUNC(zlauu2)(char *, blasint *, double *, blasint *, blasint *);
  615. int BLASFUNC(xlauu2)(char *, blasint *, xdouble *, blasint *, blasint *);
  616. int BLASFUNC(slauum)(char *, blasint *, float *, blasint *, blasint *);
  617. int BLASFUNC(dlauum)(char *, blasint *, double *, blasint *, blasint *);
  618. int BLASFUNC(qlauum)(char *, blasint *, xdouble *, blasint *, blasint *);
  619. int BLASFUNC(clauum)(char *, blasint *, float *, blasint *, blasint *);
  620. int BLASFUNC(zlauum)(char *, blasint *, double *, blasint *, blasint *);
  621. int BLASFUNC(xlauum)(char *, blasint *, xdouble *, blasint *, blasint *);
  622. int BLASFUNC(strti2)(char *, char *, blasint *, float *, blasint *, blasint *);
  623. int BLASFUNC(dtrti2)(char *, char *, blasint *, double *, blasint *, blasint *);
  624. int BLASFUNC(qtrti2)(char *, char *, blasint *, xdouble *, blasint *, blasint *);
  625. int BLASFUNC(ctrti2)(char *, char *, blasint *, float *, blasint *, blasint *);
  626. int BLASFUNC(ztrti2)(char *, char *, blasint *, double *, blasint *, blasint *);
  627. int BLASFUNC(xtrti2)(char *, char *, blasint *, xdouble *, blasint *, blasint *);
  628. int BLASFUNC(strtri)(char *, char *, blasint *, float *, blasint *, blasint *);
  629. int BLASFUNC(dtrtri)(char *, char *, blasint *, double *, blasint *, blasint *);
  630. int BLASFUNC(qtrtri)(char *, char *, blasint *, xdouble *, blasint *, blasint *);
  631. int BLASFUNC(ctrtri)(char *, char *, blasint *, float *, blasint *, blasint *);
  632. int BLASFUNC(ztrtri)(char *, char *, blasint *, double *, blasint *, blasint *);
  633. int BLASFUNC(xtrtri)(char *, char *, blasint *, xdouble *, blasint *, blasint *);
  634. int BLASFUNC(spotri)(char *, blasint *, float *, blasint *, blasint *);
  635. int BLASFUNC(dpotri)(char *, blasint *, double *, blasint *, blasint *);
  636. int BLASFUNC(qpotri)(char *, blasint *, xdouble *, blasint *, blasint *);
  637. int BLASFUNC(cpotri)(char *, blasint *, float *, blasint *, blasint *);
  638. int BLASFUNC(zpotri)(char *, blasint *, double *, blasint *, blasint *);
  639. int BLASFUNC(xpotri)(char *, blasint *, xdouble *, blasint *, blasint *);
  640. int BLASFUNC(slarf)(char *, blasint *, blasint *, float *, blasint *, float *, float *, blasint *, float *);
  641. int BLASFUNC(dlarf)(char *, blasint *, blasint *, double *, blasint *, double *, double *, blasint *, double *);
  642. int BLASFUNC(qlarf)(char *, blasint *, blasint *, xdouble *, blasint *, xdouble *, xdouble *, blasint *, xdouble *);
  643. int BLASFUNC(clarf)(char *, blasint *, blasint *, float *, blasint *, float *, float *, blasint *, float *);
  644. int BLASFUNC(zlarf)(char *, blasint *, blasint *, double *, blasint *, double *, double *, blasint *, double *);
  645. int BLASFUNC(xlarf)(char *, blasint *, blasint *, xdouble *, blasint *, xdouble *, xdouble *, blasint *, xdouble *);
  646. FLOATRET BLASFUNC(slamch)(char *);
  647. double BLASFUNC(dlamch)(char *);
  648. xdouble BLASFUNC(qlamch)(char *);
  649. FLOATRET BLASFUNC(slamc3)(float *, float *);
  650. double BLASFUNC(dlamc3)(double *, double *);
  651. xdouble BLASFUNC(qlamc3)(xdouble *, xdouble *);
  652. #ifdef __cplusplus
  653. }
  654. #endif /* __cplusplus */
  655. #endif

OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version.