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/models/map_types.h"
29#include "neml2/tensors/tensors.h"
30
31#ifdef NEML2_HAS_DISPATCHER
32#include "neml2/dispatchers/WorkScheduler.h"
33#include "neml2/dispatchers/WorkDispatcher.h"
34#endif
35
36namespace neml2
37{
38class Model;
39
45class ModelDriver : public Driver
46{
47public:
49
50 ModelDriver(const OptionSet & options);
51
52 void setup() override;
53
54 void diagnose() const override;
55
56 const Model & model() const { return *_model; }
57
58 const Model & postprocessor() const { return *_postprocessor; }
59
60protected:
62 const std::shared_ptr<Model> _model;
64 const std::vector<VariableName> _intmd_vars;
66 const std::vector<TensorShape> _intmd_shapes;
68 const std::shared_ptr<Model> _postprocessor;
71
73 const bool _show_model_info;
74
75#ifdef NEML2_HAS_DISPATCHER
77 std::shared_ptr<WorkScheduler> _scheduler;
80 std::unique_ptr<DispatcherType> _dispatcher;
82 const bool _async_dispatch;
84 std::unordered_map<std::thread::id, std::shared_ptr<Model>> _models;
85#endif
86};
87} // namespace neml2
The Driver drives the execution of a NEML2 Model.
Definition Driver.h:44
A general-purpose driver that does something with a model.
Definition ModelDriver.h:46
const Model & model() const
Definition ModelDriver.h:56
const std::vector< TensorShape > _intmd_shapes
Corresponding tensor shapes for the intermediate variables.
Definition ModelDriver.h:66
const std::vector< VariableName > _intmd_vars
Variable names for which to tag intermediate shapes.
Definition ModelDriver.h:64
const std::shared_ptr< Model > _postprocessor
Postprocessor model.
Definition ModelDriver.h:68
const std::shared_ptr< Model > _model
The model which the driver uses to perform constitutive updates.
Definition ModelDriver.h:62
const Model & postprocessor() const
Definition ModelDriver.h:58
void setup() override
Setup this object.
Definition ModelDriver.cxx:93
const Device _device
The device on which to evaluate the model.
Definition ModelDriver.h:70
void diagnose() const override
Check for common problems.
Definition ModelDriver.cxx:152
static OptionSet expected_options()
Definition ModelDriver.cxx:36
const bool _show_model_info
Set to true to list all the model parameters at the beginning.
Definition ModelDriver.h:73
ModelDriver(const OptionSet &options)
Definition ModelDriver.cxx:75
The base class for all constitutive models.
Definition Model.h:70
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:30
c10::Device Device
Definition types.h:63