aboutsummaryrefslogtreecommitdiffstats
path: root/math/atlas
Commit message (Collapse)AuthorAgeFilesLines
* Fix errata listed at http://math-atlas.sourceforge.net/errata.html andmaho2007-03-089-1/+333
| | | | | | bump portrevision. Submitted by: bf <bf2006a@yahoo.com>
* For test target, now we use GMAKE to MAKE. In some environmentmaho2007-02-191-6/+6
| | | | GMAKE fails.
* Remove CONFLICT line as elmer-mathlibs are deprecated by migrationmaho2007-01-161-2/+0
| | | | to gfortran.
* Atlas should not depend on GNU F77. Nowmaho2007-01-153-4/+5
| | | | it doesn't expect existence of /usr/include/g2c.h
* gmake is needed as a build dependency.thierry2007-01-141-3/+4
| | | | Approved by: maho
* Fix build with WITH_OPTIMIZED_FLAGS.maho2007-01-121-2/+2
|
* * Migrate to gfortran. but stock GCC is used.maho2007-01-112-65/+53
| | | | * lapack/blas are compiled with gforntran, thus we build TEST section as well.
* * Shared lib number has been bumped 1 to 2maho2007-01-102-24/+24
| | | | * Bump port revision
* * Migrate to gfortran.maho2007-01-074-14/+145
| | | | | | * portlint. * (option) Installing benchmark tests for real FLOPS. * Bump portrevision.
* Fix error when WITH_OPTIMIZED_FLAGS is specified.maho2006-08-071-0/+4
| | | | | PR: 100991 Submitted by: Masayuki Takemura <ICG04984@nifty.com>
* A better WITH_OPTIMIZED_FLAGS.maho2006-07-091-1/+1
|
* Remove USE_REINPLACE from ports starting with Medwin2006-05-111-1/+0
|
* Register conflicts with math/elmer-mathlibs.maho2006-04-261-0/+2
| | | | | Submitted by: thierry and Pedro F. Giffuni <giffunip@asme.org>
* o cleanupsmaho2006-02-143-24/+80
| | | | | | | o faster build time; 4h45m19.23s for my Pentium M 1.6G. now static libs are build via knob, timing torerance patch is applied via knob. Submitted by: many
* SHA256ifyedwin2006-01-221-0/+1
| | | | Approved by: krion@
* Currently with "cpu I686_CPU" which is default,maho2005-11-202-13/+0
| | | | | | | kernel automatically enables SSE if it is available. so remove messages which are not necessary. Submitted by: Darrien <darrien.l@gmail.com>
* Add cputype of sempron; athlon type CPUmaho2005-10-301-1/+2
| | | | Submitted by: Pedro A M Vazquez <vazquez@iqm.unicamp.br>
* Set NO_PACKAGE: atlas optimizes for the local machine, so a package is notkris2005-09-071-0/+2
| | | | | | generally useful. Reviewed by: maho (maintainer)
* Add two patches for stable builds.maho2005-06-282-0/+32
| | | | | | o L1 cache size is not correctly detected having a bad clock o in some case small number of tries in tuning doesn't meet convergence see FAQ http://math-atlas.sourceforge.net/errata.html#tol
* At Kris's request, back out the MACHINE_ARCH spelling correction untilobrien2005-04-121-2/+2
| | | | after 5.4-RELEASE.
* Assist getting more ports working on AMD64 by obeying theobrien2005-04-111-2/+2
| | | | Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
* Add a warning messagemaho2005-01-251-1/+8
| | | | Suggested by: Rob D. <162144@gmail.com>
* Reduce optimization level so that not get trappedmaho2005-01-251-4/+1
| | | | at infinite loop
* Avoid the use of != statements in ports Makefilemaho2004-10-241-1/+5
| | | | | PR: 71095 Submitted by: eik
* Adding newline at the end of filesmaho2004-10-192-2/+2
| | | | | | (lapack.h and blas.h) Submitted by: thierry@
* Increase USE_GCC to 3.4 for those ports which compile with it.kris2004-09-301-1/+1
| | | | Approved by: portmgr
* type -> archmaho2004-09-021-3/+3
| | | | Pointy hat to: maho
* ad hoc fix for 5-STABLE, having CPUmaho2004-09-011-0/+8
| | | | | | other than Pentium4 (Opteron, Pentium III, Athlon... etc) this was due to recent change in make(1)
* Build fix for 5-STABLEmaho2004-09-011-4/+4
|
* o Significantly performance loss by overriding severalmaho2004-08-181-6/+2
| | | | | optimization flags... o update to 3.7.8
* 1) correct the names of shared libs for threaded versionmaho2004-07-142-2/+16
| | | | 2) Some Pentium 4 series have more caches (not 512kB, but 1M ~ 2M)
* Make portlint happy by replacing space to tabmaho2004-05-071-6/+6
| | | | | PR: 65409 Submitted by: trevor
* make portlint happymaho2004-03-301-2/+2
|
* real fix for PR:64692maho2004-03-301-2/+2
| | | | | PR: 64692 Submitted by: Kay Lehmann <kay_lehmann@web.de>
* unbreak for 4-STABLE i386 and alphamaho2004-03-271-13/+14
| | | | | PR: 64692 (loosely depended on) Submitted by: Kay Lehmann <kay_lehmann@web.de> and kris via bento
* Do not hardcord PICFLAGmaho2004-03-201-7/+1
| | | | Submitted by: ru
* Backout previous change of PICFLAG, sincemaho2004-03-191-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | behaviour of -fPIC and -fpic are different. Here is the comment form obrien: -- "-fpic" is a [minor?] optimization for machines that can handle it: -fpic Generate position-independent code (PIC) suitable for use in a shared library, if supported for the target machine. Such code accesses all constant addresses through a global offset table (GOT). The dynamic loader resolves the GOT entries when the program starts (the dynamic loader is not part of GCC; it is part of the operating system). If the GOT size for the linked executable exceeds a machine-specific maximum size, you get an error message from the linker indicating that -fpic does not work; in that case, recompile with -fPIC instead. (These maximums are 16k on the m88k, 8k on the SPARC, and 32k on the m68k and RS/6000. The 386 has no such limit.) -fPIC If supported for the target machine, emit position-independent code, suitable for dynamic linking and avoiding any limit on the size of the global offset table. This option makes a difference on the m68k, m88k, and the SPARC. Thanks to: obrien
* -fPIC is appropreate on all architectures.maho2004-03-191-6/+0
| | | | Submitted by: kris
* Fix build on alpha 4-stablemaho2004-03-172-18/+27
| | | | Submitted by: kris via bento
* Update to 3.6.0maho2004-02-287-134/+222
|
* math/atlas should not LIB_DEPENDS on math/lapack.maho2004-02-011-1/+1
| | | | | | | lapack is required only for building. PR: 61963 Submitted by: AMAKAWA Shuhei <sa264@cam.ac.uk>
* Backout to 3.5.5maho2003-08-082-2/+3
| | | | | | | | | | | | | a) newer version build fails like: /usr/local/lib/libatlas.so: undefined reference to `ATL_dpKBmm_b1' /usr/local/lib/libatlas.so: undefined reference to `ATL_dpKBmm_b0' b) Define PORTEPOCH=1 Reported by: Pedro F. Giffuni <giffunip@yahoo.com> kris Thierry Thomas <thierry@pompo.net> Jonathan <j.e.drews@worldnet.att.net>
* Fix build on 4-STABLE disabiling sanity check.maho2003-08-031-2/+2
| | | | | Submitted by: kris via bento "Dannis 't Hart" <dchart@dds.nl>
* Update to 3.5.7maho2003-07-292-2/+2
|
* 1. update to 3.5.6maho2003-07-033-21/+20
| | | | 2. rename suffix of threaded libs from thr to _r.
* build both threaded/non-threaded librariesmaho2003-07-035-35/+119
| | | | | | | which introduced some kludge... Reported by: kris (broken on bento for lapack++) Suggestion from: "Pedro F. Giffuni" <giffunip@yahoo.com>
* update to 3.5.5maho2003-07-013-21/+20
| | | | Submitted by: Thomas Gellekum <Thomas.Gellekum@gmx.de>
* 1. make atlas thread safemaho2003-06-113-5/+40
| | | | | 2. set an option that force atlas to make threaded 3. bump port revision
* Update to 2.5.2maho2003-06-113-6/+11
|
* Fix linkage problem for multithreaded support.maho2003-05-101-4/+15
| | | | | PR: 48511 Submitted by: Josh Tolbert <hemi@puresimplicity.net>
* patch for config.c failed.maho2003-05-051-8/+10
| | | | Reported by: Martin Klaffenboeck <martin.klaffenboeck@gmx.at>
* 1. Update to 2.5.1maho2003-05-042-6/+5
| | | | 2. change maintainer's e-mail address.
* De-pkg-comment.knu2003-02-212-1/+1
|
* Fix build on alpha.naddy2002-08-204-12/+56
| | | | | PR: 41770 Submitted by: Nakata Maho <chat95@mbox.kyoto-inet.or.jp>
* fix on p4 architectureijliao2002-07-152-4/+12
| | | | | | | bump portrevision PR: 40321 Submitted by: maintainer
* Update to 3.4.1. (Use patch posted to ports-jp@ list)yoichi2002-06-228-33/+6012
| | | | | PR: 37663 Submitted by: maintainer
* make it be able to build on all supported archsijliao2002-03-264-39/+44
| | | | | | PR: 35994 Submitted by: Li-lun Wang (Leland Wang) <llwang@infor.org> Approved by: maintainer
* add atlas 3.3.14ijliao2002-03-157-0/+108
Automatically Tuned Linear Algebra Software (ATLAS) PR: 35908 Submitted by: Nakata Maho <chat95@mbox.kyoto-inet.or.jp>