octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #50463] gsvd implementation uses functions rem


From: Mike Miller
Subject: [Octave-bug-tracker] [bug #50463] gsvd implementation uses functions removed from lapack >= 3.6.0
Date: Sat, 25 Mar 2017 17:27:34 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0

Follow-up Comment #6, bug #50463 (project octave):

I don't have a patch, but a safer alternative might be to detect whether the
LAPACK library that Octave has already loaded has the newer function or not.

Something like


void *fcn = dlsym (RTLD_DEFAULT, STRINGIZE (F77_FUNC (dggsvd3, DGGSVD3)));
if (fcn)
  {
    // code to use DGGSVD3
  }
else
  {
    // code to use DGGSVD
  }


and of course need to adapt this to other operating systems.

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?50463>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]