File tree 1 file changed +11
-11
lines changed
lib/node_modules/@stdlib/blas/base/shared/include/stdlib/blas/base/shared
1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -66,57 +66,57 @@ extern "C" {
66
66
#ifndef CBLAS_LAYOUT
67
67
typedef enum CBLAS_LAYOUT {
68
68
// Row-major order (C-style):
69
- CblasRowMajor = 101 ;
69
+ CblasRowMajor = 101 ,
70
70
71
71
// Column-major order (Fortran-style):
72
- CblasColMajor = 102 ;
72
+ CblasColMajor = 102 ,
73
73
} CBLAS_LAYOUT ;
74
74
#endif
75
75
76
76
// Transpose operation:
77
77
#ifndef CBLAS_TRANSPOSE
78
78
typedef enum CBLAS_TRANSPOSE {
79
79
// No transposition:
80
- CblasNoTrans = 111 ;
80
+ CblasNoTrans = 111 ,
81
81
82
82
// Transposition:
83
- CblasTrans = 112 ;
83
+ CblasTrans = 112 ,
84
84
85
85
// Conjugate transposition:
86
- CblasConjTrans = 113 ;
86
+ CblasConjTrans = 113 ,
87
87
} CBLAS_TRANSPOSE ;
88
88
#endif
89
89
90
90
// Upper/lower triangular:
91
91
#ifndef CBLAS_UPLO
92
92
typedef enum CBLAS_UPLO {
93
93
// Upper triangular:
94
- CblasUpper = 121 ;
94
+ CblasUpper = 121 ,
95
95
96
96
// Lower triangular:
97
- CblasLower = 122 ;
97
+ CblasLower = 122 ,
98
98
} CBLAS_UPLO ;
99
99
#endif
100
100
101
101
// Diagonal matrix:
102
102
#ifndef CBLAS_DIAG
103
103
typedef enum CBLAS_DIAG {
104
104
// Non-unit:
105
- CblasNonUnit = 131 ;
105
+ CblasNonUnit = 131 ,
106
106
107
107
// Unit:
108
- CblasUnit = 132 ;
108
+ CblasUnit = 132 ,
109
109
} CBLAS_DIAG ;
110
110
#endif
111
111
112
112
// Operation side:
113
113
#ifndef CBLAS_SIDE
114
114
typedef enum CBLAS_SIDE {
115
115
// Left-side:
116
- CblasLeft = 141 ;
116
+ CblasLeft = 141 ,
117
117
118
118
// Right-side:
119
- CblasRight = 142 ;
119
+ CblasRight = 142 ,
120
120
} CBLAS_SIDE ;
121
121
#endif
122
122
You can’t perform that action at this time.
0 commit comments