TrioCFD 1.9.9_beta
TrioCFD documentation
Loading...
Searching...
No Matches
TRUST_Deriv_Objet_U Class Reference

Class TRUST_Deriv_Objet_U is almost identical to TRUST_Deriv<Objet_U>, except that it does not contain the implicit conversion operators from OWN_PTR(Objet_U) to Objet_U. More...

#include <TRUST_Deriv.h>

Inheritance diagram for TRUST_Deriv_Objet_U:
[legend]
Collaboration diagram for TRUST_Deriv_Objet_U:
[legend]

Public Member Functions

 TRUST_Deriv_Objet_U ()
 TRUST_Deriv_Objet_U (const TRUST_Deriv_Objet_U &t)
 TRUST_Deriv_Objet_U (const Objet_U &t)
const Type_infoget_info_ptr () const override
const TRUST_Deriv_Objet_Uoperator= (const Objet_U &t)
const TRUST_Deriv_Objet_Uoperator= (const TRUST_Deriv_Objet_U &t)
int reprendre (Entree &is) override
 Restores an Objet_U from an input stream. Virtual method to override.
int sauvegarder (Sortie &os) const override
 Saves an Objet_U to an output stream. Virtual method to override.
void deplace (TRUST_Deriv_Objet_U &deriv_obj)
const Objet_Uvaleur () const
Objet_Uvaleur ()
Objet_Uoperator-> () const
Public Member Functions inherited from Objet_U_ptr
 Objet_U_ptr (const Objet_U_ptr &)=delete
const Objet_U_ptroperator= (const Objet_U_ptr &)=delete
 operator bool () const noexcept
const Nomle_nom () const override
 Returns the name of the Objet_U. Virtual method to override: returns "neant" in this implementation.
void nommer (const Nom &) override
 Assigns a name to the Objet_U. Virtual method to override.
Objet_Utyper (const char *nom_type)
 Tries to create an instance of type "type".
void detach ()
int associer_ (Objet_U &objet) override
 Associates the Objet_U with another Objet_U. Virtual method to override.
Public Member Functions inherited from Objet_U
 ~Objet_U () override
 Destructor. Removes the object from the list of objects registered in "memory".
int numero () const
 Returns the index of the object in Memoire::data.
virtual int duplique () const =0
virtual SortieprintOn (Sortie &) const
 Writes the object to an output stream. Virtual method to override.
virtual EntreereadOn (Entree &)
 Reads an Objet_U from an input stream. Virtual method to override.
virtual unsigned taille_memoire () const =0
virtual int est_egal_a (const Objet_U &) const
 Returns 1 if x and *this are the same instance (same memory address).
int get_object_id () const
 Returns the unique identifier of the object (object_id_).
virtual const Type_infoget_info () const
 Returns type information for the Objet_U.
const Nomque_suis_je () const
 Returns the string identifying the class.
const char * le_type () const
 Returns the type name of the Objet_U.
virtual int lire_motcle_non_standard (const Motcle &motlu, Entree &is)
 Reads non-simple-type parameters of an Objet_U from an input stream.
const Interpreteinterprete () const
Interpreteinterprete ()
Public Member Functions inherited from Process
virtual ~Process ()

Protected Member Functions

void set_Objet_U_ptr (Objet_U *objet) override
 Makes *this point to the object *ptr. The address may be null (null pointer).
Protected Member Functions inherited from Objet_U_ptr
 ~Objet_U_ptr () override
 Destructor.
 Objet_U_ptr ()
 Builds a null pointer (key set to -1).
virtual Objet_Uget_Objet_U_ptr () const
 Returns a pointer to the associated Objet_U. WARNING: the address may be null (if the pointer is null).
void recopie (const Objet_U &)
 Duplicates the Objet_U obj and then changes the pointer to this copy.
int change_num (const int *const) override
 Updates keys when Objet_U objects have been renumbered.
Objet_Uget_Objet_U_ptr_check () const
 Checks if the pointer is valid.
int check_Objet_U_ptr_type (const Objet_U *ptr) const
 Verifies that the object pointed to by ptr is of an acceptable type for the pointer (via get_info_ptr).
Protected Member Functions inherited from Objet_U
 Objet_U ()
 Default constructor: assigns a unique identifier to the object (object_id_) and registers the object in "memory" by giving it a num_obj number.
 Objet_U (const Objet_U &)
 Copy constructor.
const Objet_Uoperator= (const Objet_U &)
 Assignment operator: does nothing (the number and identifier are preserved).
