NEML2 2.0.0
Loading...
Searching...
No Matches
ModelDriver.h
1// Copyright 2024, UChicago Argonne, LLC
2// All Rights Reserved
3// Software Name: NEML2 -- the New Engineering material Model Library, version 2
4// By: Argonne National Laboratory
5// OPEN SOURCE LICENSE (MIT)
6//
7// Permission is hereby granted, free of charge, to any person obtaining a copy
8// of this software and associated documentation files (the "Software"), to deal
9// in the Software without restriction, including without limitation the rights
10// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11// copies of the Software, and to permit persons to whom the Software is
12// furnished to do so, subject to the following conditions:
13//
14// The above copyright notice and this permission notice shall be included in
15// all copies or substantial portions of the Software.
16//
17// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23// THE SOFTWARE.
24
25#pragma once
26
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"
31
32#ifdef NEML2_HAS_DISPATCHER
33#include "neml2/dispatchers/WorkScheduler.h"
34#include "neml2/dispatchers/WorkDispatcher.h"
35#endif
36
37namespace neml2
38{
39class Model;
40
42void details_callback(const Model &,
43 const std::map<VariableName, std::unique_ptr<VariableBase>> &,
44 const std::map<VariableName, std::unique_ptr<VariableBase>> &);
45
51class ModelDriver : public Driver
52{
53public:
55
56 ModelDriver(const OptionSet & options);
57
58 void setup() override;
59
60 void diagnose() const override;
61
62 const Model & model() const { return *_model; }
63
64 void to(Device dev);
65
66protected:
68 const std::shared_ptr<Model> _model;
71
73 const bool _show_params;
75 const bool _show_input;
77 const bool _show_output;
79 const bool _log_details;
80
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;
91#endif
92};
93} // namespace neml2
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