dolfin team mailing list archive
-
dolfin team
-
Mailing list archive
-
Message #02257
Re: Dense matrices
On Thu, Mar 30, 2006 at 12:10:22AM +0200, Garth N. Wells wrote:
> > I'm not sure we should use Tensor or Array for this. They may have
> > similarities in data structures (you can access entries in various
> > positions) but I don't think they should have operations like inverse
> > or eigenvalues.
> >
>
> I was thinking more along the lines that Tensor would handle the
> algebra, and DenseMatrix would be derived from it, with the
> matrix-specific functions added in DenseMatrix. Also, the current
> Tensor template is really a multi-dimensional array. I think another
> name like MultiDimensionalArray would be more appropriate once
> tensor-valued functions are available.
>
> Garth
The class Tensor is not used anywhere. It was used before when the
precomputation of integrals (tensor representation) was handled by
DOLFIN. Since it has now moved to FFC, the class Tensor does not have
any real use and could be removed. When I look at it now, it seems
that I have assumed all axes have the same dimension, so you would
only be able to create m x m matrices... :-) or waist the extra
storage.
Another option would be to dig up the old DenseMatrix (attached) from
before we removed it in version 0.5.5.
But before we do anything more about this, it would be good to see
some benchmarks to motivate why this can't be handled by PETSc. We use
a lot of small PETSc matrices in the ODE solvers and it seems to work
ok.
/Anders
// Copyright (C) 2002 Johan Hoffman and Anders Logg.
// Licensed under the GNU GPL Version 2.
//
// Modified by Erik Svensson, 2003
#ifndef __DENSE_MATRIX_H
#define __DENSE_MATRIX_H
#include <dolfin/dolfin_log.h>
#include <dolfin/constants.h>
#include <dolfin/GenericMatrix.h>
namespace dolfin {
class SparseMatrix;
class DenseMatrix : public GenericMatrix {
public:
DenseMatrix ();
DenseMatrix (unsigned int m, unsigned int n);
DenseMatrix (const DenseMatrix& A);
DenseMatrix (const SparseMatrix& A);
~DenseMatrix ();
void init(unsigned int m, unsigned int n);
void clear();
unsigned int size(unsigned int dim) const;
unsigned int size() const;
unsigned int rowsize(unsigned int i) const;
unsigned int bytes() const;
real operator()(unsigned int i, unsigned int j) const;
real* operator[](unsigned int i);
real operator()(unsigned int i, unsigned int& j, unsigned int pos) const;
real& operator()(unsigned int i, unsigned int& j, unsigned int pos);
void operator= (real a);
void operator= (const DenseMatrix& A);
void operator= (const SparseMatrix& A);
void operator+= (const DenseMatrix& A);
void operator+= (const SparseMatrix& A);
void operator-= (const DenseMatrix& A);
void operator-= (const SparseMatrix& A);
void operator*= (real a);
real norm() const;
real mult (const Vector& x, unsigned int i) const;
void mult (const Vector& x, Vector& Ax) const;
void multt (const Vector& x, Vector& Ax) const;
void mult (const DenseMatrix& B, DenseMatrix& AB) const;
real multrow (const Vector& x, unsigned int i) const;
real multcol (const Vector& x, unsigned int j) const;
void resize();
void ident(unsigned int i);
void lump(Vector& a) const;
void addrow();
void addrow(const Vector& x);
void initrow(unsigned int i, unsigned int rowsize);
bool endrow(unsigned int i, unsigned int pos) const;
void settransp(const DenseMatrix& A);
void settransp(const SparseMatrix& A);
real rowmax(unsigned int i) const;
real colmax(unsigned int i) const;
real rowmin(unsigned int i) const;
real colmin(unsigned int i) const;
real rowsum(unsigned int i) const;
real colsum(unsigned int i) const;
real rownorm(unsigned int i, unsigned int type) const;
real colnorm(unsigned int i, unsigned int type) const;
void show() const;
friend LogStream& operator<< (LogStream& stream, const DenseMatrix& A);
friend class SparseMatrix;
protected:
void alloc(unsigned int m, unsigned int n);
real read (unsigned int i, unsigned int j) const;
void write (unsigned int i, unsigned int j, real value);
void add (unsigned int i, unsigned int j, real value);
void sub (unsigned int i, unsigned int j, real value);
void mult (unsigned int i, unsigned int j, real value);
void div (unsigned int i, unsigned int j, real value);
real** getvalues();
real** const getvalues() const;
void initperm();
void clearperm();
unsigned int* getperm();
unsigned int* const getperm() const;
private:
real** values;
unsigned int* permutation;
};
}
#endif
Follow ups
References