|
| Eigenstrain (const OptionSet &options) |
|
| Model (const OptionSet &options) |
| Construct a new Model object.
|
|
void | setup () override |
| Setup this object.
|
|
void | diagnose () const override |
| Check for common problems.
|
|
virtual bool | defines_values () const |
| Whether this model defines output values.
|
|
virtual bool | defines_derivatives () const |
| Whether this model defines first derivatives.
|
|
virtual bool | defines_second_derivatives () const |
| Whether this model defines second derivatives.
|
|
virtual bool | is_nonlinear_system () const |
| Whether this model defines one or more nonlinear equations to be solved.
|
|
virtual bool | is_jit_enabled () const |
| Whether JIT is enabled.
|
|
virtual void | to (const TensorOptions &options) |
| Send model to a different device or dtype.
|
|
const std::vector< Model * > & | registered_models () const |
| The models that may be used during the evaluation of this model.
|
|
Model * | registered_model (const std::string &name) const |
| Get a registered model by its name.
|
|
void | register_nonlinear_parameter (const std::string &pname, const NonlinearParameter ¶m) |
| Register a nonlinear parameter.
|
|
bool | has_nl_param (bool recursive=false) const |
| Whether this parameter store has any nonlinear parameter.
|
|
const VariableBase * | nl_param (const std::string &) const |
| Query the existence of a nonlinear parameter.
|
|
virtual std::map< std::string, NonlinearParameter > | named_nonlinear_parameters (bool recursive=false) const |
| Get all nonlinear parameters.
|
|
std::set< VariableName > | consumed_items () const override |
| The variables that this model depends on.
|
|
std::set< VariableName > | provided_items () const override |
| The variables that this model defines as part of its output.
|
|
void | request_AD (VariableBase &y, const VariableBase &u) |
| Request to use AD to compute the first derivative of a variable.
|
|
void | request_AD (VariableBase &y, const VariableBase &u1, const VariableBase &u2) |
| Request to use AD to compute the second derivative of a variable.
|
|
void | forward (bool out, bool dout, bool d2out) |
| Forward operator without jit.
|
|
void | forward_maybe_jit (bool out, bool dout, bool d2out) |
| Forward operator with jit.
|
|
std::string | variable_name_lookup (const ATensor &var) |
| Look up the name of a variable in the traced graph.
|
|
virtual ValueMap | value (const ValueMap &in) |
| Convenient shortcut to construct and return the model value.
|
|
virtual ValueMap | value (ValueMap &&in) |
|
virtual std::tuple< ValueMap, DerivMap > | value_and_dvalue (const ValueMap &in) |
| Convenient shortcut to construct and return the model value and its derivative.
|
|
virtual std::tuple< ValueMap, DerivMap > | value_and_dvalue (ValueMap &&in) |
|
virtual DerivMap | dvalue (const ValueMap &in) |
| Convenient shortcut to construct and return the derivative.
|
|
virtual DerivMap | dvalue (ValueMap &&in) |
|
virtual std::tuple< ValueMap, DerivMap, SecDerivMap > | value_and_dvalue_and_d2value (const ValueMap &in) |
| Convenient shortcut to construct and return the model's value, first and second derivative.
|
|
virtual std::tuple< ValueMap, DerivMap, SecDerivMap > | value_and_dvalue_and_d2value (ValueMap &&in) |
|
virtual SecDerivMap | d2value (const ValueMap &in) |
| Convenient shortcut to construct and return the model's second derivative.
|
|
virtual SecDerivMap | d2value (ValueMap &&in) |
|
virtual std::tuple< DerivMap, SecDerivMap > | dvalue_and_d2value (const ValueMap &in) |
| Convenient shortcut to construct and return the model's first and second derivative.
|
|
virtual std::tuple< DerivMap, SecDerivMap > | dvalue_and_d2value (ValueMap &&in) |
|
| Data (const OptionSet &options) |
| Construct a new Data object.
|
|
const std::vector< Data * > & | registered_data () const |
| All the registered data objects.
|
|
| NEML2Object ()=delete |
|
| NEML2Object (NEML2Object &&)=delete |
|
| NEML2Object (const NEML2Object &)=delete |
|
NEML2Object & | operator= (NEML2Object &&)=delete |
|
NEML2Object & | operator= (const NEML2Object &)=delete |
|
virtual | ~NEML2Object ()=default |
|
| NEML2Object (const OptionSet &options) |
| Construct a new NEML2Object object.
|
|
const OptionSet & | input_options () const |
|
const std::string & | name () const |
| A readonly reference to the object's name.
|
|
const std::string & | type () const |
| A readonly reference to the object's type.
|
|
const std::string & | path () const |
| A readonly reference to the object's path.
|
|
const std::string & | doc () const |
| A readonly reference to the object's docstring.
|
|
template<typename T = NEML2Object> |
const T * | host () const |
| Get a readonly pointer to the host.
|
|
template<typename T = NEML2Object> |
T * | host () |
| Get a writable pointer to the host.
|
|
| BufferStore (NEML2Object *object) |
|
| BufferStore (const BufferStore &)=delete |
|
| BufferStore (BufferStore &&)=delete |
|
BufferStore & | operator= (const BufferStore &)=delete |
|
BufferStore & | operator= (BufferStore &&)=delete |
|
virtual | ~BufferStore ()=default |
|
const std::map< std::string, std::unique_ptr< TensorValueBase > > & | named_buffers () const |
|
std::map< std::string, std::unique_ptr< TensorValueBase > > & | named_buffers () |
|
const TensorValueBase & | get_buffer (const std::string &name) const |
| }@
|
|
TensorValueBase & | get_buffer (const std::string &name) |
| Get a writable reference of a buffer.
|
|
| ParameterStore (Model *object) |
|
| ParameterStore (const ParameterStore &)=delete |
|
| ParameterStore (ParameterStore &&)=delete |
|
ParameterStore & | operator= (const ParameterStore &)=delete |
|
ParameterStore & | operator= (ParameterStore &&)=delete |
|
virtual | ~ParameterStore ()=default |
|
const std::map< std::string, std::unique_ptr< TensorValueBase > > & | named_parameters () const |
|
std::map< std::string, std::unique_ptr< TensorValueBase > > & | named_parameters () |
|
const TensorValueBase & | get_parameter (const std::string &name) const |
| }@
|
|
TensorValueBase & | get_parameter (const std::string &name) |
| Get a writable reference of a parameter.
|
|
void | set_parameter (const std::string &, const Tensor &) |
| Set the value for a parameter.
|
|
void | set_parameters (const std::map< std::string, Tensor > &) |
| Set values for parameters.
|
|
| VariableStore (Model *object) |
|
| VariableStore (const VariableStore &)=delete |
|
| VariableStore (VariableStore &&)=delete |
|
VariableStore & | operator= (const VariableStore &)=delete |
|
VariableStore & | operator= (VariableStore &&)=delete |
|
virtual | ~VariableStore ()=default |
|
LabeledAxis & | declare_axis (const std::string &name) |
|
virtual void | setup_layout () |
| Setup the layout of all the registered axes.
|
|
const TensorOptions & | variable_options () const |
| Current tensor options for variables.
|
|
LabeledAxis & | input_axis () |
|
const LabeledAxis & | input_axis () const |
|
LabeledAxis & | output_axis () |
|
const LabeledAxis & | output_axis () const |
|
VariableStorage & | input_variables () |
|
const VariableStorage & | input_variables () const |
|
VariableStorage & | output_variables () |
|
const VariableStorage & | output_variables () const |
|
VariableBase & | input_variable (const VariableName &) |
|
const VariableBase & | input_variable (const VariableName &) const |
|
VariableBase & | output_variable (const VariableName &) |
|
const VariableBase & | output_variable (const VariableName &) const |
|
void | assign_input (const ValueMap &vals) |
|
void | assign_input (ValueMap &&vals) |
| Assign input variable values.
|
|
void | assign_output (const ValueMap &vals) |
| Assign output variable values.
|
|
void | assign_output_derivatives (const DerivMap &derivs) |
| Assign variable derivatives.
|
|
ValueMap | collect_input () const |
|
ValueMap | collect_output () const |
|
DerivMap | collect_output_derivatives () const |
| Collect variable derivatives.
|
|
SecDerivMap | collect_output_second_derivatives () const |
| Collect variable second derivatives.
|
|
| NonlinearSystem (const NonlinearSystem &)=default |
|
| NonlinearSystem (NonlinearSystem &&) noexcept=default |
|
NonlinearSystem & | operator= (const NonlinearSystem &)=delete |
|
NonlinearSystem & | operator= (NonlinearSystem &&)=delete |
|
virtual | ~NonlinearSystem ()=default |
|
| NonlinearSystem (const OptionSet &options) |
|
virtual void | init_scaling (const Sol< false > &x, const bool verbose=false) |
| Compute algebraic Jacobian-based automatic scaling following https://cs.stanford.edu/people/paulliu/files/cs517-project.pdf.
|
|
Res< true > | scale (const Res< false > &r) const |
| Apply scaling to the residual.
|
|
Res< false > | unscale (const Res< true > &r) const |
| Remove scaling to the residual.
|
|
Jac< true > | scale (const Jac< false > &J) const |
| Apply scaling to the Jacobian.
|
|
Jac< false > | unscale (const Jac< true > &J) const |
| Remove scaling to the Jacobian.
|
|
Sol< true > | scale (const Sol< false > &u) const |
| Apply scaling to the solution.
|
|
Sol< false > | unscale (const Sol< true > &u) const |
| Remove scaling to the solution.
|
|
void | set_guess (const Sol< true > &x) |
| Set the current guess.
|
|
template<bool scaled> |
Res< scaled > | residual () |
| Assemble and return the residual.
|
|
template<bool scaled> |
Res< scaled > | residual (const Sol< scaled > &x) |
| Convenient shortcut to set the current guess, assemble and return the residual.
|
|
template<bool scaled> |
Jac< scaled > | Jacobian () |
| Assemble and return the Jacobian.
|
|
template<bool scaled> |
Jac< scaled > | Jacobian (const Sol< scaled > &x) |
| Convenient shortcut to set the current guess, assemble and return the Jacobian.
|
|
template<bool scaled> |
std::tuple< Res< scaled >, Jac< scaled > > | residual_and_Jacobian () |
| Assemble and return the residual and Jacobian.
|
|
template<bool scaled> |
std::tuple< Res< scaled >, Jac< scaled > > | residual_and_Jacobian (const Sol< scaled > &x) |
| Convenient shortcut to set the current guess, assemble and return the residual and Jacobian.
|
|
| DependencyDefinition ()=default |
|
| DependencyDefinition (DependencyDefinition &&)=delete |
|
| DependencyDefinition (const DependencyDefinition &)=delete |
|
DependencyDefinition & | operator= (const DependencyDefinition &)=delete |
|
DependencyDefinition & | operator= (DependencyDefinition &&)=delete |
|
virtual | ~DependencyDefinition ()=default |
|
| DiagnosticsInterface ()=delete |
|
| DiagnosticsInterface (NEML2Object *object) |
|
| DiagnosticsInterface (DiagnosticsInterface &&)=delete |
|
| DiagnosticsInterface (const DiagnosticsInterface &)=delete |
|
DiagnosticsInterface & | operator= (const DiagnosticsInterface &)=delete |
|
DiagnosticsInterface & | operator= (DiagnosticsInterface &&)=delete |
|
virtual | ~DiagnosticsInterface ()=default |
|
const NEML2Object & | object () const |
| Get the object.
|
|