We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff6ede6 commit bd7f7aaCopy full SHA for bd7f7aa
lib/node_modules/@stdlib/blas/base/shared/include/stdlib/blas/base/shared/cblas.h
@@ -89,24 +89,24 @@ typedef enum CBLAS_TRANSPOSE {
89
} CBLAS_TRANSPOSE;
90
#endif
91
92
-// Upper/lower part:
+// Upper/lower triangular part:
93
#ifndef CBLAS_UPLO
94
typedef enum CBLAS_UPLO {
95
- // Upper part:
+ // Upper triangular part:
96
CblasUpper = 121,
97
98
- // Lower part:
+ // Lower triangular part:
99
CblasLower = 122,
100
} CBLAS_UPLO;
101
102
103
-// Diagonal matrix:
+// Diagonal elements:
104
#ifndef CBLAS_DIAG
105
typedef enum CBLAS_DIAG {
106
- // Non-unit:
+ // Non-unit triangular matrix:
107
CblasNonUnit = 131,
108
109
- // Unit:
+ // Unit triangular matrix:
110
CblasUnit = 132,
111
} CBLAS_DIAG;
112
0 commit comments