Ginkgo  Generated from pipelines/1330831941 branch based on master. Ginkgo version 1.8.0
A numerical linear algebra library targeting many-core architectures
Public Types | Public Member Functions | List of all members
gko::reorder::ReorderingBase< IndexType > Class Template Reference

The ReorderingBase class is a base class for all the reordering algorithms. More...

#include <ginkgo/core/reorder/reordering_base.hpp>

Inheritance diagram for gko::reorder::ReorderingBase< IndexType >:
[legend]
Collaboration diagram for gko::reorder::ReorderingBase< IndexType >:
[legend]

Public Types

using index_type = IndexType
 

Public Member Functions

const array< index_type > & get_permutation_array () const
 
- Public Member Functions inherited from gko::EnableAbstractPolymorphicObject< ReorderingBase< IndexType > >
std::unique_ptr< ReorderingBase< IndexType > > create_default (std::shared_ptr< const Executor > exec) const
 
std::unique_ptr< ReorderingBase< IndexType > > create_default () const
 
std::unique_ptr< ReorderingBase< IndexType > > clone (std::shared_ptr< const Executor > exec) const
 
std::unique_ptr< ReorderingBase< IndexType > > clone () const
 
ReorderingBase< IndexType > * copy_from (const PolymorphicObject *other)
 
std::enable_if_t< std::is_base_of< PolymorphicObject, std::decay_t< Derived > >::value, ReorderingBase< IndexType > > * copy_from (std::unique_ptr< Derived > &&other)
 
std::enable_if_t< std::is_base_of< PolymorphicObject, std::decay_t< Derived > >::value, ReorderingBase< IndexType > > * copy_from (const std::unique_ptr< Derived > &other)
 
ReorderingBase< IndexType > * copy_from (const std::shared_ptr< const PolymorphicObject > &other)
 
ReorderingBase< IndexType > * move_from (ptr_param< PolymorphicObject > other)
 
ReorderingBase< IndexType > * clear ()
 
- Public Member Functions inherited from gko::PolymorphicObject
PolymorphicObjectoperator= (const PolymorphicObject &)
 
std::unique_ptr< PolymorphicObjectcreate_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< PolymorphicObjectcreate_default () const
 Creates a new "default" object of the same dynamic type as this object. More...
 
std::unique_ptr< PolymorphicObjectclone (std::shared_ptr< const Executor > exec) const
 Creates a clone of the object. More...
 
std::unique_ptr< PolymorphicObjectclone () const
 Creates a clone of the object. More...
 
PolymorphicObjectcopy_from (const PolymorphicObject *other)
 Copies another object into this object. More...
 
template<typename Derived , typename Deleter >
std::enable_if_t< std::is_base_of< PolymorphicObject, std::decay_t< Derived > >::value, PolymorphicObject > * copy_from (std::unique_ptr< Derived, Deleter > &&other)
 Moves another object into this object. More...
 
template<typename Derived , typename Deleter >
std::enable_if_t< std::is_base_of< PolymorphicObject, std::decay_t< Derived > >::value, PolymorphicObject > * copy_from (const std::unique_ptr< Derived, Deleter > &other)
 Copies another object into this object. More...
 
PolymorphicObjectcopy_from (const std::shared_ptr< const PolymorphicObject > &other)
 Copies another object into this object. More...
 
PolymorphicObjectmove_from (ptr_param< PolymorphicObject > other)
 Moves another object into this object. More...
 
PolymorphicObjectclear ()
 Transforms the object into its default state. More...
 
std::shared_ptr< const Executorget_executor () const noexcept
 Returns the Executor of the object. More...
 
- Public Member Functions inherited from gko::log::EnableLogging< PolymorphicObject >
void add_logger (std::shared_ptr< const Logger > logger) override
 
void remove_logger (const Logger *logger) override
 
void remove_logger (ptr_param< const Logger > logger)
 
const std::vector< std::shared_ptr< const Logger > > & get_loggers () const override
 
void clear_loggers () override
 
- Public Member Functions inherited from gko::log::Loggable
void remove_logger (ptr_param< const Logger > logger)
 

Detailed Description

template<typename IndexType = int32>
class gko::reorder::ReorderingBase< IndexType >

The ReorderingBase class is a base class for all the reordering algorithms.

It contains a factory to instantiate the reorderings. It is up to each specific reordering to decide what to do with the data that is passed to it.


The documentation for this class was generated from the following file: