|
ROL
|
By keeping a pointer to this in a derived Vector class, a tally of all methods is kept for profiling function calls. More...
#include <ROL_ProfiledVector.hpp>
Inheritance diagram for ROL::ProfiledVector< Ordinal, Real >:Public Member Functions | |
| ProfiledVector (const Teuchos::RCP< Vector< Real > > &v) | |
| virtual | ~ProfiledVector () |
| void | plus (const Vector< Real > &x) |
| Compute \(y \leftarrow y + x\), where \(y = \mathtt{*this}\). More... | |
| void | scale (const Real alpha) |
| Compute \(y \leftarrow \alpha y\) where \(y = \mathtt{*this}\). More... | |
| Real | dot (const Vector< Real > &x) const |
| Compute \( \langle y,x \rangle \) where \(y = \mathtt{*this}\). More... | |
| Real | norm () const |
| Returns \( \| y \| \) where \(y = \mathtt{*this}\). More... | |
| Teuchos::RCP< Vector< Real > > | clone () const |
| Clone to make a new (uninitialized) vector. More... | |
| void | axpy (const Real alpha, const Vector< Real > &x) |
| Compute \(y \leftarrow \alpha x + y\) where \(y = \mathtt{*this}\). More... | |
| void | zero () |
| Set to zero vector. More... | |
| Teuchos::RCP< Vector< Real > > | basis (const int i) const |
| Return i-th basis vector. More... | |
| int | dimension () const |
| Return dimension of the vector space. More... | |
| void | set (const Vector< Real > &x) |
| Set \(y \leftarrow x\) where \(y = \mathtt{*this}\). More... | |
| const Vector< Real > & | dual () const |
| Return dual representation of \(\mathtt{*this}\), for example, the result of applying a Riesz map, or change of basis, or change of memory layout. More... | |
| Teuchos::RCP< Vector< Real > > | getVector () |
| Teuchos::RCP< const Vector< Real > > | getVector () const |
| void | applyUnary (const Elementwise::UnaryFunction< Real > &f) |
| void | applyBinary (const Elementwise::BinaryFunction< Real > &f, const Vector< Real > &x) |
| Real | reduce (const Elementwise::ReductionOp< Real > &r) const |
| void | print (std::ostream &outStream) const |
Public Member Functions inherited from ROL::Vector< Real > | |
| virtual | ~Vector () |
| virtual std::vector< Real > | checkVector (const Vector< Real > &x, const Vector< Real > &y, const bool printToStream=true, std::ostream &outStream=std::cout) const |
| Verify vector-space methods. More... | |
Private Types | |
| template<typename T > | |
| using | RCP = Teuchos::RCP< T > |
| typedef Vector< Real > | V |
Private Member Functions | |
| template<> | |
| ROL::VectorFunctionCalls< int > | functionCalls_ |
Private Attributes | |
| Teuchos::RCP< Vector< Real > > | v_ |
Static Private Attributes | |
| static VectorFunctionCalls< Ordinal > | functionCalls_ |
Friends | |
| VectorFunctionCalls< Ordinal > | getVectorFunctionCalls (const ProfiledVector< Ordinal, Real > &) |
| void | printVectorFunctionCalls (const ProfiledVector< Ordinal, Real > &, std::ostream &) |
By keeping a pointer to this in a derived Vector class, a tally of all methods is kept for profiling function calls.
NOTE: This class is not yet compatible with vectors that have true duals
In the cpp file where this is used, you must initialize the VectorFunctionCalls object.
Example usage:
template<> VectorFunctionCalls<int> ProfiledVector<int,double>::functionCalls = VectorFunctionCalls<int>();
Definition at line 97 of file ROL_ProfiledVector.hpp.
|
private |
Definition at line 131 of file ROL_ProfiledVector.hpp.
|
private |
Definition at line 132 of file ROL_ProfiledVector.hpp.
|
inline |
Definition at line 139 of file ROL_ProfiledVector.hpp.
References ROL::VectorFunctionCalls< Ordinal >::constructor_.
|
inlinevirtual |
Definition at line 151 of file ROL_ProfiledVector.hpp.
References ROL::VectorFunctionCalls< Ordinal >::destructor_.
|
inlinevirtual |
Compute \(y \leftarrow y + x\), where \(y = \mathtt{*this}\).
| [in] | x | is the vector to be added to \(\mathtt{*this}\). |
On return \(\mathtt{*this} = \mathtt{*this} + x\).
Implements ROL::Vector< Real >.
Definition at line 155 of file ROL_ProfiledVector.hpp.
References ROL::VectorFunctionCalls< Ordinal >::plus_.
|
inlinevirtual |
Compute \(y \leftarrow \alpha y\) where \(y = \mathtt{*this}\).
| [in] | alpha | is the scaling of \(\mathtt{*this}\). |
On return \(\mathtt{*this} = \alpha (\mathtt{*this}) \).
Implements ROL::Vector< Real >.
Definition at line 162 of file ROL_ProfiledVector.hpp.
References ROL::VectorFunctionCalls< Ordinal >::scale_.
|
inlinevirtual |
Compute \( \langle y,x \rangle \) where \(y = \mathtt{*this}\).
| [in] | x | is the vector that forms the dot product with \(\mathtt{*this}\). |
Implements ROL::Vector< Real >.
Definition at line 167 of file ROL_ProfiledVector.hpp.
References ROL::VectorFunctionCalls< Ordinal >::dot_.
|
inlinevirtual |
Returns \( \| y \| \) where \(y = \mathtt{*this}\).
Implements ROL::Vector< Real >.
Definition at line 173 of file ROL_ProfiledVector.hpp.
References ROL::VectorFunctionCalls< Ordinal >::norm_.
|
inlinevirtual |
Clone to make a new (uninitialized) vector.
Provides the means of allocating temporary memory in ROL.
Implements ROL::Vector< Real >.
Definition at line 178 of file ROL_ProfiledVector.hpp.
References ROL::VectorFunctionCalls< Ordinal >::clone_.
|
inlinevirtual |
Compute \(y \leftarrow \alpha x + y\) where \(y = \mathtt{*this}\).
| [in] | alpha | is the scaling of x. |
| [in] | x | is a vector. |
On return \(\mathtt{*this} = \mathtt{*this} + \alpha x \). Uses clone, set, scale and plus for the computation. Please overload if a more efficient implementation is needed.
Reimplemented from ROL::Vector< Real >.
Definition at line 183 of file ROL_ProfiledVector.hpp.
References ROL::VectorFunctionCalls< Ordinal >::axpy_.
|
inlinevirtual |
Set to zero vector.
Uses scale by zero for the computation. Please overload if a more efficient implementation is needed.
Reimplemented from ROL::Vector< Real >.
Definition at line 189 of file ROL_ProfiledVector.hpp.
References ROL::VectorFunctionCalls< Ordinal >::zero_.
|
inlinevirtual |
Return i-th basis vector.
| [in] | i | is the index of the basis function. |
Overloading the basis is only required if the default gradient implementation is used, which computes a finite-difference approximation.
Reimplemented from ROL::Vector< Real >.
Definition at line 194 of file ROL_ProfiledVector.hpp.
References ROL::VectorFunctionCalls< Ordinal >::basis_.
|
inlinevirtual |
Return dimension of the vector space.
Overload if the basis is overloaded.
Reimplemented from ROL::Vector< Real >.
Definition at line 199 of file ROL_ProfiledVector.hpp.
References ROL::VectorFunctionCalls< Ordinal >::dimension_.
|
inlinevirtual |
Set \(y \leftarrow x\) where \(y = \mathtt{*this}\).
| [in] | x | is a vector. |
On return \(\mathtt{*this} = x\). Uses zero and plus methods for the computation. Please overload if a more efficient implementation is needed.
Reimplemented from ROL::Vector< Real >.
Definition at line 204 of file ROL_ProfiledVector.hpp.
References ROL::VectorFunctionCalls< Ordinal >::set_.
|
inlinevirtual |
Return dual representation of \(\mathtt{*this}\), for example, the result of applying a Riesz map, or change of basis, or change of memory layout.
By default, returns the current object. Please overload if you need a dual representation.
Reimplemented from ROL::Vector< Real >.
Definition at line 211 of file ROL_ProfiledVector.hpp.
References ROL::VectorFunctionCalls< Ordinal >::dual_.
|
inline |
Definition at line 216 of file ROL_ProfiledVector.hpp.
|
inline |
Definition at line 220 of file ROL_ProfiledVector.hpp.
|
inlinevirtual |
Reimplemented from ROL::Vector< Real >.
Definition at line 224 of file ROL_ProfiledVector.hpp.
References ROL::VectorFunctionCalls< Ordinal >::applyUnary_.
|
inlinevirtual |
Reimplemented from ROL::Vector< Real >.
Definition at line 229 of file ROL_ProfiledVector.hpp.
References ROL::VectorFunctionCalls< Ordinal >::applyBinary_.
|
inlinevirtual |
Reimplemented from ROL::Vector< Real >.
Definition at line 234 of file ROL_ProfiledVector.hpp.
References ROL::VectorFunctionCalls< Ordinal >::reduce_.
|
inlinevirtual |
Reimplemented from ROL::Vector< Real >.
Definition at line 239 of file ROL_ProfiledVector.hpp.
|
private |
Definition at line 63 of file vector/test_06.cpp.
|
friend |
Definition at line 100 of file ROL_ProfiledVector.hpp.
|
friend |
Definition at line 105 of file ROL_ProfiledVector.hpp.
|
private |
Definition at line 135 of file ROL_ProfiledVector.hpp.
|
staticprivate |
Definition at line 136 of file ROL_ProfiledVector.hpp.
Referenced by ROL::getVectorFunctionCalls(), and ROL::printVectorFunctionCalls().
1.8.13