From: Fredrik S. <su9...@na...> - 2000-05-22 22:12:17
|
Hi, Has anyone written any quadratic programming algoritm? If so, please let me now. /fredriks |
From: Berthold H. <ho...@ge...> - 2000-05-24 13:28:57
|
Fredrik Stenberg wrote: > > Hi, > Has anyone written any quadratic programming algoritm? > If so, please let me now. We have written a wapper around COPL_QP Computational Optimization Program Library: Convex Quadratic Programming from ftp://dollar.biz.uiowa.edu/pub/yyye/. I had to make some minor changes to the qp program to make it work under WindowsNT, but it does now. I have seen the library working under NT, solaris 2.5.1, solaris 2.7 and a Linux system. I don't now where to put the tar file, but when you are interested, I could send you a copy of the library, installable with a recent distutils version. Greetings Berthold -- email: ho...@Ge... ) ( C[_] These opinions might be mine, but never those of my employer. |
From: David H. M. <da...@da...> - 2000-05-24 15:09:40
|
Hi all, Please let me know if this is the wrong mailing list for this question: I'm running red hat linux 6.2 and have used rpms to install the numpy, lapack, and blas packages. How do I get numpy to use the versions of lapack and blas I've installed? Thanks. David Marimont |
From: <hi...@di...> - 2000-05-25 15:43:45
|
> Please let me know if this is the wrong mailing list for this question: > > I'm running red hat linux 6.2 and have used rpms to install the numpy, > lapack, and blas packages. How do I get numpy to use the versions of lapack > and blas I've installed? Thanks. You can't do it with the NumPy RPMs, which use the C versions. So you must get the NumPy source code distribution and compile it yourself. Before compiling it, edit the file "Setup" such that the line starting with "lapack_lite" reads lapack_lite -I./Include Src/lapack_litemodule.c -llapack -lblas -lg2c -lm The compile and install according to the instructions. -- ------------------------------------------------------------------------------- Konrad Hinsen | E-Mail: hi...@cn... Centre de Biophysique Moleculaire (CNRS) | Tel.: +33-2.38.25.55.69 Rue Charles Sadron | Fax: +33-2.38.63.15.17 45071 Orleans Cedex 2 | Deutsch/Esperanto/English/ France | Nederlands/Francais ------------------------------------------------------------------------------- |
From: Paul F. D. <pau...@ho...> - 2000-05-25 15:55:27
|
Konrad, These instructions rely on the old way of making numpy. The new way would involve making corresponding changes to setup.py I intend to do this as the default soon as I have had numerous requests for it. Paul > -----Original Message----- > From: num...@li... > [mailto:num...@li...]On Behalf Of > hi...@di... > Sent: Thursday, May 25, 2000 8:41 AM > To: da...@da... > Cc: num...@li... > Subject: Re: [Numpy-discussion] using lapack and blas rpms > > > > Please let me know if this is the wrong mailing list for this question: > > > > I'm running red hat linux 6.2 and have used rpms to install the numpy, > > lapack, and blas packages. How do I get numpy to use the > versions of lapack > > and blas I've installed? Thanks. > > You can't do it with the NumPy RPMs, which use the C versions. > So you must get the NumPy source code distribution and compile it > yourself. Before compiling it, edit the file "Setup" such that > the line starting with "lapack_lite" reads > > lapack_lite -I./Include Src/lapack_litemodule.c -llapack -lblas -lg2c -lm > > The compile and install according to the instructions. > -- > ------------------------------------------------------------------ > ------------- > Konrad Hinsen | E-Mail: hi...@cn... > Centre de Biophysique Moleculaire (CNRS) | Tel.: +33-2.38.25.55.69 > Rue Charles Sadron | Fax: +33-2.38.63.15.17 > 45071 Orleans Cedex 2 | Deutsch/Esperanto/English/ > France | Nederlands/Francais > ------------------------------------------------------------------ > ------------- > > _______________________________________________ > Numpy-discussion mailing list > Num...@li... > http://lists.sourceforge.net/mailman/listinfo/numpy-discussion > |
From: <hi...@di...> - 2000-05-25 16:11:53
|
> These instructions rely on the old way of making numpy. > The new way would involve making corresponding changes to setup.py > I intend to do this as the default soon as I have had numerous requests for > it. Is it possible with Distutils to use LAPACK if it's installed and the C versions otherwise? That should make everybody happy. Konrad. -- ------------------------------------------------------------------------------- Konrad Hinsen | E-Mail: hi...@cn... Centre de Biophysique Moleculaire (CNRS) | Tel.: +33-2.38.25.55.69 Rue Charles Sadron | Fax: +33-2.38.63.15.17 45071 Orleans Cedex 2 | Deutsch/Esperanto/English/ France | Nederlands/Francais ------------------------------------------------------------------------------- |