윈도우즈용을 VC6.0을 이용하여 컴파일 합니다.
===================
CLAPACK README FILE
===================
This README file describes how and how to install the ANSI C translation of the
LAPACK library, called CLAPACK. CLAPACK must be compiled with an ANSI Standard
C compiler. If the C compiler on your machine is an old-style C compiler, you
will have to use gcc to compile the package.
IMPORTANT NOTE:
You *CANNOT* just go to www.netlib.org/clapack, download a routine like
sgesv.c and have it work unless you properly install and link to the
f2c and BLAS routines as described below. If your linker complains about
missing functions, you have probably accidentally neglected this step.
Also, you will need the files "f2c.h" (included with the f2c libraries)
and "blaswrap.h" in order to compile these routines.
Note also that you *CANNOT* directly link to a BLAS library optimized
for your platform without using a wrapper library, as described below.
The default BLAS routines included with CLAPACK in the BLAS/SRC
subdirectory may also be used these will most likely be
slower than a BLAS library optimized for your machine. If you do
not have such an optimized BLAS library, you can get one at
http://www.netlib.org/atlas
==============================================================================
For a fast default installation, you will need to
- Untar clapack.tar and modify the make.inc file (see step 1 below)
- Make the f2c libraries (see step 2 below)
- Make the BLAS library or wrapper (see step 2 below)
- Make the main library, test it, and time it by simply typing
make
If you encounter difficulties, you may find the installation manual for
the FORTRAN version (INSTALL/lawn81.*) useful.
Procedure for installing CLAPACK:
==============================================================================
(1) 'tar xvf clapack.tar' to build the following directory structure:
CLAPACK/README.install this file
CLAPACK/README.maintain description of how to CLAPACK is built and
maintained
CLAPACK/BLAS/ C source for BLAS and for BLAS wrappers
CLAPACK/F2CLIBS/ f2c I/O functions (libI77) and math functions (libF77)
CLAPACK/INSTALL/ Testing functions and pre-tested make.inc files
for various platforms.
CLAPACK/SRC/ C source of LAPACK routines
CLAPACK/TESTING/ driver routines to test correctness
CLAPACK/TIMING/ driver routines to measure performance
CLAPACK/Translate/ software for translation and subsequent clean up,
including CompletePolish as described below.
CLAPACK/make.inc compiler, compile flags and library definitions,
included in all Makefiles.
NOTE: It's better to use gcc compiler on some older
Sun systems.
CLAPACK/clapack.h A header file including C prototypes of all the
CLAPACK routines.
You should be sure to modify the make.inc file for your system. Sample
make.inc files for several platforms are included in the INSTALL
subdirectory.
(2) Build the f2c libraries by doing:
make f2clib
##############################################################################
WARNING: 1) If your system lacks onexit() and you are not using an ANSI C
compiler, then you should change your F2CCFLAGS line in
make.inc to
F2CCFLAGS=$(CFLAGS) -DNO_ONEXIT
On at least some Sun systems, it is better to use
F2CCFLAGS=$(CFLAGS) -Donexit=on_exit
2) On at least some Sun systems, the type declaration in
F2CLIBS/libI77/rawio.h: extern FILE *fdopen(int, char*)
is not consistent with the one defined in stdio.h. In this case
you should comment out this line.
##############################################################################
(3) To run CLAPACK, you need to create a BLAS library.
The performance of CLAPACK largely depends on the performance
of the BLAS library.
You can either use the reference BLAS library included with
this distribution, which is easy to install but not optimized to be
fast on any particular machine, or else find a version of the
BLAS optimized for your machine.
If you want to use the reference BLAS library included with
this distribution, build it by doing
make blaslib
from the main directory.
If you want to find a BLAS library optimized for your machine,
see the note below for more details;
see also the README in the BLAS/WRAP directory.
(4) Compile and run the BLAS TESTING code by doing:
cd CLAPACK/BLAS/TESTING; make -f Makeblat2
cd CLAPACK/BLAS
xblat2s < sblat2.in
xblat2d < dblat2.in
xblat2c < cblat2.in
xblat2z < zblat2.in
cd CLAPACK/BLAS/TESTING; make -f Makeblat3
cd CLAPACK/BLAS
xblat3s < sblat3.in
xblat3d < dblat3.in
xblat3c < cblat3.in
xblat3z < zblat3.in
Inspect the output files *.SUMM to confirm that no errors occurred.
{NOTE: If a compiling error involving _atexit appears then see information
within the WARNING above.}
{NOTE: For the highest performance, it is best to use a version of the BLAS
optimized for your particular machine. This may be done by modifying
the line
BLASLIB = ../../blas$(PLAT).a
in CLAPACK/make.inc to point to the optimized BLAS and to an
appropriate "wrapper" library. If you are using a version of the
BLAS which provides the standard CBLAS interface (e.g. ATLAS),
you can make the wrapper library libcblaswr.a by typing
"make cblaswrap" from the main directory. For this setup
(ATLAS with the CBLAS wrapper), the BLASLIB line might look like
BLASLIB = ../../libcblaswr.a -lcblas -latlas
A sample Fortran calling interface (libfblaswr.a) for systems with
Sun-style Fortran calling conventions is also provided; however,
this interface will need modifications to work on other
architectures which have different Fortran calling convensions.
See the README in the BLAS/WRAP subdirectory for further information.}
(5) Build the archive containing lapack source code by doing:
cd CLAPACK/SRC; make
(6) Compile the matrix generation software, the eigenroutine TESTING
code, the linear system TESTING code, and run the LAPACK tests
by doing:
cd CLAPACK/TESTING/MATGEN; make
cd CLAPACK/TESTING; make
Inspect the output files *.out to confirm that no errors occurred.
(7) Build the archive containing the eigensystem routines, compile
eigenroutine TIMING code, and the linear system TIMING code
by doing:
cd CLAPACK/TIMING; make
(8) Run the LAPACK timing tests by doing:
cd CLAPACK/TIMING; make
xlintims < sblasa.in > sblasa.out
xlintims < sblasb.in > sblasb.out
xlintims < sblasc.in > sblasc.out
repeat timing of blas for c, d, and z
NOTE: If your particular system does not have enough memory to complete
the above compilations you can do the following steps instead:
I. Compile the matrix generation software, the eigenroutine TESTING code,
the linear system TESTING code, and run the LAPACK tests separately
by doing:
cd CLAPACK/TESTING/MATGEN; make
cd CLAPACK/TESTING/EIG; make
cd CLAPACK/TESTING/LIN; make
cd CLAPACK/TESTING; make
II. Build the archive containing the eigensystem routines, compile
eigenroutine TIMING code, and the linear system TIMING code
separately by doing:
cd CLAPACK/TIMING/EIG/EIGSRC; make
cd CLAPACK/TIMING/EIG; make
cd CLAPACK/TIMING/LIN; make
continue with step (8)
III. After the executable files and libraries have been created for each
of the compiles, the object files should be removed by doing:
make clean
IV. Each 'make' may be accomplished just for one or a subset of the
precisions desired. For example:
make single
make single complex
make single double complex complex16
Using make without any arguments will compile all four precisions.
James Demmel
Xiaoye Li
Chris Puscasiu
Steve Timson
UC Berkeley
Sept 27 1993
{Revised by Susan Ostrouchov and Jude Toth}
{The University of Tennessee at Knoxville}
{October 15, 1993}
{Revised by Xiaoye Li and James Demmel}
{University of California at Berkeley}
{November 22, 1994}
{Revised by David Bindel and James Demmel}
{University of California at Berkeley}
{July 19, 2000}
body start
Visual Information Processing Studio
release
clapack3-windows
2002-09-13 00:00
- CLAPACK3-Windows.zip (32.58 MB) Download
- readme.install.txt (8 KB) Download
- readme.txt (4 KB) Download
- readme.maintain.txt (5 KB) Download
17 Comments
해당글의 덧글
Nobody
2012-01-07 05:40
Nobody
2012-01-07 18:23
Nobody
<a href="http://www.autoinsurcenter.com/">car insurance qoutes</a>
2012-01-26 15:47
Nobody
<a href="http://www.insurpricessearch.com/">life insurance for seniors</a>
2012-01-26 16:21
Nobody
2012-03-03 21:27
Nobody
2012-03-05 18:54
Nobody
2012-03-09 08:58
Nobody
2012-03-09 16:00
Nobody
<a href="http://www.findtopremedy.com/">pharmacy tech buy tramadol</a> <a href="http://www.yourhealthservice.net/">cheap health insurance</a>
2012-03-14 12:27
Nobody
<a href="http://www.findautoinsur.com/">car insureance</a> <a href="http://www.yourhealthservice.net/">healthinsurance</a>
2012-03-16 11:57
Nobody
<a href="http://www.getvehicleinsur.com/">insurance auto auctions</a> <a href="http://www.choosecarinsur.com/">eastwood auto insurance</a>
2012-03-22 16:44
Nobody
<a href="http://www.getvehicleinsur.com/">car insurance qoutes</a> <a href="http://www.moreinsurplans.com/">cheapest car insurance</a>
2012-03-26 17:27
Nobody
<a href="http://www.getvehicleinsur.com/">buy car insurance online</a> <a href="http://www.choosecarinsur.com/">car insurance</a>
2012-03-28 14:48
Nobody
<a href="http://www.getvehicleinsur.com/">car insurance quotes</a> <a href="http://www.moreinsurplans.com/">car insurance quotes</a>
2012-03-28 14:56
Nobody
<a href="http://www.specialmedic.net/">nexium</a> <a href="http://www.choosemedsnow.com/">propecia</a>
2012-04-02 15:38
Nobody
<a href="http://www.specialmedic.net/">nexium</a> <a href="http://www.choosemedsnow.com/">buy propecia</a>
2012-04-04 18:04
Nobody
<a href="http://www.specialmedic.net/">nexium drag</a> <a href="http://www.choosemedsnow.com/">generic propecia</a>
2012-04-04 18:12