You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
234 lines
7.6 KiB
HTML
234 lines
7.6 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
|
|
|
<!--Converted with LaTeX2HTML 2008 (1.71)
|
|
original version by: Nikos Drakos, CBLU, University of Leeds
|
|
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
|
|
* with significant contributions from:
|
|
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE>Data Structures and Classes</TITLE>
|
|
<META NAME="description" CONTENT="Data Structures and Classes">
|
|
<META NAME="keywords" CONTENT="userhtml">
|
|
<META NAME="resource-type" CONTENT="document">
|
|
<META NAME="distribution" CONTENT="global">
|
|
|
|
<META NAME="Generator" CONTENT="LaTeX2HTML v2008">
|
|
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
|
|
|
|
<LINK REL="STYLESHEET" HREF="userhtml.css">
|
|
|
|
<LINK REL="next" HREF="node39.html">
|
|
<LINK REL="previous" HREF="node3.html">
|
|
<LINK REL="up" HREF="userhtml.html">
|
|
<LINK REL="next" HREF="node10.html">
|
|
</HEAD>
|
|
|
|
<BODY >
|
|
<!--Navigation Panel-->
|
|
<A NAME="tex2html284"
|
|
HREF="node10.html">
|
|
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A>
|
|
<A NAME="tex2html280"
|
|
HREF="userhtml.html">
|
|
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A>
|
|
<A NAME="tex2html274"
|
|
HREF="node8.html">
|
|
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A>
|
|
<A NAME="tex2html282"
|
|
HREF="node1.html">
|
|
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>
|
|
<BR>
|
|
<B> Next:</B> <A NAME="tex2html285"
|
|
HREF="node10.html">Descriptor data structure</A>
|
|
<B> Up:</B> <A NAME="tex2html281"
|
|
HREF="userhtml.html">userhtml</A>
|
|
<B> Previous:</B> <A NAME="tex2html275"
|
|
HREF="node8.html">Programming model</A>
|
|
<B> <A NAME="tex2html283"
|
|
HREF="node1.html">Contents</A></B>
|
|
<BR>
|
|
<BR>
|
|
<!--End of Navigation Panel-->
|
|
|
|
<H1><A NAME="SECTION00040000000000000000"></A>
|
|
<A NAME="sec:datastruct"></A>
|
|
<BR>
|
|
Data Structures and Classes
|
|
</H1>
|
|
|
|
<P>
|
|
In this chapter we illustrate the data structures used for definition of
|
|
routines interfaces. They include data structures for sparse matrices,
|
|
communication descriptors and preconditioners.
|
|
<P>
|
|
All the data types and the basic subroutine interfaces related to
|
|
descriptors and sparse matrices are defined in
|
|
the module <code>psb_base_mod</code>; this will have to be included by every
|
|
user subroutine that makes use of the library. The preconditioners are
|
|
defined in the module <code>psb_prec_mod</code>
|
|
|
|
<P>
|
|
Integer, real and complex data types are parametrized with a kind type
|
|
defined in the library as follows:
|
|
<DL>
|
|
<DT><STRONG>psb_spk_</STRONG></DT>
|
|
<DD>Kind parameter for short precision real and complex
|
|
data; corresponds to a <code>REAL</code> declaration and is
|
|
normally 4 bytes;
|
|
</DD>
|
|
<DT><STRONG>psb_dpk_</STRONG></DT>
|
|
<DD>Kind parameter for long precision real and complex
|
|
data; corresponds to a <code>DOUBLE PRECISION</code> declaration and is
|
|
normally 8 bytes;
|
|
</DD>
|
|
<DT><STRONG>psb_ipk_</STRONG></DT>
|
|
<DD>Kind parameter for integer data;
|
|
with default build options this is a 4 bytes integer, but there is
|
|
(highly) experimental support for 8-bytes integers;
|
|
</DD>
|
|
<DT><STRONG>psb_mpik_</STRONG></DT>
|
|
<DD>Kind parameter for 4-bytes integer data, as is
|
|
always used by MPI;
|
|
</DD>
|
|
<DT><STRONG>psb_long_int_k_</STRONG></DT>
|
|
<DD>Kind parameter for long (8 bytes) integers,
|
|
which are always used by the <code>sizeof</code> methods.
|
|
</DD>
|
|
</DL>
|
|
Together with the classes attributes we also discuss their
|
|
methods. Most methods detailed here only act on the local variable,
|
|
i.e. their action is purely local and asynchronous unless otherwise
|
|
stated.
|
|
The list of methods here is not completely exhaustive; many methods,
|
|
especially those that alter the contents of the various objects, are
|
|
usually not needed by the end-user, and therefore are described in the
|
|
developer's documentation.
|
|
|
|
<P>
|
|
<BR><HR>
|
|
<!--Table of Child-Links-->
|
|
<A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
|
|
|
|
<UL>
|
|
<LI><A NAME="tex2html286"
|
|
HREF="node10.html">Descriptor data structure</A>
|
|
<UL>
|
|
<LI><A NAME="tex2html287"
|
|
HREF="node11.html">Methods</A>
|
|
<LI><A NAME="tex2html288"
|
|
HREF="node12.html">get_local_rows -- Get number of local rows</A>
|
|
<LI><A NAME="tex2html289"
|
|
HREF="node13.html">get_local_cols -- Get number of local cols</A>
|
|
<LI><A NAME="tex2html290"
|
|
HREF="node14.html">get_global_rows -- Get number of global rows</A>
|
|
<LI><A NAME="tex2html291"
|
|
HREF="node15.html">get_global_cols -- Get number of global cols</A>
|
|
</UL>
|
|
<BR>
|
|
<LI><A NAME="tex2html292"
|
|
HREF="node16.html">
|
|
<DIV ALIGN="LEFT">
|
|
get_context--Get communication context
|
|
</DIV></A>
|
|
<LI><A NAME="tex2html293"
|
|
HREF="node17.html">
|
|
<DIV ALIGN="LEFT">
|
|
clone--Clone current object
|
|
</DIV></A>
|
|
<UL>
|
|
<LI><A NAME="tex2html294"
|
|
HREF="node18.html">psb_cd_get_large_threshold -- Get threshold for
|
|
index mapping switch</A>
|
|
<LI><A NAME="tex2html295"
|
|
HREF="node19.html">psb_cd_set_large_threshold -- Set threshold for
|
|
index mapping switch</A>
|
|
<LI><A NAME="tex2html296"
|
|
HREF="node20.html">Named Constants</A>
|
|
</UL>
|
|
<BR>
|
|
<LI><A NAME="tex2html297"
|
|
HREF="node21.html">Sparse Matrix class</A>
|
|
<UL>
|
|
<LI><A NAME="tex2html298"
|
|
HREF="node22.html">Methods</A>
|
|
<LI><A NAME="tex2html299"
|
|
HREF="node23.html">get_nrows -- Get number of rows in a sparse matrix</A>
|
|
<LI><A NAME="tex2html300"
|
|
HREF="node24.html">get_ncols -- Get number of columns in a sparse matrix</A>
|
|
<LI><A NAME="tex2html301"
|
|
HREF="node25.html">get_nnzeros -- Get number of nonzero elements
|
|
in a sparse matrix</A>
|
|
<LI><A NAME="tex2html302"
|
|
HREF="node26.html">get_size -- Get maximum number of nonzero elements
|
|
in a sparse matrix</A>
|
|
<LI><A NAME="tex2html303"
|
|
HREF="node27.html">sizeof -- Get memory occupation in bytes
|
|
of a sparse matrix</A>
|
|
<LI><A NAME="tex2html304"
|
|
HREF="node28.html">get_fmt -- Short description of the dynamic type</A>
|
|
<LI><A NAME="tex2html305"
|
|
HREF="node29.html">is_bld, is_upd, is_asb -- Status check</A>
|
|
</UL>
|
|
<BR>
|
|
<LI><A NAME="tex2html306"
|
|
HREF="node30.html">
|
|
<DIV ALIGN="LEFT">
|
|
clone--Clone current object
|
|
</DIV></A>
|
|
<UL>
|
|
<LI><A NAME="tex2html307"
|
|
HREF="node31.html">Named Constants</A>
|
|
</UL>
|
|
<BR>
|
|
<LI><A NAME="tex2html308"
|
|
HREF="node32.html">Dense Vector Data Structure</A>
|
|
<UL>
|
|
<LI><A NAME="tex2html309"
|
|
HREF="node33.html">Methods</A>
|
|
<LI><A NAME="tex2html310"
|
|
HREF="node34.html">get_nrows -- Get number of rows in a dense vector</A>
|
|
<LI><A NAME="tex2html311"
|
|
HREF="node35.html">sizeof -- Get memory occupation in bytes
|
|
of a dense vector</A>
|
|
<LI><A NAME="tex2html312"
|
|
HREF="node36.html">get_vect -- Get a copy of the vector contents</A>
|
|
</UL>
|
|
<BR>
|
|
<LI><A NAME="tex2html313"
|
|
HREF="node37.html">
|
|
<DIV ALIGN="LEFT">
|
|
clone--Clone current object
|
|
</DIV></A>
|
|
<LI><A NAME="tex2html314"
|
|
HREF="node38.html">Preconditioner data structure</A>
|
|
</UL>
|
|
<!--End of Table of Child-Links-->
|
|
<HR>
|
|
<!--Navigation Panel-->
|
|
<A NAME="tex2html284"
|
|
HREF="node10.html">
|
|
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A>
|
|
<A NAME="tex2html280"
|
|
HREF="userhtml.html">
|
|
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A>
|
|
<A NAME="tex2html274"
|
|
HREF="node8.html">
|
|
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A>
|
|
<A NAME="tex2html282"
|
|
HREF="node1.html">
|
|
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>
|
|
<BR>
|
|
<B> Next:</B> <A NAME="tex2html285"
|
|
HREF="node10.html">Descriptor data structure</A>
|
|
<B> Up:</B> <A NAME="tex2html281"
|
|
HREF="userhtml.html">userhtml</A>
|
|
<B> Previous:</B> <A NAME="tex2html275"
|
|
HREF="node8.html">Programming model</A>
|
|
<B> <A NAME="tex2html283"
|
|
HREF="node1.html">Contents</A></B>
|
|
<!--End of Navigation Panel-->
|
|
|
|
</BODY>
|
|
</HTML>
|