01: /* ///////////////////////////// P /// L /// A /// S /// M /// A /////////////////////////////// */
02: /* ///                    PLASMA auxiliary routines (version 2.1.0)                          ///
03:  * ///                    Author: Jakub Kurzak, Piotr Luszczek                               ///
04:  * ///                    Release Date: November, 15th 2009                                  ///
05:  * ///                    PLASMA is a software package provided by Univ. of Tennessee,       ///
06:  * ///                    Univ. of California Berkeley and Univ. of Colorado Denver          /// */
07: /* ///////////////////////////////////////////////////////////////////////////////////////////// */
08: 
09: #include "global.h"
10: 
11: /* ///////////////////////////////////////////////////////////////////////////////////////////// */
12: //  LAPACK Constants
13: char *plasma_lapack_constants[] =
14: {
15:     "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
16:     "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
17:     "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
18:     "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
19:     "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
20:     "", "", "", "", "", "",
21:     "Row",                  // 101
22:     "Column",               // 102
23:     "", "", "", "", "", "", "", "",
24:     "No transpose",         // 111
25:     "Transpose",            // 112
26:     "Conjugate transpose",  // 113
27:     "", "", "", "", "", "", "",
28:     "Upper",                // 121
29:     "Lower",                // 122
30:     "", "", "", "", "", "", "", "",
31:     "Non-unit",             // 131
32:     "Unit",                 // 132
33:     "", "", "", "", "", "", "", "",
34:     "Left",                 // 141
35:     "Right"                 // 142
36:     "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
37:     "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
38:     "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
39:     "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
40:     "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
41:     "", "", "", "", "", "",
42:     "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
43:     "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
44:     "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
45:     "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
46:     "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
47:     "", "", "", "", "", "",
48:     "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
49:     "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
50:     "", "", "", "", "", "", "", "", "",
51:     "Forward",              // 391
52:     "Backward",             // 391
53:     "", "", "", "", "", "", "", "",
54:     "Columnwise",           // 401
55:     "Rowwise"               // 402
56: };
57: