From f23ba27322af088d1c36439f690d9ded1d081857 Mon Sep 17 00:00:00 2001
From: Mathieu Faverge <mathieu.faverge@inria.fr>
Date: Fri, 7 Jul 2023 21:05:38 +0200
Subject: [PATCH] CHAM_ipiv_t: add the new data structure to the compilation
 process

---
 compute/CMakeLists.txt        | 3 ++-
 runtime/openmp/CMakeLists.txt | 1 +
 runtime/parsec/CMakeLists.txt | 1 +
 runtime/quark/CMakeLists.txt  | 1 +
 runtime/starpu/CMakeLists.txt | 3 ++-
 5 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/compute/CMakeLists.txt b/compute/CMakeLists.txt
index 1c7b5a0b2..d60af1f60 100644
--- a/compute/CMakeLists.txt
+++ b/compute/CMakeLists.txt
@@ -27,7 +27,7 @@
 #  @author Alycia Lisito
 #  @author Loris Lucido
 #  @author Matthieu Kuhn
-#  @date 2023-07-06
+#  @date 2023-08-22
 #
 ###
 
@@ -41,6 +41,7 @@ set(CHAMELEON_CONTROL
     ../control/descriptor.c
     ../control/descriptor_rec.c
     ../control/descriptor_helpers.c
+    ../control/descriptor_ipiv.c
     ../control/workspace.c
     ../control/tile.c
     ../control/chameleon_f77.c
diff --git a/runtime/openmp/CMakeLists.txt b/runtime/openmp/CMakeLists.txt
index 36a5e18ba..b9b712e5d 100644
--- a/runtime/openmp/CMakeLists.txt
+++ b/runtime/openmp/CMakeLists.txt
@@ -76,6 +76,7 @@ set(RUNTIME_COMMON
   control/runtime_context.c
   control/runtime_control.c
   control/runtime_descriptor.c
+  control/runtime_descriptor_ipiv.c
   control/runtime_options.c
   control/runtime_profiling.c
   ${RUNTIME_COMMON_GENERATED}
diff --git a/runtime/parsec/CMakeLists.txt b/runtime/parsec/CMakeLists.txt
index 74c4d0f92..573d31d79 100644
--- a/runtime/parsec/CMakeLists.txt
+++ b/runtime/parsec/CMakeLists.txt
@@ -88,6 +88,7 @@ set(RUNTIME_COMMON
   control/runtime_context.c
   control/runtime_control.c
   control/runtime_descriptor.c
+  control/runtime_descriptor_ipiv.c
   control/runtime_options.c
   control/runtime_profiling.c
   ${RUNTIME_COMMON_GENERATED}
diff --git a/runtime/quark/CMakeLists.txt b/runtime/quark/CMakeLists.txt
index 12a673a12..e4acef712 100644
--- a/runtime/quark/CMakeLists.txt
+++ b/runtime/quark/CMakeLists.txt
@@ -90,6 +90,7 @@ set(RUNTIME_COMMON
   control/runtime_context.c
   control/runtime_control.c
   control/runtime_descriptor.c
+  control/runtime_descriptor_ipiv.c
   control/runtime_options.c
   control/runtime_profiling.c
   ${RUNTIME_COMMON_GENERATED}
diff --git a/runtime/starpu/CMakeLists.txt b/runtime/starpu/CMakeLists.txt
index 30ea76045..58f09796b 100644
--- a/runtime/starpu/CMakeLists.txt
+++ b/runtime/starpu/CMakeLists.txt
@@ -26,7 +26,7 @@
 #  @author Matthieu Kuhn
 #  @author Loris Lucido
 #  @author Terry Cojean
-#  @date 2023-07-06
+#  @date 2023-08-22
 #
 ###
 cmake_minimum_required(VERSION 3.1)
@@ -222,6 +222,7 @@ set(RUNTIME_COMMON
   control/runtime_context.c
   control/runtime_control.c
   control/runtime_descriptor.c
+  control/runtime_descriptor_ipiv.c
   control/runtime_tags.c
   control/runtime_options.c
   control/runtime_profiling.c
-- 
GitLab