Skip to content

Commit 8a418b1

Browse files
authored
Add dummy implementations for the LAPACK_COMPLEX_CUSTOM case
1 parent 37b8547 commit 8a418b1

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

lapack-netlib/LAPACKE/utils/lapacke_make_complex_double.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,6 @@ lapack_complex_double lapack_make_complex_double( double re, double im ) {
4848
#endif
4949
return z;
5050
}
51+
#else
52+
lapack_complex_double lapack_make_complex_double( double re, double im ) {}
5153
#endif

lapack-netlib/LAPACKE/utils/lapacke_make_complex_float.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,6 @@ lapack_complex_float lapack_make_complex_float( float re, float im ) {
4848
#endif
4949
return z;
5050
}
51+
#else
52+
lapack_complex_float lapack_make_complex_float( float re, float im ) {}
5153
#endif

0 commit comments

Comments
 (0)