Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion externals/codi
Submodule codi updated 35 files
+1 −0 documentation/Changelog.md
+3 −1 include/codi.hpp
+13 −4 include/codi/config.h
+6 −6 include/codi/expressions/activeTypeBase.hpp
+153 −0 include/codi/expressions/activeTypeStatelessTape.hpp
+2 −2 include/codi/expressions/binaryExpression.hpp
+3 −2 include/codi/expressions/lhsExpressionInterface.hpp
+139 −2 include/codi/expressions/real/binaryOperators.hpp
+232 −0 include/codi/expressions/real/unaryOperators.hpp
+1 −1 include/codi/expressions/referenceActiveType.hpp
+1 −1 include/codi/expressions/unaryExpression.hpp
+59 −3 include/codi/misc/eventSystem.hpp
+12 −5 include/codi/misc/exceptions.hpp
+1 −1 include/codi/misc/macros.hpp
+56 −0 include/codi/misc/toConst.hpp
+37 −36 include/codi/tapes/data/chunk.hpp
+17 −17 include/codi/tapes/forwardEvaluation.hpp
+54 −0 include/codi/tools/cuda/codiCUDA.hpp
+53 −0 include/codi/tools/cuda/cudaFunctionAttributes.hpp
+1 −1 include/codi/tools/data/hessian.hpp
+1 −1 include/codi/tools/data/jacobian.hpp
+18 −18 include/codi/tools/mpi/codiForwardMeDiPackTool.hpp
+22 −22 include/codi/tools/mpi/codiReverseMeDiPackTool.hpp
+9 −9 include/codi/tools/parallel/openmp/openMPAtomic.hpp
+1 −1 include/codi/tools/parallel/openmp/openMPThreadInformation.hpp
+12 −6 include/codi/traits/numericLimits.hpp
+1 −0 tests/general/Makefile.drivers
+4 −7 tests/general/include/tests/expressions/testTwoArgumentExpr1.hpp
+4 −1 tests/general/include/tests/expressions/testTwoArgumentExpr2.hpp
+36 −111 tests/general/results/deriv0th/TwoArgumentExpr1.out
+54 −0 tests/general/results/deriv0th/TwoArgumentExpr2.out
+50 −125 tests/general/results/deriv1st/TwoArgumentExpr1.out
+54 −0 tests/general/results/deriv1st/TwoArgumentExpr2.out
+0 −299 tests/general/results/deriv2nd/TwoArgumentExpr1.out
+216 −0 tests/general/results/deriv2nd/TwoArgumentExpr2.out
2 changes: 1 addition & 1 deletion meson_scripts/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def init_submodules(

# This information of the modules is used if projects was not cloned using git
# The sha tag must be maintained manually to point to the correct commit
sha_version_codi = "eee1b5eea2ded8126c34c1415e3b9cf15a3e70f2"
sha_version_codi = "0ad036f2c8254fa7b77180a443d99248c047c877"
github_repo_codi = "https://github.com/scicompkl/CoDiPack"
sha_version_medi = "aafc2d1966ba1233640af737e71c77c1a86183fd"
github_repo_medi = "https://github.com/SciCompKL/MeDiPack"
Expand Down