27#include "neml2/drivers/Driver.h"
28#include "neml2/models/map_types.h"
29#include "neml2/tensors/tensors.h"
31#ifdef NEML2_HAS_DISPATCHER
32#include "neml2/dispatchers/WorkScheduler.h"
33#include "neml2/dispatchers/WorkDispatcher.h"
52 void setup()
override;
71#ifdef NEML2_HAS_DISPATCHER
73 std::shared_ptr<WorkScheduler> _scheduler;
76 std::unique_ptr<DispatcherType> _dispatcher;
78 const bool _async_dispatch;
Driver(const OptionSet &options)
Construct a new Driver object.
Definition Driver.cxx:55
const Model & model() const
Definition ModelDriver.h:56
const bool _show_input
Set to true to show model's input axis at the beginning.
Definition ModelDriver.h:67
Model & _model
The model which the driver uses to perform constitutive updates.
Definition ModelDriver.h:60
const bool _show_output
Set to true to show model's output axis at the beginning.
Definition ModelDriver.h:69
const bool _show_params
Set to true to list all the model parameters at the beginning.
Definition ModelDriver.h:65
void setup() override
Setup this object.
Definition ModelDriver.cxx:87
const Device _device
The device on which to evaluate the model.
Definition ModelDriver.h:62
void diagnose() const override
Check for common problems.
Definition ModelDriver.cxx:142
static OptionSet expected_options()
Definition ModelDriver.cxx:36
ModelDriver(const OptionSet &options)
Definition ModelDriver.cxx:68
The base class for all constitutive models.
Definition Model.h:97
A custom map-like data structure. The keys are strings, and the values can be nonhomogeneously typed.
Definition OptionSet.h:52
The work dispatcher who dispatches work to a worker and reduces the results.
Definition WorkDispatcher.h:106
Definition DiagnosticsInterface.cxx:30
c10::Device Device
Definition types.h:66