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
58protected:
60 const std::shared_ptr<Model> _model;
63
65 const bool _show_params;
67 const bool _show_input;
69 const bool _show_output;
70
71#ifdef NEML2_HAS_DISPATCHER
73 std::shared_ptr<WorkScheduler> _scheduler;
76 std::unique_ptr<DispatcherType> _dispatcher;
78 const bool _async_dispatch;
80 std::unordered_map<std::thread::id, std::shared_ptr<Model>> _models;
81#endif
82};
83} // 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 bool _show_input
Set to true to show model's input axis at the beginning.
Definition ModelDriver.h:67
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
const std::shared_ptr< Model > _model
The model which the driver uses to perform constitutive updates.
Definition ModelDriver.h:60
void setup() override
Setup this object.
Definition ModelDriver.cxx:84
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:145
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:68
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