Mentions légales du service

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

Merge branch 'testing/cleanup' into 'master'

Cleanup testings/timing directories and prepare release

 * Remove testing directory
 * Remove timing directory
 * Remove plasma-conversion directory
 * Rename new-testing into testing directory, and binaries `new_Xtesting` become `chameleon_Xtesting`
 * Update release number, copyrights, date
 * Add testing helpers

See merge request !197
parents ab5ca519 7af8b07e
No related branches found
No related tags found
1 merge request!197Cleanup testings/timing directories and prepare release
Showing with 58 additions and 74 deletions
...@@ -17,12 +17,12 @@ ...@@ -17,12 +17,12 @@
# Univ. of California Berkeley, # Univ. of California Berkeley,
# Univ. of Colorado Denver. # Univ. of Colorado Denver.
# #
# @version 0.9.2 # @version 1.0.0
# @author Cedric Castagnede # @author Cedric Castagnede
# @author Emmanuel Agullo # @author Emmanuel Agullo
# @author Mathieu Faverge # @author Mathieu Faverge
# @author Florent Pruvost # @author Florent Pruvost
# @date 2014-11-16 # @date 2020-03-03
# #
### ###
cmake_minimum_required(VERSION 3.3) cmake_minimum_required(VERSION 3.3)
...@@ -36,9 +36,9 @@ if("${PROJECT_SOURCE_DIR}" STREQUAL "${PROJECT_BINARY_DIR}") ...@@ -36,9 +36,9 @@ if("${PROJECT_SOURCE_DIR}" STREQUAL "${PROJECT_BINARY_DIR}")
endif() endif()
# set project version number # set project version number
set(CHAMELEON_VERSION_MAJOR 0) set(CHAMELEON_VERSION_MAJOR 1)
set(CHAMELEON_VERSION_MINOR 9) set(CHAMELEON_VERSION_MINOR 0)
set(CHAMELEON_VERSION_MICRO 2) set(CHAMELEON_VERSION_MICRO 0)
set(CHAMELEON_CMAKE_DIR "" CACHE PATH "Directory of CHAMELEON CMake modules, can be external to the project") set(CHAMELEON_CMAKE_DIR "" CACHE PATH "Directory of CHAMELEON CMake modules, can be external to the project")
...@@ -189,8 +189,8 @@ if (CHAMELEON_RUNTIME_SYNC) ...@@ -189,8 +189,8 @@ if (CHAMELEON_RUNTIME_SYNC)
message("-- ${BoldGreen}CHAMELEON_RUNTIME_SYNC is set to ON, turn it OFF to avoid synchronisation in the tasks submission${ColourReset}") message("-- ${BoldGreen}CHAMELEON_RUNTIME_SYNC is set to ON, turn it OFF to avoid synchronisation in the tasks submission${ColourReset}")
endif() endif()
# Options to enable/disable testings and timings # Options to enable/disable doc, examples, and testings
# ---------------------------------------------- # -----------------------------------------------------
option(CHAMELEON_ENABLE_DOC "Enable documentation build" OFF) option(CHAMELEON_ENABLE_DOC "Enable documentation build" OFF)
if (CHAMELEON_ENABLE_DOC) if (CHAMELEON_ENABLE_DOC)
message("-- ${BoldGreen}CHAMELEON_ENABLE_DOC is set to ON, turn it OFF to avoid building docs${ColourReset}") message("-- ${BoldGreen}CHAMELEON_ENABLE_DOC is set to ON, turn it OFF to avoid building docs${ColourReset}")
...@@ -203,10 +203,6 @@ option(CHAMELEON_ENABLE_TESTING "Enable testings build" ON) ...@@ -203,10 +203,6 @@ option(CHAMELEON_ENABLE_TESTING "Enable testings build" ON)
if (CHAMELEON_ENABLE_TESTING) if (CHAMELEON_ENABLE_TESTING)
message("-- ${BoldGreen}CHAMELEON_ENABLE_TESTING is set to ON, turn it OFF to avoid building testing${ColourReset}") message("-- ${BoldGreen}CHAMELEON_ENABLE_TESTING is set to ON, turn it OFF to avoid building testing${ColourReset}")
endif() endif()
option(CHAMELEON_ENABLE_TIMING "Enable timings build" ON)
if (CHAMELEON_ENABLE_TIMING)
message("-- ${BoldGreen}CHAMELEON_ENABLE_TIMING is set to ON, turn it OFF to avoid building timing${ColourReset}")
endif()
# Option to activate or not simulation mode (use Simgrid through StarPU) # Option to activate or not simulation mode (use Simgrid through StarPU)
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
...@@ -993,17 +989,8 @@ endif(CHAMELEON_ENABLE_EXAMPLE AND NOT CHAMELEON_SIMULATION) ...@@ -993,17 +989,8 @@ endif(CHAMELEON_ENABLE_EXAMPLE AND NOT CHAMELEON_SIMULATION)
# Testing executables # Testing executables
if(CHAMELEON_ENABLE_TESTING) if(CHAMELEON_ENABLE_TESTING)
add_subdirectory(new-testing)
endif(CHAMELEON_ENABLE_TESTING)
if(CHAMELEON_ENABLE_EXAMPLE AND NOT CHAMELEON_SIMULATION)
add_subdirectory(testing) add_subdirectory(testing)
endif(CHAMELEON_ENABLE_EXAMPLE AND NOT CHAMELEON_SIMULATION) endif(CHAMELEON_ENABLE_TESTING)
# Timing executables
if(CHAMELEON_ENABLE_TIMING)
add_subdirectory(timing)
endif(CHAMELEON_ENABLE_TIMING)
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
# Define a target which gathers all targets of sources # Define a target which gathers all targets of sources
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# #
# @copyright 2009-2014 The University of Tennessee and The University of # @copyright 2009-2014 The University of Tennessee and The University of
# Tennessee Research Foundation. All rights reserved. # Tennessee Research Foundation. All rights reserved.
# @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
# Univ. Bordeaux. All rights reserved. # Univ. Bordeaux. All rights reserved.
# @copyright 2016-2018 KAUST. All rights reserved. # @copyright 2016-2018 KAUST. All rights reserved.
# #
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# #
# @copyright 2009-2014 The University of Tennessee and The University of # @copyright 2009-2014 The University of Tennessee and The University of
# Tennessee Research Foundation. All rights reserved. # Tennessee Research Foundation. All rights reserved.
# @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
# Univ. Bordeaux. All rights reserved. # Univ. Bordeaux. All rights reserved.
# #
### ###
...@@ -17,12 +17,12 @@ ...@@ -17,12 +17,12 @@
# Univ. of California Berkeley, # Univ. of California Berkeley,
# Univ. of Colorado Denver. # Univ. of Colorado Denver.
# #
# @version 0.9.2 # @version 1.0.0
# @author Cedric Castagnede # @author Cedric Castagnede
# @author Emmanuel Agullo # @author Emmanuel Agullo
# @author Mathieu Faverge # @author Mathieu Faverge
# @author Florent Pruvost # @author Florent Pruvost
# @date 2014-11-10 # @date 2020-03-03
# #
### ###
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# #
# @copyright 2009-2014 The University of Tennessee and The University of # @copyright 2009-2014 The University of Tennessee and The University of
# Tennessee Research Foundation. All rights reserved. # Tennessee Research Foundation. All rights reserved.
# @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
# Univ. Bordeaux. All rights reserved. # Univ. Bordeaux. All rights reserved.
# #
### ###
...@@ -17,9 +17,9 @@ ...@@ -17,9 +17,9 @@
# Univ. of California Berkeley, # Univ. of California Berkeley,
# Univ. of Colorado Denver. # Univ. of Colorado Denver.
# #
# @version 0.9.2 # @version 1.0.0
# @author Florent Pruvost # @author Florent Pruvost
# @date 2014-11-10 # @date 2020-03-03
# #
### ###
...@@ -56,14 +56,12 @@ set(dep_message "${dep_message}" ...@@ -56,14 +56,12 @@ set(dep_message "${dep_message}"
" BLAS ................: ${BLAS_VENDOR_FOUND}\n" " BLAS ................: ${BLAS_VENDOR_FOUND}\n"
" LAPACK...............: ${LAPACK_VENDOR_FOUND}\n" " LAPACK...............: ${LAPACK_VENDOR_FOUND}\n"
"\n" "\n"
" Trace ...............: ${CHAMELEON_ENABLE_TRACING}\n"
" Simulation mode .....: ${CHAMELEON_SIMULATION}\n" " Simulation mode .....: ${CHAMELEON_SIMULATION}\n"
"\n" "\n"
" Binaries to build\n" " Binaries to build\n"
" documentation ........: ${CHAMELEON_ENABLE_DOC}\n" " documentation ........: ${CHAMELEON_ENABLE_DOC}\n"
" example ..............: ${CHAMELEON_ENABLE_EXAMPLE}\n" " example ..............: ${CHAMELEON_ENABLE_EXAMPLE}\n"
" testing ..............: ${CHAMELEON_ENABLE_TESTING}\n" " testing ..............: ${CHAMELEON_ENABLE_TESTING}\n"
" timing ...............: ${CHAMELEON_ENABLE_TIMING}\n"
"\n" "\n"
" CHAMELEON dependencies :\n") " CHAMELEON dependencies :\n")
foreach (_dep ${CHAMELEON_LIBRARIES_DEP}) foreach (_dep ${CHAMELEON_LIBRARIES_DEP})
......
...@@ -76,7 +76,6 @@ subs = { ...@@ -76,7 +76,6 @@ subs = {
('codelet_p', 'codelet_s', 'codelet_d', 'codelet_c', 'codelet_z' ), ('codelet_p', 'codelet_s', 'codelet_d', 'codelet_c', 'codelet_z' ),
('runtime_p', 'runtime_s', 'runtime_d', 'runtime_c', 'runtime_z' ), ('runtime_p', 'runtime_s', 'runtime_d', 'runtime_c', 'runtime_z' ),
('testing_p', 'testing_s', 'testing_d', 'testing_c', 'testing_z' ), ('testing_p', 'testing_s', 'testing_d', 'testing_c', 'testing_z' ),
('timing_p', 'timing_s', 'timing_d', 'timing_c', 'timing_z' ),
('workspace_p', 'workspace_s', 'workspace_d', 'workspace_c', 'workspace_z' ), ('workspace_p', 'workspace_s', 'workspace_d', 'workspace_c', 'workspace_z' ),
('check_p', 'check_s', 'check_d', 'check_c', 'check_z' ), ('check_p', 'check_s', 'check_d', 'check_c', 'check_z' ),
# ('CORE_P', 'CORE_S', 'CORE_D', 'CORE_C', 'CORE_Z' ), # ('CORE_P', 'CORE_S', 'CORE_D', 'CORE_C', 'CORE_Z' ),
......
Subproject commit bf907e276be1b3393e03bf63f962b5c03c283a80 Subproject commit 657741dbab25d4008c4dfc2ebdf34a3f43bf00e6
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# #
# @copyright 2009-2014 The University of Tennessee and The University of # @copyright 2009-2014 The University of Tennessee and The University of
# Tennessee Research Foundation. All rights reserved. # Tennessee Research Foundation. All rights reserved.
# @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
# Univ. Bordeaux. All rights reserved. # Univ. Bordeaux. All rights reserved.
# #
### ###
...@@ -17,11 +17,11 @@ ...@@ -17,11 +17,11 @@
# Univ. of California Berkeley, # Univ. of California Berkeley,
# Univ. of Colorado Denver. # Univ. of Colorado Denver.
# #
# @version 0.9.2 # @version 1.0.0
# @author Cedric Castagnede # @author Cedric Castagnede
# @author Emmanuel Agullo # @author Emmanuel Agullo
# @author Mathieu Faverge # @author Mathieu Faverge
# @date 2014-11-16 # @date 2020-03-03
# #
### ###
......
...@@ -2,16 +2,16 @@ ...@@ -2,16 +2,16 @@
* *
* @file map.c * @file map.c
* *
* @copyright 2018-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * @copyright 2018-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved. * Univ. Bordeaux. All rights reserved.
* *
*** ***
* *
* @brief Chameleon map wrappers * @brief Chameleon map wrappers
* *
* @version 0.9.2 * @version 1.0.0
* @author Mathieu Faverge * @author Mathieu Faverge
* @date 2018-09-24 * @date 2020-03-03
* *
*/ */
#include "control/common.h" #include "control/common.h"
......
...@@ -2,16 +2,16 @@ ...@@ -2,16 +2,16 @@
* *
* @file pmap.c * @file pmap.c
* *
* @copyright 2018-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * @copyright 2018-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved. * Univ. Bordeaux. All rights reserved.
* *
*** ***
* *
* @brief Chameleon map parallel algorithm * @brief Chameleon map parallel algorithm
* *
* @version 0.9.2 * @version 1.0.0
* @author Mathieu Faverge * @author Mathieu Faverge
* @date 2018-09-24 * @date 2020-03-03
* *
*/ */
#include "control/common.h" #include "control/common.h"
......
...@@ -4,21 +4,21 @@ ...@@ -4,21 +4,21 @@
* *
* @copyright 2009-2014 The University of Tennessee and The University of * @copyright 2009-2014 The University of Tennessee and The University of
* Tennessee Research Foundation. All rights reserved. * Tennessee Research Foundation. All rights reserved.
* @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved. * Univ. Bordeaux. All rights reserved.
* *
*** ***
* *
* @brief Chameleon zbuild parallel algorithm * @brief Chameleon zbuild parallel algorithm
* *
* @version 0.9.2 * @version 1.0.0
* @comment This file has been automatically generated * @comment This file has been automatically generated
* from Plasma 2.5.0 for CHAMELEON 0.9.2 * from Plasma 2.5.0 for CHAMELEON 0.9.2
* @author Mathieu Faverge * @author Mathieu Faverge
* @author Emmanuel Agullo * @author Emmanuel Agullo
* @author Cedric Castagnede * @author Cedric Castagnede
* @author Guillaume Sylvand * @author Guillaume Sylvand
* @date 2016-09-08 * @date 2020-03-03
* @precisions normal z -> s d c * @precisions normal z -> s d c
* *
*/ */
......
...@@ -4,17 +4,17 @@ ...@@ -4,17 +4,17 @@
* *
* @copyright 2009-2014 The University of Tennessee and The University of * @copyright 2009-2014 The University of Tennessee and The University of
* Tennessee Research Foundation. All rights reserved. * Tennessee Research Foundation. All rights reserved.
* @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved. * Univ. Bordeaux. All rights reserved.
* *
*** ***
* *
* @brief Chameleon zgebrd_ge2gb parallel algorithm * @brief Chameleon zgebrd_ge2gb parallel algorithm
* *
* @version 0.9.2 * @version 1.0.0
* @author Hatem Ltaief * @author Hatem Ltaief
* @author Azzam Haidar * @author Azzam Haidar
* @date 2016-12-09 * @date 2020-03-03
* @precisions normal z -> s d c * @precisions normal z -> s d c
* *
*/ */
......
...@@ -4,14 +4,14 @@ ...@@ -4,14 +4,14 @@
* *
* @copyright 2009-2014 The University of Tennessee and The University of * @copyright 2009-2014 The University of Tennessee and The University of
* Tennessee Research Foundation. All rights reserved. * Tennessee Research Foundation. All rights reserved.
* @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved. * Univ. Bordeaux. All rights reserved.
* *
*** ***
* *
* @brief Chameleon zgelqf parallel algorithm * @brief Chameleon zgelqf parallel algorithm
* *
* @version 0.9.2 * @version 1.0.0
* @comment This file has been automatically generated * @comment This file has been automatically generated
* from Plasma 2.5.0 for CHAMELEON 0.9.2 * from Plasma 2.5.0 for CHAMELEON 0.9.2
* @author Jakub Kurzak * @author Jakub Kurzak
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
* @author Mathieu Faverge * @author Mathieu Faverge
* @author Emmanuel Agullo * @author Emmanuel Agullo
* @author Cedric Castagnede * @author Cedric Castagnede
* @date 2014-11-16 * @date 2020-03-03
* @precisions normal z -> s d c * @precisions normal z -> s d c
* *
*/ */
......
...@@ -4,17 +4,17 @@ ...@@ -4,17 +4,17 @@
* *
* @copyright 2009-2014 The University of Tennessee and The University of * @copyright 2009-2014 The University of Tennessee and The University of
* Tennessee Research Foundation. All rights reserved. * Tennessee Research Foundation. All rights reserved.
* @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved. * Univ. Bordeaux. All rights reserved.
* *
*** ***
* *
* @brief Chameleon zgelqf_param parallel algorithm * @brief Chameleon zgelqf_param parallel algorithm
* *
* @version 0.9.2 * @version 1.0.0
* @author Mathieu Faverge * @author Mathieu Faverge
* @author Raphael Boucherie * @author Raphael Boucherie
* @date 2017-05-12 * @date 2020-03-03
* @precisions normal z -> s d c * @precisions normal z -> s d c
* *
*/ */
......
...@@ -4,14 +4,14 @@ ...@@ -4,14 +4,14 @@
* *
* @copyright 2009-2014 The University of Tennessee and The University of * @copyright 2009-2014 The University of Tennessee and The University of
* Tennessee Research Foundation. All rights reserved. * Tennessee Research Foundation. All rights reserved.
* @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved. * Univ. Bordeaux. All rights reserved.
* *
*** ***
* *
* @brief Chameleon zgelqfrh parallel algorithm * @brief Chameleon zgelqfrh parallel algorithm
* *
* @version 0.9.2 * @version 1.0.0
* @comment This file has been automatically generated * @comment This file has been automatically generated
* from Plasma 2.5.0 for CHAMELEON 0.9.2 * from Plasma 2.5.0 for CHAMELEON 0.9.2
* @author Jakub Kurzak * @author Jakub Kurzak
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
* @author Mathieu Faverge * @author Mathieu Faverge
* @author Emmanuel Agullo * @author Emmanuel Agullo
* @author Cedric Castagnede * @author Cedric Castagnede
* @date 2014-11-16 * @date 2020-03-03
* @precisions normal z -> s d c * @precisions normal z -> s d c
* *
*/ */
......
...@@ -4,20 +4,20 @@ ...@@ -4,20 +4,20 @@
* *
* @copyright 2009-2014 The University of Tennessee and The University of * @copyright 2009-2014 The University of Tennessee and The University of
* Tennessee Research Foundation. All rights reserved. * Tennessee Research Foundation. All rights reserved.
* @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved. * Univ. Bordeaux. All rights reserved.
* *
*** ***
* *
* @brief Chameleon zgemm parallel algorithm * @brief Chameleon zgemm parallel algorithm
* *
* @version 0.9.2 * @version 1.0.0
* @comment This file has been automatically generated * @comment This file has been automatically generated
* from Plasma 2.5.0 for CHAMELEON 0.9.2 * from Plasma 2.5.0 for CHAMELEON 0.9.2
* @author Mathieu Faverge * @author Mathieu Faverge
* @author Emmanuel Agullo * @author Emmanuel Agullo
* @author Cedric Castagnede * @author Cedric Castagnede
* @date 2014-11-16 * @date 2020-03-03
* @precisions normal z -> s d c * @precisions normal z -> s d c
* *
*/ */
......
...@@ -4,14 +4,14 @@ ...@@ -4,14 +4,14 @@
* *
* @copyright 2009-2014 The University of Tennessee and The University of * @copyright 2009-2014 The University of Tennessee and The University of
* Tennessee Research Foundation. All rights reserved. * Tennessee Research Foundation. All rights reserved.
* @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved. * Univ. Bordeaux. All rights reserved.
* *
*** ***
* *
* @brief Chameleon zgeqrf parallel algorithm * @brief Chameleon zgeqrf parallel algorithm
* *
* @version 0.9.2 * @version 1.0.0
* @comment This file has been automatically generated * @comment This file has been automatically generated
* from Plasma 2.5.0 for CHAMELEON 0.9.2 * from Plasma 2.5.0 for CHAMELEON 0.9.2
* @author Jakub Kurzak * @author Jakub Kurzak
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
* @author Mathieu Faverge * @author Mathieu Faverge
* @author Emmanuel Agullo * @author Emmanuel Agullo
* @author Cedric Castagnede * @author Cedric Castagnede
* @date 2014-11-16 * @date 2020-03-03
* @precisions normal z -> s d c * @precisions normal z -> s d c
* *
*/ */
......
...@@ -4,17 +4,17 @@ ...@@ -4,17 +4,17 @@
* *
* @copyright 2009-2014 The University of Tennessee and The University of * @copyright 2009-2014 The University of Tennessee and The University of
* Tennessee Research Foundation. All rights reserved. * Tennessee Research Foundation. All rights reserved.
* @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved. * Univ. Bordeaux. All rights reserved.
* *
*** ***
* *
* @brief Chameleon zgeqrf_param parallel algorithm * @brief Chameleon zgeqrf_param parallel algorithm
* *
* @version 0.9.2 * @version 1.0.0
* @author Mathieu Faverge * @author Mathieu Faverge
* @author Raphael Boucherie * @author Raphael Boucherie
* @date 2017-05-03 * @date 2020-03-03
* @precisions normal z -> s d c * @precisions normal z -> s d c
* *
*/ */
......
...@@ -4,14 +4,14 @@ ...@@ -4,14 +4,14 @@
* *
* @copyright 2009-2014 The University of Tennessee and The University of * @copyright 2009-2014 The University of Tennessee and The University of
* Tennessee Research Foundation. All rights reserved. * Tennessee Research Foundation. All rights reserved.
* @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved. * Univ. Bordeaux. All rights reserved.
* *
*** ***
* *
* @brief Chameleon zgeqrfrh parallel algorithm * @brief Chameleon zgeqrfrh parallel algorithm
* *
* @version 0.9.2 * @version 1.0.0
* @comment This file has been automatically generated * @comment This file has been automatically generated
* from Plasma 2.5.0 for CHAMELEON 0.9.2 * from Plasma 2.5.0 for CHAMELEON 0.9.2
* @author Jakub Kurzak * @author Jakub Kurzak
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
* @author Mathieu Faverge * @author Mathieu Faverge
* @author Emmanuel Agullo * @author Emmanuel Agullo
* @author Cedric Castagnede * @author Cedric Castagnede
* @date 2014-11-16 * @date 2020-03-03
* @precisions normal z -> s d c * @precisions normal z -> s d c
* *
*/ */
......
...@@ -4,14 +4,14 @@ ...@@ -4,14 +4,14 @@
* *
* @copyright 2009-2014 The University of Tennessee and The University of * @copyright 2009-2014 The University of Tennessee and The University of
* Tennessee Research Foundation. All rights reserved. * Tennessee Research Foundation. All rights reserved.
* @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved. * Univ. Bordeaux. All rights reserved.
* *
*** ***
* *
* @brief Chameleon zgetrf_incpiv parallel algorithm * @brief Chameleon zgetrf_incpiv parallel algorithm
* *
* @version 0.9.2 * @version 1.0.0
* @comment This file has been automatically generated * @comment This file has been automatically generated
* from Plasma 2.5.0 for CHAMELEON 0.9.2 * from Plasma 2.5.0 for CHAMELEON 0.9.2
* @author Jakub Kurzak * @author Jakub Kurzak
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
* @author Mathieu Faverge * @author Mathieu Faverge
* @author Emmanuel Agullo * @author Emmanuel Agullo
* @author Cedric Castagnede * @author Cedric Castagnede
* @date 2014-11-16 * @date 2020-03-03
* @precisions normal z -> s d c * @precisions normal z -> s d c
* *
*/ */
......
...@@ -4,19 +4,19 @@ ...@@ -4,19 +4,19 @@
* *
* @copyright 2009-2014 The University of Tennessee and The University of * @copyright 2009-2014 The University of Tennessee and The University of
* Tennessee Research Foundation. All rights reserved. * Tennessee Research Foundation. All rights reserved.
* @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* Univ. Bordeaux. All rights reserved. * Univ. Bordeaux. All rights reserved.
* *
*** ***
* *
* @brief Chameleon zgetrf_nopiv parallel algorithm * @brief Chameleon zgetrf_nopiv parallel algorithm
* *
* @version 0.9.2 * @version 1.0.0
* @author Omar Zenati * @author Omar Zenati
* @author Mathieu Faverge * @author Mathieu Faverge
* @author Emmanuel Agullo * @author Emmanuel Agullo
* @author Cedric Castagnede * @author Cedric Castagnede
* @date 2014-11-16 * @date 2020-03-03
* @precisions normal z -> s d c * @precisions normal z -> s d c
* *
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment