From b051ef04214b86eea676f9df7fef4ce99ffa85fc Mon Sep 17 00:00:00 2001 From: Vassil Vassilev Date: Fri, 11 Jul 2025 14:36:39 +0000 Subject: [PATCH] [clad] Bump to v2.0 The new release introduces improvements across both forward and reverse automatic differentiation modes, including the adoption of static scheduling by default and expanded support for custom derivatives, such as those involving STL containers and iterators. The release enhances compatibility with Clang versions 10 through 20 and extends support for CUDA through updated tape handling. Additional updates include improved error diagnostics, support for more complex object types, and infrastructure for benchmarking. --- interpreter/cling/tools/plugins/clad/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interpreter/cling/tools/plugins/clad/CMakeLists.txt b/interpreter/cling/tools/plugins/clad/CMakeLists.txt index 397bf4d643cd2..5113275c548a6 100644 --- a/interpreter/cling/tools/plugins/clad/CMakeLists.txt +++ b/interpreter/cling/tools/plugins/clad/CMakeLists.txt @@ -74,7 +74,7 @@ if (DEFINED CLAD_SOURCE_DIR) list(APPEND _clad_extra_settings SOURCE_DIR ${CLAD_SOURCE_DIR}) else() list(APPEND _clad_extra_settings GIT_REPOSITORY https://github.com/vgvassilev/clad.git) - list(APPEND _clad_extra_settings GIT_TAG v1.10) + list(APPEND _clad_extra_settings GIT_TAG v2.0) endif() #list(APPEND _clad_patches_list "patch1.patch" "patch2.patch")