Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/linesearch.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ double linesearch(n,dX,work1,work2,work3,cholinv,q,z,workvec,
inc=1;

#ifdef HIDDENSTRLEN
dgemv_("T",&n,&j,&scale1,lanczosvectors,&n,z+1,&inc,&scale2,reorth+1,&inc,1,1);
dgemv_("T",&n,&j,&scale1,lanczosvectors,&n,z+1,&inc,&scale2,reorth+1,&inc,1);
#else
#ifdef NOUNDERBLAS
#ifdef CAPSBLAS
Expand Down
4 changes: 4 additions & 0 deletions lib/sdp.c
Original file line number Diff line number Diff line change
Expand Up @@ -771,6 +771,9 @@ int sdp(n,k,C,a,constant_offset,constraints,byblocks,fill,X,y,Z,cholxinv,
t1=(double)tp.tv_sec+(1.0e-6)*tp.tv_usec;
#endif

#ifdef HIDDENSTRLEN
dpotrf_("U",&m,O,&ldam,&info,1);
#else
#ifdef NOUNDERLAPACK
#ifdef CAPSLAPACK
DPOTRF("U",&m,O,&ldam,&info);
Expand All @@ -784,6 +787,7 @@ int sdp(n,k,C,a,constant_offset,constraints,byblocks,fill,X,y,Z,cholxinv,
dpotrf_("U",&m,O,&ldam,&info);
#endif
#endif
#endif

#ifdef USEGETTIME
gettimeofday(&tp,NULL);
Expand Down