virtual void set_param (Param &) const

Additional Inherited Members

Static Public Member Functions inherited from Objet_U
static const Nomnom_du_cas ()
 Returns a constant reference to the case name. This method is static.
static Nomget_set_nom_du_cas ()
 Returns a non-constant reference to the case name (to allow modification). This method is static.
static const Type_infoinfo ()
 Returns type information for the Objet_U (static version).
static const Objet_Uself_cast (const Objet_U &)
 Method added for casting in Python.
static Objet_Uself_cast (Objet_U &)
Static Public Member Functions inherited from Process
static int me ()
 Returns the rank of the local processor in the current communication group. See Comm_Group::rank() and PE_Groups::current_group().
static int nproc ()
 Returns the number of processors in the current group. See Comm_Group::nproc() and PE_Groups::current_group().
static bool is_parallel ()
static void exit (int exit_code=-1)
 Exit routine for TRUST within a Kokkos region.
static double mp_sum (double)
 Computes the sum of x over all processors in the current group.
static float mp_sum (float)
static trustIdType mp_sum (trustIdType)
 Computes the sum of x over all processors in the current group.
static double mp_max (double)
static double mp_min (double)
static int mp_max (int)
 Returns the maximum value of x across all processors in the current group.
static int mp_min (int)
 Returns the minimum value of x across all processors in the current group.
static double mp_sum_as_double (int v)
static trustIdType mppartial_sum (trustIdType i)
 Computes the partial sum of x over processors 0 to me()-1 (returns 0 on processor 0).
template<typename T>
static void mp_sum_for_each (T &arg1, T &arg2)
 C++14 compatible mp_sum_for_each: combine multiple mp_sum calls into one collective operation Usage: mp_sum_for_each(a, b); mp_sum_for_each(a, b, c); mp_sum_for_each(a, b, c, d); mp_sum_for_each(a, b, c, d, e); All arguments must be of the same type (double or int) and are modified in place. Supports 2-5 parameters.
template<typename T>
static void mp_sum_for_each (T &arg1, T &arg2, T &arg3)
template<typename T>
static void mp_sum_for_each (T &arg1, T &arg2, T &arg3, T &arg4)
template<typename T>
static void mp_sum_for_each (T &arg1, T &arg2, T &arg3, T &arg4, T &arg5)
template<typename T>
static void mp_max_for_each (T &arg1, T &arg2)
 C++14 compatible mp_max_for_each: combine multiple mp_max calls into one collective operation.
template<typename T>
static void mp_max_for_each (T &arg1, T &arg2, T &arg3)
template<typename T>
static void mp_max_for_each (T &arg1, T &arg2, T &arg3, T &arg4)
template<typename T>
static void mp_max_for_each (T &arg1, T &arg2, T &arg3, T &arg4, T &arg5)
template<typename T>
static void mp_min_for_each (T &arg1, T &arg2)
 C++14 compatible mp_min_for_each: combine multiple mp_min calls into one collective operation.
template<typename T>
static void mp_min_for_each (T &arg1, T &arg2, T &arg3)
template<typename T>
static void mp_min_for_each (T &arg1, T &arg2, T &arg3, T &arg4)
template<typename T>
static void mp_min_for_each (T &arg1, T &arg2, T &arg3, T &arg4, T &arg5)
template<typename _TYPE_>
static void mp_sum_for_each_item (TRUSTArray< _TYPE_ > &x, int n=-1)
template<typename _TYPE_>
static void mp_max_for_each_item (TRUSTArray< _TYPE_ > &x, int n=-1)
template<typename _TYPE_>
static void mp_min_for_each_item (TRUSTArray< _TYPE_ > &x, int n=-1)
static bool mp_and (bool)
 Computes the logical AND of b across all processors in the current group.
static bool mp_or (bool)
static int check_int_overflow (trustIdType)
static int je_suis_maitre ()
 Returns 1 if on the master processor of the current group (i.e. me() == 0), 0 otherwise.
static KOKKOS_INLINE_FUNCTION void Kokkos_exit (const char *)
 Exit routine for TRUST within a Kokkos region.
static int node_master ()
 Returns 1 if on the NUMA node master processor, 0 otherwise.
static void exit (const Nom &message, int exit_code=-1)
static bool is_sequential ()
static void barrier ()
 Synchronizes all processors in the current group (waits until all processors have reached the barrier).
static void abort ()
 Abort routine for TRUST on a fatal error.
