1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<!--Converted with LaTeX2HTML 96.1-h (September 30, 1996) by Nikos Drakos (nikos@cbl.leeds.ac.uk), CBLU, University of Leeds -->
<HTML>
<HEAD>
<TITLE>ScaLAPACK</TITLE>
<META NAME="description" CONTENT="ScaLAPACK">
<META NAME="keywords" CONTENT="slug">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<LINK REL=STYLESHEET HREF="slug.css">
</HEAD>
<BODY LANG="EN" >
<A NAME="tex2html2227" HREF="node10.html"><IMG WIDTH=37 HEIGHT=24 ALIGN=BOTTOM ALT="next" SRC="http://www.netlib.org/utk/icons/next_motif.gif"></A> <A NAME="tex2html2225" HREF="node8.html"><IMG WIDTH=26 HEIGHT=24 ALIGN=BOTTOM ALT="up" SRC="http://www.netlib.org/utk/icons/up_motif.gif"></A> <A NAME="tex2html2219" HREF="node8.html"><IMG WIDTH=63 HEIGHT=24 ALIGN=BOTTOM ALT="previous" SRC="http://www.netlib.org/utk/icons/previous_motif.gif"></A> <A NAME="tex2html2229" HREF="node1.html"><IMG WIDTH=65 HEIGHT=24 ALIGN=BOTTOM ALT="contents" SRC="http://www.netlib.org/utk/icons/contents_motif.gif"></A> <A NAME="tex2html2230" HREF="node190.html"><IMG WIDTH=43 HEIGHT=24 ALIGN=BOTTOM ALT="index" SRC="http://www.netlib.org/utk/icons/index_motif.gif"></A> <BR>
<B> Next:</B> <A NAME="tex2html2228" HREF="node10.html">Structure and Functionality</A>
<B>Up:</B> <A NAME="tex2html2226" HREF="node8.html">Essentials</A>
<B> Previous:</B> <A NAME="tex2html2220" HREF="node8.html">Essentials</A>
<BR> <P>
<H1><A NAME="SECTION04110000000000000000">ScaLAPACK</A></H1>
<P>
ScaLAPACK is a library of high-performance linear algebra routines
for distributed-memory message-passing MIMD<A NAME="354"> </A><A NAME="355"> </A><A NAME="356"> </A> computers
and networks of
workstations supporting<A NAME="357"> </A><A NAME="358"> </A> PVM [<A HREF="node189.html#pvm">68</A>] and/or MPI [<A HREF="node189.html#mpi">64</A>, <A HREF="node189.html#SOHWD:96">110</A>]. It is a
continuation
of the LAPACK [<A HREF="node189.html#laug">3</A>] project, which designed and produced
analogous software
for workstations, vector supercomputers, and shared-memory parallel
computers. Both libraries contain routines for solving systems of
linear equations, least squares problems, and eigenvalue problems.
The goals of both projects are efficiency (to run as fast as
possible), scalability<A NAME="362"> </A> (as the problem size and number of
processors grow), reliability<A NAME="363"> </A> (including error bounds),
portability<A NAME="364"> </A> (across all important parallel machines),
flexibility (so users can construct new routines from
well-designed parts), and ease of use (by making the interface
to LAPACK and ScaLAPACK look as similar as possible). Many of these goals,
particularly portability, are aided by developing and promoting
<EM>standards</EM><A NAME="366"> </A>, especially for low-level communication and
computation routines. We have been successful in attaining these
goals, limiting most machine dependencies to two standard
libraries called the BLAS, or Basic Linear Algebra Subprograms
[<A HREF="node189.html#blas3">57</A>, <A HREF="node189.html#blas2">59</A>, <A HREF="node189.html#blas0">74</A>, <A HREF="node189.html#blas1">93</A>], and BLACS, or Basic Linear Algebra
Communication Subprograms [<A HREF="node189.html#lawn37">50</A>, <A HREF="node189.html#lawn94">54</A>]. LAPACK will run
on any machine where the BLAS are available, and ScaLAPACK will run on
any machine where both the BLAS and the BLACS are available.
<P>
The library is currently written in Fortran 77 (with the exception of
a few symmetric eigenproblem auxiliary routines written in C to exploit
IEEE arithmetic) in a Single Program
Multiple Data (SPMD)<A NAME="369"> </A><A NAME="370"> </A> style using explicit message passing<A NAME="371"> </A> for interprocessor
communication.
The name ScaLAPACK is an acronym for Scalable Linear Algebra PACKage,
or Scalable LAPACK.
<P>
<BR> <HR>
<P><ADDRESS>
<I>Susan Blackford <BR>
Tue May 13 09:21:01 EDT 1997</I>
</ADDRESS>
</BODY>
</HTML>
|