libMesh::SparseShellMatrix< T > Class Template Reference
#include <sparse_shell_matrix.h>

Public Member Functions | |
| SparseShellMatrix (const SparseMatrix< T > &new_m) | |
| virtual | ~SparseShellMatrix () |
| virtual numeric_index_type | m () const |
| virtual numeric_index_type | n () const |
| virtual void | vector_mult (NumericVector< T > &dest, const NumericVector< T > &arg) const |
| virtual void | vector_mult_add (NumericVector< T > &dest, const NumericVector< T > &arg) const |
| virtual void | get_diagonal (NumericVector< T > &dest) const |
Static Public Member Functions | |
| static std::string | get_info () |
| static void | print_info (std::ostream &out=libMesh::out) |
| static unsigned int | n_objects () |
| static void | enable_print_counter_info () |
| static void | disable_print_counter_info () |
Protected Types | |
| typedef std::map< std::string, std::pair< unsigned int, unsigned int > > | Counts |
Protected Member Functions | |
| void | increment_constructor_count (const std::string &name) |
| void | increment_destructor_count (const std::string &name) |
Protected Attributes | |
| const SparseMatrix< T > & | _m |
Static Protected Attributes | |
| static Counts | _counts |
| static Threads::atomic < unsigned int > | _n_objects |
| static Threads::spin_mutex | _mutex |
| static bool | _enable_print_counter = true |
Detailed Description
template<typename T>
class libMesh::SparseShellMatrix< T >
This class allows to use any SparseMatrix object as a shell matrix.
Definition at line 42 of file sparse_shell_matrix.h.
Member Typedef Documentation
typedef std::map<std::string, std::pair<unsigned int, unsigned int> > libMesh::ReferenceCounter::Counts [protected, inherited] |
Data structure to log the information. The log is identified by the class name.
Definition at line 113 of file reference_counter.h.
Constructor & Destructor Documentation
| libMesh::SparseShellMatrix< T >::SparseShellMatrix | ( | const SparseMatrix< T > & | new_m | ) | [inline, explicit] |
Constructor; takes references to the sparse matrix. The sparse matrix itself has to be stored elsewhere.
Definition at line 101 of file sparse_shell_matrix.h.
00101 : 00102 ShellMatrix<T>(), 00103 _m(new_m) 00104 {}
| libMesh::SparseShellMatrix< T >::~SparseShellMatrix | ( | ) | [inline, virtual] |
Member Function Documentation
| void libMesh::ReferenceCounter::disable_print_counter_info | ( | ) | [static, inherited] |
Definition at line 106 of file reference_counter.C.
References libMesh::ReferenceCounter::_enable_print_counter.
00107 { 00108 _enable_print_counter = false; 00109 return; 00110 }
| void libMesh::ReferenceCounter::enable_print_counter_info | ( | ) | [static, inherited] |
Methods to enable/disable the reference counter output from print_info()
Definition at line 100 of file reference_counter.C.
References libMesh::ReferenceCounter::_enable_print_counter.
00101 { 00102 _enable_print_counter = true; 00103 return; 00104 }
| void libMesh::SparseShellMatrix< T >::get_diagonal | ( | NumericVector< T > & | dest | ) | const [inline, virtual] |
Copies the diagonal part of the matrix into dest.
Implements libMesh::ShellMatrix< T >.
Definition at line 135 of file sparse_shell_matrix.h.
References libMesh::SparseShellMatrix< T >::_m.
00136 { 00137 _m.get_diagonal(dest); 00138 }
| std::string libMesh::ReferenceCounter::get_info | ( | ) | [static, inherited] |
Gets a string containing the reference information.
Definition at line 47 of file reference_counter.C.
References libMesh::ReferenceCounter::_counts, and libMesh::Quality::name().
Referenced by libMesh::ReferenceCounter::print_info().
00048 { 00049 #if defined(LIBMESH_ENABLE_REFERENCE_COUNTING) && defined(DEBUG) 00050 00051 std::ostringstream oss; 00052 00053 oss << '\n' 00054 << " ---------------------------------------------------------------------------- \n" 00055 << "| Reference count information |\n" 00056 << " ---------------------------------------------------------------------------- \n"; 00057 00058 for (Counts::iterator it = _counts.begin(); 00059 it != _counts.end(); ++it) 00060 { 00061 const std::string name(it->first); 00062 const unsigned int creations = it->second.first; 00063 const unsigned int destructions = it->second.second; 00064 00065 oss << "| " << name << " reference count information:\n" 00066 << "| Creations: " << creations << '\n' 00067 << "| Destructions: " << destructions << '\n'; 00068 } 00069 00070 oss << " ---------------------------------------------------------------------------- \n"; 00071 00072 return oss.str(); 00073 00074 #else 00075 00076 return ""; 00077 00078 #endif 00079 }
| void libMesh::ReferenceCounter::increment_constructor_count | ( | const std::string & | name | ) | [inline, protected, inherited] |
Increments the construction counter. Should be called in the constructor of any derived class that will be reference counted.
Definition at line 163 of file reference_counter.h.
References libMesh::ReferenceCounter::_counts, and libMesh::Threads::spin_mtx.
Referenced by libMesh::ReferenceCountedObject< RBParametrized >::ReferenceCountedObject().
00164 { 00165 Threads::spin_mutex::scoped_lock lock(Threads::spin_mtx); 00166 std::pair<unsigned int, unsigned int>& p = _counts[name]; 00167 00168 p.first++; 00169 }
| void libMesh::ReferenceCounter::increment_destructor_count | ( | const std::string & | name | ) | [inline, protected, inherited] |
Increments the destruction counter. Should be called in the destructor of any derived class that will be reference counted.
Definition at line 176 of file reference_counter.h.
References libMesh::ReferenceCounter::_counts, and libMesh::Threads::spin_mtx.
Referenced by libMesh::ReferenceCountedObject< RBParametrized >::~ReferenceCountedObject().
00177 { 00178 Threads::spin_mutex::scoped_lock lock(Threads::spin_mtx); 00179 std::pair<unsigned int, unsigned int>& p = _counts[name]; 00180 00181 p.second++; 00182 }
| numeric_index_type libMesh::SparseShellMatrix< T >::m | ( | ) | const [inline, virtual] |
- Returns:
m, the row-dimension of the matrix where the marix is
.
Implements libMesh::ShellMatrix< T >.
Definition at line 117 of file sparse_shell_matrix.h.
References libMesh::SparseShellMatrix< T >::_m.
00118 { 00119 return _m.m(); 00120 }
| numeric_index_type libMesh::SparseShellMatrix< T >::n | ( | ) | const [inline, virtual] |
- Returns:
n, the column-dimension of the matrix where the marix is
.
Implements libMesh::ShellMatrix< T >.
Definition at line 126 of file sparse_shell_matrix.h.
References libMesh::SparseShellMatrix< T >::_m.
00127 { 00128 return _m.n(); 00129 }
| static unsigned int libMesh::ReferenceCounter::n_objects | ( | ) | [inline, static, inherited] |
Prints the number of outstanding (created, but not yet destroyed) objects.
Definition at line 79 of file reference_counter.h.
References libMesh::ReferenceCounter::_n_objects.
00080 { return _n_objects; }
| void libMesh::ReferenceCounter::print_info | ( | std::ostream & | out = libMesh::out |
) | [static, inherited] |
Prints the reference information, by default to libMesh::out.
Definition at line 88 of file reference_counter.C.
References libMesh::ReferenceCounter::_enable_print_counter, and libMesh::ReferenceCounter::get_info().
00089 { 00090 if( _enable_print_counter ) out_stream << ReferenceCounter::get_info(); 00091 }
| void libMesh::SparseShellMatrix< T >::vector_mult | ( | NumericVector< T > & | dest, | |
| const NumericVector< T > & | arg | |||
| ) | const [inline, virtual] |
Multiplies the matrix with arg and stores the result in dest.
Implements libMesh::ShellMatrix< T >.
Definition at line 27 of file sparse_shell_matrix.C.
References libMesh::SparseShellMatrix< T >::_m.
00029 { 00030 _m.vector_mult(dest,arg); 00031 }
| void libMesh::SparseShellMatrix< T >::vector_mult_add | ( | NumericVector< T > & | dest, | |
| const NumericVector< T > & | arg | |||
| ) | const [inline, virtual] |
Multiplies the matrix with arg and adds the result to dest.
Implements libMesh::ShellMatrix< T >.
Definition at line 36 of file sparse_shell_matrix.C.
References libMesh::SparseShellMatrix< T >::_m.
00038 { 00039 _m.vector_mult_add(dest,arg); 00040 }
Member Data Documentation
ReferenceCounter::Counts libMesh::ReferenceCounter::_counts [static, protected, inherited] |
Actually holds the data.
Definition at line 118 of file reference_counter.h.
Referenced by libMesh::ReferenceCounter::get_info(), libMesh::ReferenceCounter::increment_constructor_count(), and libMesh::ReferenceCounter::increment_destructor_count().
bool libMesh::ReferenceCounter::_enable_print_counter = true [static, protected, inherited] |
Flag to control whether reference count information is printed when print_info is called.
Definition at line 137 of file reference_counter.h.
Referenced by libMesh::ReferenceCounter::disable_print_counter_info(), libMesh::ReferenceCounter::enable_print_counter_info(), and libMesh::ReferenceCounter::print_info().
const SparseMatrix<T>& libMesh::SparseShellMatrix< T >::_m [protected] |
The sparse matrix.
Definition at line 91 of file sparse_shell_matrix.h.
Referenced by libMesh::SparseShellMatrix< T >::get_diagonal(), libMesh::SparseShellMatrix< T >::m(), libMesh::SparseShellMatrix< T >::n(), libMesh::SparseShellMatrix< T >::vector_mult(), and libMesh::SparseShellMatrix< T >::vector_mult_add().
Threads::spin_mutex libMesh::ReferenceCounter::_mutex [static, protected, inherited] |
Mutual exclusion object to enable thread-safe reference counting.
Definition at line 131 of file reference_counter.h.
Threads::atomic< unsigned int > libMesh::ReferenceCounter::_n_objects [static, protected, inherited] |
The number of objects. Print the reference count information when the number returns to 0.
Definition at line 126 of file reference_counter.h.
Referenced by libMesh::ReferenceCounter::n_objects(), libMesh::ReferenceCounter::ReferenceCounter(), and libMesh::ReferenceCounter::~ReferenceCounter().
The documentation for this class was generated from the following files:
Site Created By: libMesh Developers
Last modified: February 05 2013 19:55:39 UTC
Hosted By: