Mentions légales du service

Skip to content
Snippets Groups Projects
Commit f23ba273 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

CHAM_ipiv_t: add the new data structure to the compilation process

parent e527ca20
No related branches found
No related tags found
1 merge request!378LU factorization with partial pivoting per column (warning: panel only)
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
# @author Alycia Lisito # @author Alycia Lisito
# @author Loris Lucido # @author Loris Lucido
# @author Matthieu Kuhn # @author Matthieu Kuhn
# @date 2023-07-06 # @date 2023-08-22
# #
### ###
...@@ -41,6 +41,7 @@ set(CHAMELEON_CONTROL ...@@ -41,6 +41,7 @@ set(CHAMELEON_CONTROL
../control/descriptor.c ../control/descriptor.c
../control/descriptor_rec.c ../control/descriptor_rec.c
../control/descriptor_helpers.c ../control/descriptor_helpers.c
../control/descriptor_ipiv.c
../control/workspace.c ../control/workspace.c
../control/tile.c ../control/tile.c
../control/chameleon_f77.c ../control/chameleon_f77.c
......
...@@ -76,6 +76,7 @@ set(RUNTIME_COMMON ...@@ -76,6 +76,7 @@ set(RUNTIME_COMMON
control/runtime_context.c control/runtime_context.c
control/runtime_control.c control/runtime_control.c
control/runtime_descriptor.c control/runtime_descriptor.c
control/runtime_descriptor_ipiv.c
control/runtime_options.c control/runtime_options.c
control/runtime_profiling.c control/runtime_profiling.c
${RUNTIME_COMMON_GENERATED} ${RUNTIME_COMMON_GENERATED}
......
...@@ -88,6 +88,7 @@ set(RUNTIME_COMMON ...@@ -88,6 +88,7 @@ set(RUNTIME_COMMON
control/runtime_context.c control/runtime_context.c
control/runtime_control.c control/runtime_control.c
control/runtime_descriptor.c control/runtime_descriptor.c
control/runtime_descriptor_ipiv.c
control/runtime_options.c control/runtime_options.c
control/runtime_profiling.c control/runtime_profiling.c
${RUNTIME_COMMON_GENERATED} ${RUNTIME_COMMON_GENERATED}
......
...@@ -90,6 +90,7 @@ set(RUNTIME_COMMON ...@@ -90,6 +90,7 @@ set(RUNTIME_COMMON
control/runtime_context.c control/runtime_context.c
control/runtime_control.c control/runtime_control.c
control/runtime_descriptor.c control/runtime_descriptor.c
control/runtime_descriptor_ipiv.c
control/runtime_options.c control/runtime_options.c
control/runtime_profiling.c control/runtime_profiling.c
${RUNTIME_COMMON_GENERATED} ${RUNTIME_COMMON_GENERATED}
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
# @author Matthieu Kuhn # @author Matthieu Kuhn
# @author Loris Lucido # @author Loris Lucido
# @author Terry Cojean # @author Terry Cojean
# @date 2023-07-06 # @date 2023-08-22
# #
### ###
cmake_minimum_required(VERSION 3.1) cmake_minimum_required(VERSION 3.1)
...@@ -222,6 +222,7 @@ set(RUNTIME_COMMON ...@@ -222,6 +222,7 @@ set(RUNTIME_COMMON
control/runtime_context.c control/runtime_context.c
control/runtime_control.c control/runtime_control.c
control/runtime_descriptor.c control/runtime_descriptor.c
control/runtime_descriptor_ipiv.c
control/runtime_tags.c control/runtime_tags.c
control/runtime_options.c control/runtime_options.c
control/runtime_profiling.c control/runtime_profiling.c
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment