27#include "neml2/drivers/Driver.h"
28#include "neml2/misc/types.h"
29#include "neml2/models/map_types.h"
30#include "neml2/tensors/tensors.h"
32#ifdef NEML2_HAS_DISPATCHER
33#include "neml2/dispatchers/WorkScheduler.h"
34#include "neml2/dispatchers/WorkDispatcher.h"
43 const std::map<
VariableName, std::unique_ptr<VariableBase>> &,
44 const std::map<
VariableName, std::unique_ptr<VariableBase>> &);
58 void setup()
override;
81#ifdef NEML2_HAS_DISPATCHER
83 std::shared_ptr<WorkScheduler> _scheduler;
86 std::unique_ptr<DispatcherType> _dispatcher;
88 const bool _async_dispatch;
90 std::unordered_map<std::thread::id, std::shared_ptr<Model>> _models;
Driver(const OptionSet &options)
Construct a new Driver object.
Definition Driver.cxx:47
const Model & model() const
Definition ModelDriver.h:62
const bool _show_input
Set to true to show model's input axis at the beginning.
Definition ModelDriver.h:75
const bool _show_output
Set to true to show model's output axis at the beginning.
Definition ModelDriver.h:77
const bool _show_params
Set to true to list all the model parameters at the beginning.
Definition ModelDriver.h:73
Device _device
The device on which to evaluate the model.
Definition ModelDriver.h:70
const std::shared_ptr< Model > _model
The model which the driver uses to perform constitutive updates.
Definition ModelDriver.h:68
void to(Device dev)
Definition ModelDriver.cxx:182
void setup() override
Setup this object.
Definition ModelDriver.cxx:109
void diagnose() const override
Check for common problems.
Definition ModelDriver.cxx:175
static OptionSet expected_options()
Definition ModelDriver.cxx:56
ModelDriver(const OptionSet &options)
Definition ModelDriver.cxx:92
const bool _log_details
Set to output a ton of information on the model execution.
Definition ModelDriver.h:79
The base class for all constitutive models.
Definition Model.h:74
A custom map-like data structure. The keys are strings, and the values can be nonhomogeneously typed.
Definition OptionSet.h:51
The work dispatcher who dispatches work to a worker and reduces the results.
Definition WorkDispatcher.h:108
Definition DiagnosticsInterface.cxx:29
c10::Device Device
Definition types.h:63
void details_callback(const Model &model, const std::map< VariableName, std::unique_ptr< VariableBase > > &input, const std::map< VariableName, std::unique_ptr< VariableBase > > &output)
Callback to dump a ton of information on model exectuion.
Definition ModelDriver.cxx:36
LabeledAxisAccessor VariableName
Definition LabeledAxisAccessor.h:185