![]() |
Ginkgo
Generated from tags/v1.0.0^0 branch based on master. Ginkgo version 1.0.0
A numerical linear algebra library targeting many-core architectures
|
A PolymorphicObject is the abstract base for all "heavy" objects in Ginkgo that behave polymorphically. More...
#include <ginkgo/core/base/polymorphic_object.hpp>
Public Member Functions | |
PolymorphicObject & | operator= (const PolymorphicObject &) |
std::unique_ptr< PolymorphicObject > | create_default (std::shared_ptr< const Executor > exec) const |
Creates a new "default" object of the same dynamic type as this object. More... | |
std::unique_ptr< PolymorphicObject > | create_default () const |
Creates a new "default" object of the same dynamic type as this object. More... | |
std::unique_ptr< PolymorphicObject > | clone (std::shared_ptr< const Executor > exec) const |
Creates a clone of the object. More... | |
std::unique_ptr< PolymorphicObject > | clone () const |
Creates a clone of the object. More... | |
PolymorphicObject * | copy_from (const PolymorphicObject *other) |
Copies another object into this object. More... | |
PolymorphicObject * | copy_from (std::unique_ptr< PolymorphicObject > other) |
Moves another object into this object. More... | |
PolymorphicObject * | clear () |
Transforms the object into its default state. More... | |
std::shared_ptr< const Executor > | get_executor () const noexcept |
Returns the Executor of the object. More... | |
![]() | |
void | add_logger (std::shared_ptr< const Logger > logger) override |
Adds a new logger to the list of subscribed loggers. More... | |
void | remove_logger (const Logger *logger) override |
Removes a logger from the list of subscribed loggers. More... | |
A PolymorphicObject is the abstract base for all "heavy" objects in Ginkgo that behave polymorphically.
It defines the basic utilities (copying moving, cloning, clearing the objects) for all such objects. It takes into account that these objects are dynamically allocated, managed by smart pointers, and used polymorphically. Additionally, it assumes their data can be allocated on different executors, and that they can be copied between those executors.
|
inline |
Transforms the object into its default state.
Equivalent to this->copy_from(this->create_default())
.
|
inline |
Creates a clone of the object.
This is the polymorphic equivalent of the executor copy constructor decltype(*this)(exec, this)
.
exec | the executor where the clone will be created |
References create_default().
|
inline |
Creates a clone of the object.
This is a shorthand for clone(std::shared_ptr<const Executor>) that uses the executor of this object to construct the new object.
|
inline |
Copies another object into this object.
This is the polymorphic equivalent of the copy assignment operator.
other | the object to copy |
|
inline |
Moves another object into this object.
This is the polymorphic equivalent of the move assignment operator.
other | the object to move from |
|
inline |
Creates a new "default" object of the same dynamic type as this object.
This is the polymorphic equivalent of the executor default constructor decltype(*this)(exec);
.
exec | the executor where the object will be created |
|
inline |
Creates a new "default" object of the same dynamic type as this object.
This is a shorthand for create_default(std::shared_ptr<const Executor>) that uses the executor of this object to construct the new object.
Referenced by clone().
|
inlinenoexcept |
Returns the Executor of the object.
Referenced by gko::matrix::Dense< ValueType >::add_scaled(), gko::LinOp::apply(), gko::matrix::Coo< ValueType, IndexType >::apply2(), gko::matrix::Dense< ValueType >::compute_dot(), gko::matrix::Dense< ValueType >::compute_norm2(), gko::matrix::Dense< ValueType >::create_submatrix(), and gko::matrix::Dense< ValueType >::scale().