We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f51b061 commit 9f5cf9cCopy full SHA for 9f5cf9c
lib/node_modules/@stdlib/lapack/base/shared/include/stdlib/lapack/base/shared/lapacke.h
@@ -107,6 +107,16 @@ typedef enum LAPACK_SIDE {
107
} LAPACK_SIDE;
108
#endif
109
110
+// Memory error code when unable to allocate a workspace array:
111
+#ifndef LAPACK_WORK_MEMORY_ERROR
112
+#define LAPACK_WORK_MEMORY_ERROR -1010
113
+#endif
114
+
115
+// Memory error code when unable to allocate memory when transposing an array:
116
+#ifndef LAPACK_TRANSPOSE_MEMORY_ERROR
117
+#define LAPACK_TRANSPOSE_MEMORY_ERROR -1011
118
119
120
#ifdef __cplusplus
121
}
122
0 commit comments