Skip to content

Commit 2cd463e

Browse files
authored
Disable reallocation of work array in xSYTRF
as it appears to cause memory management problems (seen in the LAPACK tests)
1 parent 91943b7 commit 2cd463e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

relapack/config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
// allow malloc in xsygst for improved performance
3737
#define XSYGST_ALLOW_MALLOC ALLOW_MALLOC
3838
// allow malloc in xsytrf if the passed work buffer is too small
39-
#define XSYTRF_ALLOW_MALLOC ALLOW_MALLOC
40-
39+
//#define XSYTRF_ALLOW_MALLOC ALLOW_MALLOC
40+
#define XSYTRF_ALLOW_MALLOC 0
4141

4242
////////////////////////////////
4343
// LAPACK routine replacement //

0 commit comments

Comments
 (0)