File: intro.tex

package info (click to toggle)
spooles 2.2-11
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 19,656 kB
  • ctags: 3,690
  • sloc: ansic: 146,836; sh: 7,571; csh: 3,615; makefile: 1,968; perl: 74
file content (20 lines) | stat: -rw-r--r-- 896 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
\par
\chapter{{\tt DenseMtx}: Dense matrix object}
\par
The {\tt DenseMtx} object contains a dense matrix along with row and
column indices.
The entries in the matrix can be double precision real or double
precision complex.
It needs to be able to manage its own storage, much like the {\tt
Chv} and {\tt SubMtx} objects that are used during the 
factor and solves, so we include
this capability via a contained {\tt DV} object.
A {\tt DenseMtx} object may also be found in a list, so there is
a {\tt next} field that points to another {\tt DenseMtx} object.
\par
The {\tt DenseMtx} object also exists in an MPI environment,
where it holds the solution and right hand side matrices.
Since each of these two matrices is distributed, a processor
{\it owns} only part of the global matrix, and so the need for row
and column indices to specify which rows and columns are present on
which processor.