static SortieJournal (int message_level=0)
 Returns a static Sortie object used as an event journal.
static double ram_processeur ()
static void imprimer_ram_totale (int all_process=0)
static bool force_single_file (const int ranks, const Nom &filename)
Static Public Attributes inherited from Objet_U_ptr
static constexpr bool HAS_POINTER = true
Static Public Attributes inherited from Objet_U
static double precision_geom = 1e-10
static constexpr bool HAS_POINTER = false
static int dimension =0
static int format_precision_geom =11
static int axi =0
static int bidim_axi =0
static int DEACTIVATE_SIGINT_CATCH =0
static Type_info info_obj
static bool disable_TU =false
 Flag to disable or not the writing of the .TU files.
static bool stat_per_proc_perf_log =false
 Flag to enable the writing of the statistics detailed per processor in _csv.TU file.
Static Public Attributes inherited from Process
static int exception_sur_exit =0
static int multiple_files =5120

Detailed Description

Class TRUST_Deriv_Objet_U is almost identical to TRUST_Deriv<Objet_U>, except that it does not contain the implicit conversion operators from OWN_PTR(Objet_U) to Objet_U.

It provides 3 additional methods:

Usage:

Definition at line 218 of file TRUST_Deriv.h.

Constructor & Destructor Documentation

◆ TRUST_Deriv_Objet_U() [1/3]

TRUST_Deriv_Objet_U::TRUST_Deriv_Objet_U ( )

Definition at line 26 of file TRUST_Deriv.cpp.

◆ TRUST_Deriv_Objet_U() [2/3]

TRUST_Deriv_Objet_U::TRUST_Deriv_Objet_U ( const TRUST_Deriv_Objet_U & t)

Definition at line 28 of file TRUST_Deriv.cpp.

◆ TRUST_Deriv_Objet_U() [3/3]

TRUST_Deriv_Objet_U::TRUST_Deriv_Objet_U ( const Objet_U & t)

Definition at line 33 of file TRUST_Deriv.cpp.

Member Function Documentation

◆ deplace()

void TRUST_Deriv_Objet_U::deplace ( TRUST_Deriv_Objet_U & deriv_obj)

Definition at line 66 of file TRUST_Deriv.cpp.

◆ get_info_ptr()

const Type_info & TRUST_Deriv_Objet_U::get_info_ptr ( ) const
overridevirtual

Implements Objet_U_ptr.

Definition at line 53 of file TRUST_Deriv.cpp.

◆ operator->()

Objet_U * TRUST_Deriv_Objet_U::operator-> ( ) const
inline

Definition at line 254 of file TRUST_Deriv.h.

◆ operator=() [1/2]

const TRUST_Deriv_Objet_U & TRUST_Deriv_Objet_U::operator= ( const Objet_U & t)

Definition at line 38 of file TRUST_Deriv.cpp.

◆ operator=() [2/2]

const TRUST_Deriv_Objet_U & TRUST_Deriv_Objet_U::operator= ( const TRUST_Deriv_Objet_U & t)

Definition at line 45 of file TRUST_Deriv.cpp.

◆ reprendre()

int TRUST_Deriv_Objet_U::reprendre ( Entree & is)
overridevirtual

Restores an Objet_U from an input stream. Virtual method to override.

Parameters
isInput stream to use for restoration.
Returns
Return code.

Reimplemented from Objet_U.

Definition at line 74 of file TRUST_Deriv.cpp.

◆ sauvegarder()

int TRUST_Deriv_Objet_U::sauvegarder ( Sortie & os) const
overridevirtual

Saves an Objet_U to an output stream. Virtual method to override.

Parameters
osOutput stream to use for saving.
Returns
Return code.

Reimplemented from Objet_U.

Definition at line 79 of file TRUST_Deriv.cpp.

◆ set_Objet_U_ptr()

void TRUST_Deriv_Objet_U::set_Objet_U_ptr ( Objet_U * ptr)
overrideprotectedvirtual

Makes *this point to the object *ptr. The address may be null (null pointer).

Reimplemented from Objet_U_ptr.

Definition at line 59 of file TRUST_Deriv.cpp.

◆ valeur() [1/2]

Objet_U & TRUST_Deriv_Objet_U::valeur ( )
inline

Definition at line 247 of file TRUST_Deriv.h.

◆ valeur() [2/2]

const Objet_U & TRUST_Deriv_Objet_U::valeur ( ) const
inline

Definition at line 240 of file TRUST_Deriv.h.


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