File tree Expand file tree Collapse file tree 2 files changed +49
-36
lines changed
lib/node_modules/@stdlib/blas/base/shared
include/stdlib/blas/base/shared Expand file tree Collapse file tree 2 files changed +49
-36
lines changed Original file line number Diff line number Diff line change 23
23
#include "stdlib/blas/base/layouts.h"
24
24
#include "stdlib/blas/base/matrix_triangles.h"
25
25
#include "stdlib/blas/base/operation_sides.h"
26
+ #include "stdlib/blas/base/orientations.h"
26
27
#include "stdlib/blas/base/transpose_operations.h"
27
28
#include <stddef.h>
28
29
#include <stdint.h>
@@ -125,6 +126,17 @@ typedef enum CBLAS_SIDE {
125
126
} CBLAS_SIDE ;
126
127
#endif
127
128
129
+ // Matrix orientation:
130
+ #ifndef CBLAS_ORIENT
131
+ typedef enum CBLAS_ORIENT {
132
+ // Row matrix:
133
+ CblasRows = STDLIB_BLAS_ROW_MATRIX ,
134
+
135
+ // Column matrix:
136
+ CblasCols = STDLIB_BLAS_COLUMN_MATRIX ,
137
+ } CBLAS_ORIENT ;
138
+ #endif
139
+
128
140
// Alias `CBLAS_LAYOUT` for backward compatibility:
129
141
#ifndef CBLAS_ORDER
130
142
#define CBLAS_ORDER CBLAS_LAYOUT
Original file line number Diff line number Diff line change 1
1
{
2
- "options" : {},
3
- "fields" : [
4
- {
5
- "field" : " src" ,
6
- "resolve" : true ,
7
- "relative" : true
8
- },
9
- {
10
- "field" : " include" ,
11
- "resolve" : true ,
12
- "relative" : true
13
- },
14
- {
15
- "field" : " libraries" ,
16
- "resolve" : false ,
17
- "relative" : false
18
- },
19
- {
20
- "field" : " libpath" ,
21
- "resolve" : true ,
22
- "relative" : false
23
- }
24
- ],
25
- "confs" : [
26
- {
27
- "src" : [
28
- " ./src/main.c"
29
- ],
30
- "include" : [
31
- " ./include"
32
- ],
33
- "libraries" : [],
34
- "libpath" : [],
35
- "dependencies" : [
2
+ "options" : {},
3
+ "fields" : [
4
+ {
5
+ "field" : " src" ,
6
+ "resolve" : true ,
7
+ "relative" : true
8
+ },
9
+ {
10
+ "field" : " include" ,
11
+ "resolve" : true ,
12
+ "relative" : true
13
+ },
14
+ {
15
+ "field" : " libraries" ,
16
+ "resolve" : false ,
17
+ "relative" : false
18
+ },
19
+ {
20
+ "field" : " libpath" ,
21
+ "resolve" : true ,
22
+ "relative" : false
23
+ }
24
+ ],
25
+ "confs" : [
26
+ {
27
+ "src" : [
28
+ " ./src/main.c"
29
+ ],
30
+ "include" : [
31
+ " ./include"
32
+ ],
33
+ "libraries" : [],
34
+ "libpath" : [],
35
+ "dependencies" : [
36
36
" @stdlib/blas/base/diagonal-types" ,
37
37
" @stdlib/blas/base/layouts" ,
38
38
" @stdlib/blas/base/matrix-triangles" ,
39
39
" @stdlib/blas/base/operation-sides" ,
40
+ " @stdlib/blas/base/orientations" ,
40
41
" @stdlib/blas/base/transpose-operations"
41
42
]
42
- }
43
- ]
43
+ }
44
+ ]
44
45
}
You can’t perform that action at this time.
0 commit comments