Sacado Package Browser (Single Doxygen Collection)
Version of the Day
|
Derivative array storage class using static, fixed memory allocation. More...
#include <Sacado_Fad_Exp_StaticFixedStorage.hpp>
Classes | |
struct | apply |
Turn StaticFixedStorage into a meta-function class usable with mpl::apply. More... | |
struct | apply_N |
Replace static derivative length. More... | |
Public Types | |
typedef std::remove_cv< T >::type | value_type |
Public Member Functions | |
StaticFixedStorage ()=default | |
Default constructor. More... | |
KOKKOS_INLINE_FUNCTION | StaticFixedStorage (const T &x) |
Constructor with value. More... | |
KOKKOS_INLINE_FUNCTION | StaticFixedStorage (const int sz, const T &x, const DerivInit zero_out) |
Constructor with size sz . More... | |
KOKKOS_INLINE_FUNCTION | StaticFixedStorage (const StaticFixedStorage &x) |
Copy constructor. More... | |
~StaticFixedStorage ()=default | |
Destructor. More... | |
KOKKOS_INLINE_FUNCTION StaticFixedStorage & | operator= (const StaticFixedStorage &x) |
Assignment. More... | |
KOKKOS_INLINE_FUNCTION constexpr int | size () const |
Returns number of derivative components. More... | |
KOKKOS_INLINE_FUNCTION constexpr int | length () const |
Returns array length. More... | |
KOKKOS_INLINE_FUNCTION void | resize (int sz) |
Resize the derivative array to sz. More... | |
KOKKOS_INLINE_FUNCTION void | resizeAndZero (int sz) |
Resize the derivative array to sz. More... | |
KOKKOS_INLINE_FUNCTION void | expand (int sz) |
Expand derivative array to size sz. More... | |
KOKKOS_INLINE_FUNCTION void | zero () |
Zero out derivative array. More... | |
KOKKOS_INLINE_FUNCTION const T & | val () const |
Returns value. More... | |
KOKKOS_INLINE_FUNCTION T & | val () |
Returns value. More... | |
KOKKOS_INLINE_FUNCTION const T * | dx () const |
Returns derivative array. More... | |
KOKKOS_INLINE_FUNCTION T | dx (int i) const |
Returns derivative component i with bounds checking. More... | |
KOKKOS_INLINE_FUNCTION T & | fastAccessDx (int i) |
Returns derivative component i without bounds checking. More... | |
KOKKOS_INLINE_FUNCTION const T & | fastAccessDx (int i) const |
Returns derivative component i without bounds checking. More... | |
Static Public Attributes | |
static constexpr bool | is_statically_sized = true |
static constexpr int | static_size = Num |
Protected Attributes | |
T | val_ |
Value. More... | |
T | dx_ [Num] |
Derivative array. More... | |
Derivative array storage class using static, fixed memory allocation.
This class uses a statically allocated array whose dimension is fixed by the template parameter Num
. The dimension cannot be resized.
Definition at line 49 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
typedef std::remove_cv<T>::type Sacado::Fad::Exp::StaticFixedStorage< T, Num >::value_type |
Definition at line 53 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
default |
Default constructor.
|
inline |
Constructor with value.
Definition at line 74 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Constructor with size sz
.
Initializes derivative array 0 of length sz
Definition at line 84 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Copy constructor.
Can't make this " = default" because of scalar types that don't define a const copy consturctor (like Rad). We also can't leave it and let it be implicitly generated because of KOKKOS_INLINE_FUNCTION.
Definition at line 101 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
default |
Destructor.
|
inline |
Assignment.
Can't make this " = default" because of scalar types that don't define a const operator= (like Rad). We also can't leave it and let it be implicitly generated because of KOKKOS_INLINE_FUNCTION.
Definition at line 117 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Returns number of derivative components.
Definition at line 128 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Returns array length.
Definition at line 132 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Resize the derivative array to sz.
Definition at line 136 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Resize the derivative array to sz.
Definition at line 150 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Expand derivative array to size sz.
Definition at line 160 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Zero out derivative array.
Definition at line 170 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Returns value.
Definition at line 174 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Returns value.
Definition at line 178 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Returns derivative array.
Definition at line 182 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Returns derivative component i
with bounds checking.
Definition at line 186 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Returns derivative component i
without bounds checking.
Definition at line 190 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
inline |
Returns derivative component i
without bounds checking.
Definition at line 194 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
static |
Definition at line 54 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
static |
Definition at line 55 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
protected |
Definition at line 199 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.
|
protected |
Derivative array.
Definition at line 202 of file Sacado_Fad_Exp_StaticFixedStorage.hpp.