CoDiPack  3.1.0
A Code Differentiation Package
SciComp TU Kaiserslautern
Loading...
Searching...
No Matches
customIteratorTapeInterface.hpp
1/*
2 * CoDiPack, a Code Differentiation Package
3 *
4 * Copyright (C) 2015-2026 Chair for Scientific Computing (SciComp), University of Kaiserslautern-Landau
5 * Homepage: http://scicomp.rptu.de
6 * Contact: Prof. Nicolas R. Gauger (codi@scicomp.uni-kl.de)
7 *
8 * Lead developers: Max Sagebaum, Johannes Blühdorn (SciComp, University of Kaiserslautern-Landau)
9 *
10 * This file is part of CoDiPack (http://scicomp.rptu.de/software/codi).
11 *
12 * CoDiPack is free software: you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, either version 3 of the
15 * License, or (at your option) any later version.
16 *
17 * CoDiPack is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty
19 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20 *
21 * See the GNU General Public License for more details.
22 * You should have received a copy of the GNU
23 * General Public License along with CoDiPack.
24 * If not, see <http://www.gnu.org/licenses/>.
25 *
26 * For other licensing options please contact us.
27 *
28 * Authors:
29 * - SciComp, University of Kaiserslautern-Landau:
30 * - Max Sagebaum
31 * - Johannes Blühdorn
32 * - Former members:
33 * - Tim Albring
34 */
35#pragma once
36
37#include <iostream>
38#include <memory>
39
40#include "../../config.h"
41#include "../../misc/macros.hpp"
42#include "../data/position.hpp"
43#include "../misc/lowLevelFunctionEntry.hpp"
44
46namespace codi {
47
54 template<typename T_Real, typename T_Identifier>
56 public:
57 using Real = CODI_DD(T_Real, double);
58 using Identifier = CODI_DD(T_Identifier, int);
59
60 using Tape = void;
61 using EvalHandle = void*;
62
64 void handleStatement(Identifier& lhsIndex, Config::ArgumentSize const& size, Real const* jacobians,
65 Identifier const* rhsIdentifiers);
67 void handleStatement(EvalHandle const& evalHandle, Config::ArgumentSize const& nPassiveValues,
68 size_t& linearAdjointPosition, char* stmtData);
71 };
72
81 template<typename T_Position>
83 public:
84 using Position = CODI_DD(T_Position, EmptyPosition);
85
86 /*******************************************************************************/
88
90 template<typename Callbacks>
91 void iterateForward(Callbacks&& callbacks, Position const& start, Position const& end);
92
94 template<typename Callbacks>
95 void iterateForward(Callbacks&& callbacks);
96
98 template<typename Callbacks>
99 void iterateReverse(Callbacks&& callbacks, Position const& start, Position const& end);
100
102 template<typename Callbacks>
103 void iterateReverse(Callbacks&& callbacks);
104 };
105}
#define CODI_DD(Type, Default)
Abbreviation for CODI_DECLARE_DEFAULT.
Definition macros.hpp:97
uint8_t ArgumentSize
Type for the number of arguments in statements.
Definition config.h:117
CoDiPack - Code Differentiation Package.
Definition codi.hpp:97
Definition byteDataView.hpp:51
interface for callbacks from an custom tape iteration. See CustomIteratorTapeInterface for details.
Definition customIteratorTapeInterface.hpp:55
void handleStatement(Identifier &lhsIndex, Config::ArgumentSize const &size, Real const *jacobians, Identifier const *rhsIdentifiers)
Called for each statement in a Jacobian tape.
T_Identifier Identifier
See ReadWriteTapeInterface.
Definition customIteratorTapeInterface.hpp:58
void handleStatement(EvalHandle const &evalHandle, Config::ArgumentSize const &nPassiveValues, size_t &linearAdjointPosition, char *stmtData)
Called for each statement in a primal value tape.
void * EvalHandle
See PrimalValueTapeTypes.
Definition customIteratorTapeInterface.hpp:61
T_Real Real
See ReadWriteTapeInterface.
Definition customIteratorTapeInterface.hpp:57
void Tape
Any CoDiPack tape implementation.
Definition customIteratorTapeInterface.hpp:60
void handleLowLevelFunction(LowLevelFunctionEntry< Tape, Real, Identifier > const &func, ByteDataView &llfData)
Called for each low level function.
Iterate over the statement and low level function entries in a tape.
Definition customIteratorTapeInterface.hpp:82
T_Position Position
See CustomIteratorTapeInterface.
Definition customIteratorTapeInterface.hpp:84
void iterateForward(Callbacks &&callbacks, Position const &start, Position const &end)
Iterate over the tape in a generalized fashion. callbacks needs to implement codi::CallbacksInterface...
void iterateReverse(Callbacks &&callbacks, Position const &start, Position const &end)
Iterate over the tape in a generalized fashion. callbacks needs to implement codi::CallbacksInterface...
void iterateForward(Callbacks &&callbacks)
Iterate over the tape in a generalized fashion. callbacks needs to implement codi::CallbacksInterface...
void iterateReverse(Callbacks &&callbacks)
Iterate over the tape in a generalized fashion. callbacks needs to implement codi::CallbacksInterface...
Empty Position with no nested data.
Definition position.hpp:47
Low level function entry on the tape. See LowLevelFunctionTapeInterface for details.
Definition lowLevelFunctionEntry.hpp:69