File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
lib/node_modules/@stdlib/lapack/base/xerbla Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -116,11 +116,11 @@ lapack_xerbla( "dlacpy", 1 )
116
116
117
117
The function accepts the following arguments:
118
118
119
- - **name**: `[in] char*` name of routine.
120
- - **info**: `[in] LAPACK_INT` argument index.
119
+ - **name**: `[in] char*` name of routine (e.g., `dlacpy`) .
120
+ - **info**: `[in] LAPACK_INT` error code (e.g., a negative argument index) .
121
121
122
122
```c
123
- void lapack_xerbla( const char *name, const LAPACK_INT info );
123
+ void lapack_xerbla( const char *name, LAPACK_INT info );
124
124
```
125
125
126
126
</section >
Original file line number Diff line number Diff line change 24
24
* Prints an error message.
25
25
*
26
26
* @param name routine name (e.g., "dlacpy")
27
- * @param info argument index
27
+ * @param info error code (e.g., a negative argument index)
28
28
*/
29
29
void API_SUFFIX (lapack_xerbla )( const char * name , LAPACK_INT info ) {
30
30
if ( info == LAPACK_WORK_MEMORY_ERROR ) {
Original file line number Diff line number Diff line change 23
23
* Prints an error message.
24
24
*
25
25
* @param name routine name (e.g., "dlacpy")
26
- * @param info argument index
26
+ * @param info error code (e.g., a negative argument index)
27
27
*/
28
28
void API_SUFFIX (lapack_xerbla )( const char * name , LAPACK_INT info ) {
29
29
API_SUFFIX (LAPACKE_xerbla )( name , info );
You can’t perform that action at this time.
0 commit comments