NEML2 2.1.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
29#ifdef NEML2_WORK_DISPATCHER
30#include "neml2/dispatchers/WorkScheduler.h"
31#include "neml2/dispatchers/WorkDispatcher.h"
32#endif
33
34namespace neml2
35{
36class Model;
37
43class ModelDriver : public Driver
44{
45public:
47
48 ModelDriver(const OptionSet & options);
49
50 void setup() override;
51
52 void diagnose() const override;
53
54 const Model & model() const { return *_model; }
55
56 const Model & postprocessor() const { return *_postprocessor; }
57
58protected:
60 const std::shared_ptr<Model> _model;
62 const std::shared_ptr<Model> _postprocessor;
65
66#ifdef NEML2_WORK_DISPATCHER
68 std::shared_ptr<WorkScheduler> _scheduler;
71 std::unique_ptr<DispatcherType> _dispatcher;
73 const bool _async_dispatch;
75 std::unordered_map<std::thread::id, std::shared_ptr<Model>> _models;
76#endif
77};
78} // namespace neml2
Driver(const OptionSet &options)
Construct a new Driver object.
std::shared_ptr< WorkScheduler > _scheduler
The work scheduler to use.
Definition ModelDriver.h:68
std::unordered_map< std::thread::id, std::shared_ptr< Model > > _models
Cloned models for each thread.
Definition ModelDriver.h:75
const Model & model() const
Definition ModelDriver.h:54
WorkDispatcher< ValueMap, ValueMap, ValueMap, ValueMap, ValueMap > DispatcherType
Work dispatcher.
Definition ModelDriver.h:70
std::unique_ptr< DispatcherType > _dispatcher
Definition ModelDriver.h:71
const std::shared_ptr< Model > _postprocessor
Postprocessor model.
Definition ModelDriver.h:62
const std::shared_ptr< Model > _model
The model which the driver uses to perform constitutive updates.
Definition ModelDriver.h:60
const Model & postprocessor() const
Definition ModelDriver.h:56
void setup() override
Setup this object.
const Device _device
The device on which to evaluate the model.
Definition ModelDriver.h:64
void diagnose() const override
Check for common problems.
const bool _async_dispatch
Whether to dispatch work asynchronously.
Definition ModelDriver.h:73
static OptionSet expected_options()
ModelDriver(const OptionSet &options)
The base class for all constitutive models.
Definition Model.h:82
A custom map-like data structure. The keys are strings, and the values can be nonhomogeneously typed.
Definition OptionSet.h:54
The work dispatcher who dispatches work to a worker and reduces the results.
Definition WorkDispatcher.h:109
Definition DiagnosticsInterface.h:31
c10::Device Device
Definition types.h:69