diff --git a/.gitlab/check_ci.sh b/.gitlab/check_ci.sh new file mode 100755 index 0000000000000000000000000000000000000000..76e9496ea8fefc963a5376942d4cb33b2f6075a8 --- /dev/null +++ b/.gitlab/check_ci.sh @@ -0,0 +1,81 @@ +#!/usr/bin/env bash + +success=1 + +check_rebase() +{ + hash_master=$(git show-ref -s origin/master) + hash_common=$(git merge-base origin/master ${CI_COMMIT_SHA}) + if [ "${hash_master}" = "${hash_common}" ] + then + echo "check_rebase: OK" + return 0 + else + echo "check_rebase: Rebase is required" + success=0 + return 1 + fi +} + +check_draft() +{ + if [ "${CI_PIPELINE_SOURCE}" = "merge_request_event" ] + then + draft=$( echo ${CI_MERGE_REQUEST_TITLE} | sed "s/^Draft.*$/Draft/" ) + wip=$( echo ${CI_MERGE_REQUEST_TITLE} | sed "s/^WIP.*$/WIP/" ) + + if [ "$draft" = "Draft" ] + then + echo "check_draft: Merge request is in draft mode" + success=0 + return 1 + fi + + if [ "$wip" = "WIP" ] + then + echo "check_draft: Merge request is in WIP" + success=0 + return 1 + fi + + # if [ "${CI_MERGE_REQUEST_APPROVED}" != "true" ] + # then + # echo "check_approval: Merge request not yet approved" + # success=0 + # return 1 + # fi + + echo "check_draft: Merge request is ok" + fi + + return 0 +} + +echo "----------------------------------------------------" +check_rebase + +echo "" +echo "----------------------------------------------------" +check_draft + +echo "" +echo "----------------------------------------------------" +echo " Checking file headers: " +TOOLSDIR=$(dirname $0)/../tools + +$TOOLSDIR/check_header.sh +rc=$? +if [ $rc -eq 0 ] +then + echo "Check header: SUCCESS" +else + echo "Check header: FAILED" + success=0 +fi + +if [ $success -eq 0 ] +then + exit 1 + # We could cancel the job, but then the log is not pushed in time to the web interface + #curl --request POST --header "PRIVATE-TOKEN: ${PIPELINE_TOKEN}" "https://gitlab.inria.fr/api/v4/projects/$CI_PROJECT_ID/pipelines/$CI_PIPELINE_ID/cancel" +fi diff --git a/.gitlab/common.yml b/.gitlab/common.yml index 2c597c65f777f49eb97308ac2cd07a6fae049222..312eea9ad3660ef55cffa3b5b3b8ec102b4daa10 100644 --- a/.gitlab/common.yml +++ b/.gitlab/common.yml @@ -21,6 +21,14 @@ except: - schedules +preliminary_checks: + image: registry.gitlab.inria.fr/solverstack/docker/distrib + stage: .pre + script: + - .gitlab/check_ci.sh + only: + - merge_requests + .build_script_template: extends: .only-branches stage: build diff --git a/CMakeLists.txt b/CMakeLists.txt index 45403fd80b8c375aa15899acfd6854717285fbbd..d91428631a7e52cb5e86c98ec248f77b73453414 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,7 +17,7 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 +# @version 1.2.0 # @author Cedric Castagnede # @author Emmanuel Agullo # @author Mathieu Faverge @@ -26,7 +26,8 @@ # @author Philippe Virouleau # @author Raphael Boucherie # @author Samuel Thibault -# @date 2021-02-22 +# @author Guillaume Sylvand +# @date 2022-02-22 # ### cmake_minimum_required(VERSION 3.3) @@ -41,7 +42,7 @@ endif() # set project version number set(CHAMELEON_VERSION_MAJOR 1) -set(CHAMELEON_VERSION_MINOR 1) +set(CHAMELEON_VERSION_MINOR 2) set(CHAMELEON_VERSION_MICRO 0) set(CHAMELEON_VERSION "${CHAMELEON_VERSION_MAJOR}.${CHAMELEON_VERSION_MINOR}.${CHAMELEON_VERSION_MICRO}") diff --git a/LICENCE.txt b/LICENCE.txt index e3b32839e4df8e8395941ed7cbd8bcc4c9b70ce5..bc59a3f956c01b3914c9766f23649b8425fcbb9a 100644 --- a/LICENCE.txt +++ b/LICENCE.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # @copyright 2016-2018 KAUST. All rights reserved. # diff --git a/cmake_modules/GenPkgConfig.cmake b/cmake_modules/GenPkgConfig.cmake index af5d42038a3d3a3097454af58a7cbfb390e2305e..9488bb070a00d48f2254ea2187122be52643bd97 100644 --- a/cmake_modules/GenPkgConfig.cmake +++ b/cmake_modules/GenPkgConfig.cmake @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,12 +17,12 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 +# @version 1.2.0 # @author Cedric Castagnede # @author Emmanuel Agullo # @author Mathieu Faverge # @author Florent Pruvost -# @date 2021-01-04 +# @date 2022-02-22 # ### diff --git a/cmake_modules/PrintOpts.cmake b/cmake_modules/PrintOpts.cmake index a8b10c3bbf28d0a9800d8f3511d805a9f93d96d1..7cafe2030c6dcbc7372cfeba480fe8b114d8ff1a 100644 --- a/cmake_modules/PrintOpts.cmake +++ b/cmake_modules/PrintOpts.cmake @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,10 +17,10 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 +# @version 1.2.0 # @author Florent Pruvost # @author Mathieu Faverge -# @date 2021-01-04 +# @date 2022-02-22 # ### diff --git a/cmake_modules/local_subs.py b/cmake_modules/local_subs.py index eb8cb418f2152666a28fcd62cfcff71cc76ac1c0..75ce13a204fa9e320bf532b7739472b32ec2e508 100644 --- a/cmake_modules/local_subs.py +++ b/cmake_modules/local_subs.py @@ -1,3 +1,18 @@ +""" + @file local_subs.py + + Python Chameleon specific substitution rules for the Precision Generator script. + + @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + Univ. Bordeaux. All rights reserved. + + @version 1.2.0 + @author Mathieu Faverge + @author Florent Pruvost + @author Nathalie Furmento + @date 2022-02-22 + +""" _extra_blas = [ # ----- Additional BLAS ('', 'dsgesv', 'dsgesv', 'zcgesv', 'zcgesv' ), diff --git a/compute/CMakeLists.txt b/compute/CMakeLists.txt index 739ba511e81454a6b0dd8d563b8496a4b4d5c928..53bf357439a3d9f6988698856776b7cc7f468b8c 100644 --- a/compute/CMakeLists.txt +++ b/compute/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,14 +17,15 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 +# @version 1.2.0 # @author Cedric Castagnede # @author Emmanuel Agullo # @author Mathieu Faverge # @author Florent Pruvost # @author Guillaume Sylvand # @author Raphael Boucherie -# @date 2021-01-11 +# @author Alycia Lisito +# @date 2022-02-22 # ### diff --git a/compute/map.c b/compute/map.c index fd2a9df2893e65ad2b750b69a0f7a6554cf57382..c13371c4ccee59ff7717e44c4492996880886f35 100644 --- a/compute/map.c +++ b/compute/map.c @@ -2,16 +2,16 @@ * * @file map.c * - * @copyright 2018-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2018-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon map wrappers * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "control/common.h" diff --git a/compute/pmap.c b/compute/pmap.c index adea0350dfbe4d374c94995c00664aa96723c6fb..019839821112f5ee6439491e8f679b4c3bc6a61d 100644 --- a/compute/pmap.c +++ b/compute/pmap.c @@ -2,16 +2,16 @@ * * @file pmap.c * - * @copyright 2018-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2018-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon map parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "control/common.h" diff --git a/compute/pzbuild.c b/compute/pzbuild.c index 72824d80a2395a2852ee2ee3f2d22a9b3161d33f..bccd43023cf7d201678f9426dd4e09ff637ba930 100644 --- a/compute/pzbuild.c +++ b/compute/pzbuild.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zbuild parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge @@ -19,7 +19,7 @@ * @author Cedric Castagnede * @author Guillaume Sylvand * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzcesca.c b/compute/pzcesca.c index 4b6776b7c0d1e69efa75a1037f28495be919ee4e..9b554bcc800ddcf09b932f0c6ea864db04472482 100644 --- a/compute/pzcesca.c +++ b/compute/pzcesca.c @@ -2,16 +2,16 @@ * * @file pzcesca.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zcesca parallel algorithm * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost - * @date 2021-05-07 + * @date 2022-02-22 * @precisions normal z -> s d c z * */ diff --git a/compute/pzgebrd_ge2gb.c b/compute/pzgebrd_ge2gb.c index 104a7d2fdbe21e4768eb8f6ec736c574cb772cc9..1e7b82d9ad47627da15309cf754fd671d78e9d70 100644 --- a/compute/pzgebrd_ge2gb.c +++ b/compute/pzgebrd_ge2gb.c @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgebrd_ge2gb parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Azzam Haidar * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzgelqf.c b/compute/pzgelqf.c index 4866e0a0f608d77aff720574cdd48e0f2702cd20..c72ed710e0d5d3f9cc20339c3d1e9d75904db1c8 100644 --- a/compute/pzgelqf.c +++ b/compute/pzgelqf.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgelqf parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -22,7 +22,7 @@ * @author Florent Pruvost * @author Raphael Boucherie * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzgelqf_param.c b/compute/pzgelqf_param.c index 1542c07a815f9e2b2252ba24acd8784fd0f9de2b..dcc95ba81a8b8465e753ca77ad30426f71ba7fd4 100644 --- a/compute/pzgelqf_param.c +++ b/compute/pzgelqf_param.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgelqf_param parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzgelqfrh.c b/compute/pzgelqfrh.c index cb4dfe029f051138372b87e17ee1436f4df1bc2e..5d7fae952cc43166f09384730c17d05d27ae4b49 100644 --- a/compute/pzgelqfrh.c +++ b/compute/pzgelqfrh.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgelqfrh parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -22,7 +22,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzgemm.c b/compute/pzgemm.c index 0c374e6450185168faf1efd732fc3c404ac86a33..b2a71d51163d12ba390896c906a9efc7399dfc1f 100644 --- a/compute/pzgemm.c +++ b/compute/pzgemm.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgemm parallel algorithm * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2021-03-17 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzgenm2.c b/compute/pzgenm2.c index f6535d5df69931e38be80a729e00f5632fbdf5d9..ec1c9cfc7a1033838aad9bdb755ff6eb4992bc12 100644 --- a/compute/pzgenm2.c +++ b/compute/pzgenm2.c @@ -4,7 +4,7 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2016-2020 KAUST. All rights reserved. * @@ -12,10 +12,10 @@ * * @brief Chameleon parallel algorithm to compute 2-norm estimator. * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Dalal Sukkari - * @date 2020-10-15 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzgepdf_qdwh.c b/compute/pzgepdf_qdwh.c index f955e4d4c756c8914b5004818b9a3d3cbd51aef8..ce379486097bffccdccb6f72234a4962d93bf1fe 100644 --- a/compute/pzgepdf_qdwh.c +++ b/compute/pzgepdf_qdwh.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon QDWH Polar Decomposition parallel algorithm * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Hatem Ltaief - * @date 2021-03-17 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzgepdf_qr.c b/compute/pzgepdf_qr.c index af25533ffa8cd7d7b83bc598ac9471bfd755689b..d9b17ce980299fa8bd176675facf11fe65841355 100644 --- a/compute/pzgepdf_qr.c +++ b/compute/pzgepdf_qr.c @@ -1,8 +1,8 @@ /** * - * @file zgeqrf_qdwh_param.c + * @file pzgepdf_qr.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2016-2020 KAUST. All rights reserved. * @@ -10,9 +10,9 @@ * * @brief Chameleon zgepdf_qr parallel algorithm * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-12-01 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzgeqrf.c b/compute/pzgeqrf.c index 6542af8d4534a1df471ebfe8276acc1721b1b227..9baf7ae0028a7fb00bd1dd2a7b995fc3bc4074d2 100644 --- a/compute/pzgeqrf.c +++ b/compute/pzgeqrf.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeqrf parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -21,7 +21,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzgeqrf_param.c b/compute/pzgeqrf_param.c index f046a7ec20c25d04bbb3bc249406ffcd5d308385..41c882417250f8b28d2a152578397c6ee84a72a0 100644 --- a/compute/pzgeqrf_param.c +++ b/compute/pzgeqrf_param.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeqrf_param parallel algorithm * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-12-01 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzgeqrfrh.c b/compute/pzgeqrfrh.c index 0720587886886e10b0cda41a2943102969a2b748..8cd96c65cd87c4b47201a6d48be55561a1f56f47 100644 --- a/compute/pzgeqrfrh.c +++ b/compute/pzgeqrfrh.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeqrfrh parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -22,7 +22,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzgetrf_incpiv.c b/compute/pzgetrf_incpiv.c index de78313e1e4a12ca09f5d7b198093d0f5b0a384a..69505a5c4f1528d657d234b5e4f396229029607d 100644 --- a/compute/pzgetrf_incpiv.c +++ b/compute/pzgetrf_incpiv.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrf_incpiv parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -21,7 +21,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzgetrf_nopiv.c b/compute/pzgetrf_nopiv.c index aa5ec7645799ab8eb944ddb78ab2c5a46a6e485c..67dabcac9e16197164633d109c28f1b44017c1c3 100644 --- a/compute/pzgetrf_nopiv.c +++ b/compute/pzgetrf_nopiv.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrf_nopiv parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @author Omar Zenati * @author Mathieu Faverge * @author Emmanuel Agullo @@ -19,7 +19,7 @@ * @author Florent Pruvost * @author Samuel Thibault * @author Terry Cojean - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzgram.c b/compute/pzgram.c index ab16334559bb627ba7bdb1b3ae2e7ce55ee168a1..1cd5adf429fe77a5edc7102ebd7ae77da52d5afa 100644 --- a/compute/pzgram.c +++ b/compute/pzgram.c @@ -2,17 +2,17 @@ * * @file pzgram.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgram parallel algorithm * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2021-03-17 + * @date 2022-02-22 * @precisions normal z -> s d c z * */ diff --git a/compute/pzhemm.c b/compute/pzhemm.c index f9bea3e5fb3a0019c3fadaadf9ad9f6eead6c4e5..175f2ce2007c388f6b371b4c8aed5e77ac592e78 100644 --- a/compute/pzhemm.c +++ b/compute/pzhemm.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zhemm parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/compute/pzher2k.c b/compute/pzher2k.c index 937b092654a34bb4ea8d6d7624ea6e9870de3a2b..e206860ba4e9e7defbb38a8f42e293fb3fd81dae 100644 --- a/compute/pzher2k.c +++ b/compute/pzher2k.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zher2k parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/compute/pzherk.c b/compute/pzherk.c index f10b5983e50554d631a16c7ecacad9fc6c80a340..5f00d693de9e4f67cfa5fb1a0c75f98efbc95fb2 100644 --- a/compute/pzherk.c +++ b/compute/pzherk.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zherk parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/compute/pzhetrd_he2hb.c b/compute/pzhetrd_he2hb.c index 6006561e3040c1379990b72398662b99debba7ab..8522f39d6e085ad0c9c513491978712948157a39 100644 --- a/compute/pzhetrd_he2hb.c +++ b/compute/pzhetrd_he2hb.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zhetrd_he2hb parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Azzam Haidar * @author Mathieu Faverge * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzlacpy.c b/compute/pzlacpy.c index e394a3656f0be63c4dce962b0522258d3a64084c..1a2307992c54f65841a088c8dd40f41742c61666 100644 --- a/compute/pzlacpy.c +++ b/compute/pzlacpy.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlacpy parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzlag2c.c b/compute/pzlag2c.c index 630ab4d30d05a5c5d9089b7e3549d3f299bdc830..bc28fcf1165846645f139ba432d40a6aad19e174 100644 --- a/compute/pzlag2c.c +++ b/compute/pzlag2c.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlag2c parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions mixed zc -> ds * */ diff --git a/compute/pzlange.c b/compute/pzlange.c index 0ef1e0f652decf987a953db97b9710c678453dac..4acf29aa1c5e1edcf15b58f29eda0302dcbd4410 100644 --- a/compute/pzlange.c +++ b/compute/pzlange.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlange parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Emmanuel Agullo * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzlansy.c b/compute/pzlansy.c index 2c6265ee55ef41479c671376fb06e075d3cebd48..5bb6b62425dbafbbb1b47917094bb4f55bc8ff4e 100644 --- a/compute/pzlansy.c +++ b/compute/pzlansy.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlansy parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Emmanuel Agullo * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/compute/pzlascal.c b/compute/pzlascal.c index 5bdfbfd1ce76c42eddb0368802326c8efc650597..29bbb431af4a1a42d9983e62349de559ab04193c 100644 --- a/compute/pzlascal.c +++ b/compute/pzlascal.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlascal parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @author Dalal Sukkari * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzlaset.c b/compute/pzlaset.c index 4e3f7b59f2d5f9baf5c004e299402794e32a7637..e0b9c732cbba0b36d40662da431763ba7a9d8f9b 100644 --- a/compute/pzlaset.c +++ b/compute/pzlaset.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlaset parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzlaset2.c b/compute/pzlaset2.c index 6fb1d9accccfbf43617ff6f67075641dfca8b571..e42510e5eefdd89130de7d6ab9843e60b16ca5bd 100644 --- a/compute/pzlaset2.c +++ b/compute/pzlaset2.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlaset2 parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzlatms.c b/compute/pzlatms.c index 1f1d96636c541d5a950ab01af40272af01215a33..58a5fd9f717208cad993149c78a731ab49164da3 100644 --- a/compute/pzlatms.c +++ b/compute/pzlatms.c @@ -2,7 +2,7 @@ * * @file pzlatms.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2016-2020 KAUST. All rights reserved. * @@ -10,9 +10,9 @@ * * @brief Chameleon zlatms parallel algorithm * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-11-19 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzlauum.c b/compute/pzlauum.c index 52079c7442232704f589be241cabfc28475e0bd7..8b7cb73afc1d4005e25da3093e44be8fd35843c2 100644 --- a/compute/pzlauum.c +++ b/compute/pzlauum.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlauum parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Julien Langou @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzplghe.c b/compute/pzplghe.c index 7a1f03120228e8b2e4189f15d783e6ff936395f2..e7fb726055b6ba9197632f85491b0253fe7558ed 100644 --- a/compute/pzplghe.c +++ b/compute/pzplghe.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplghe parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Rade Mathis * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/compute/pzplgsy.c b/compute/pzplgsy.c index b9a03562030a64d726f37f42d5af988d875f44bf..da20a37495ee52070bcf61fdd466876f4abbb535 100644 --- a/compute/pzplgsy.c +++ b/compute/pzplgsy.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplgsy parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Rade Mathis * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/compute/pzplrnk.c b/compute/pzplrnk.c index 9639a182823ac3de298b8ad7fbd2f9cf2695dcc3..e09efd66ecdb496019396b5d8634f17690fec8c5 100644 --- a/compute/pzplrnk.c +++ b/compute/pzplrnk.c @@ -2,17 +2,17 @@ * * @file pzplrnk.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplrnk parallel algorithm * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-10-10 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzplrnt.c b/compute/pzplrnt.c index a0d08d9bea95ba87abe5c833efa04f6f286949a1..96d075293ae1ea41314457103213ad79fecfb73b 100644 --- a/compute/pzplrnt.c +++ b/compute/pzplrnt.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplrnt parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzpotrf.c b/compute/pzpotrf.c index 581d6c29717e077dd3fc3520d6c2d04c4fe8bbd4..a854389fd44d63b68555126b2124d9dc57a8f3ac 100644 --- a/compute/pzpotrf.c +++ b/compute/pzpotrf.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zpotrf parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -22,7 +22,7 @@ * @author Florent Pruvost * @author Samuel Thibault * @author Terry Cojean - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzpotrimm.c b/compute/pzpotrimm.c index fdb7feb4e96bfa57c001b47cfbe32d4b1b896553..8ecfc636c7354797c286f353a46edecc28eded76 100644 --- a/compute/pzpotrimm.c +++ b/compute/pzpotrimm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zpotrimm parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -19,7 +19,7 @@ * @author Ali M Charara * @author Florent Pruvost * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzsymm.c b/compute/pzsymm.c index 00b4a1b8380ca3ad98c512a7f4fdbf1867f8661e..27adf0cdfb541371f367aad4131703c747326bb6 100644 --- a/compute/pzsymm.c +++ b/compute/pzsymm.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsymm parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzsyr2k.c b/compute/pzsyr2k.c index 92e0744e6534fbf8fb662238c39ae5c03d2fbbea..c848eddf771e2d04ed5d832d14e7ccf8e163846a 100644 --- a/compute/pzsyr2k.c +++ b/compute/pzsyr2k.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsyr2k parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/compute/pzsyrk.c b/compute/pzsyrk.c index c3c1764742ca543d28c8df5383e2cb6669775832..6c62f529e4b89594bed8dfd121d34f611b88f204 100644 --- a/compute/pzsyrk.c +++ b/compute/pzsyrk.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsyrk parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzsytrf.c b/compute/pzsytrf.c index 605a50db137c9c2038aa21b078d11f240eaaca89..4f4a554dae21f81eb9a0474271dcf59d15492917 100644 --- a/compute/pzsytrf.c +++ b/compute/pzsytrf.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsytrf parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Hatem Ltaief * @author Mathieu Faverge @@ -20,7 +20,7 @@ * @author Florent Pruvost * @author Marc Sergent * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/compute/pztile2band.c b/compute/pztile2band.c index 48fe78dfe5c194ac1b1b7406f522da9c288d10d8..41dad04b11749a7bc2e5b9a8718acf34c2fd8ccf 100644 --- a/compute/pztile2band.c +++ b/compute/pztile2band.c @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztile2band parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @author Azzam Haidar * @author Gregoire Pichon * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pztpgqrt.c b/compute/pztpgqrt.c index a810ad022d6ac0038f246b8e9b6ae3f068a0e4b0..36b4afc69b54cbb6fac86d28e6f91a5c56da4d2d 100644 --- a/compute/pztpgqrt.c +++ b/compute/pztpgqrt.c @@ -4,7 +4,7 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2016-2018 KAUST. All rights reserved. * @@ -12,11 +12,11 @@ * * @brief Chameleon computational routines * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Raphael Boucherie * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pztpgqrt_param.c b/compute/pztpgqrt_param.c index 4754bd339ef334774c4a6965bae32ecc50270c77..ef8161b6dc2c783367a4875c51c151f39667158d 100644 --- a/compute/pztpgqrt_param.c +++ b/compute/pztpgqrt_param.c @@ -2,7 +2,7 @@ * * @file pztpgqrt_param.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2016-2020 KAUST. All rights reserved. * @@ -10,9 +10,9 @@ * * @brief Chameleon computational routines * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-12-01 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pztpqrt.c b/compute/pztpqrt.c index fb9388cad307e87b3b94872ff55a30bd510bcaaa..3b405ea7a7c1bd69953400d62b974d94104448e9 100644 --- a/compute/pztpqrt.c +++ b/compute/pztpqrt.c @@ -4,7 +4,7 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2016-2018 KAUST. All rights reserved. * @@ -12,10 +12,10 @@ * * @brief Chameleon computational routines * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pztpqrt_param.c b/compute/pztpqrt_param.c index 10d8af1a47b8c2b37f0f305b396c00903d8f1ecf..66f8efd4fee5f0e55a677980bea166b6984371d1 100644 --- a/compute/pztpqrt_param.c +++ b/compute/pztpqrt_param.c @@ -2,7 +2,7 @@ * * @file pztpqrt_param.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2016-2020 KAUST. All rights reserved. * @@ -10,9 +10,9 @@ * * @brief Chameleon computational routines * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-12-01 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pztradd.c b/compute/pztradd.c index a525446531b610225e84bdbeac2b6e7711122067..d943adfc1d852493481af8f1c8273a5f1f99d90f 100644 --- a/compute/pztradd.c +++ b/compute/pztradd.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztradd parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Emmanuel Agullo * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pztrmm.c b/compute/pztrmm.c index 9aab4b3a7091f5100e3d0ce1994c8e8d28a6837e..fbf1b1edcf719b69b81584c16edd801681e2af00 100644 --- a/compute/pztrmm.c +++ b/compute/pztrmm.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrmm parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pztrsm.c b/compute/pztrsm.c index 485b577c1f6894e6c4c6b2dfc8c9301660207974..f7fc6849275d44b67e891f83b615932894a3b3ca 100644 --- a/compute/pztrsm.c +++ b/compute/pztrsm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrsm parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pztrsmpl.c b/compute/pztrsmpl.c index 6f74a5aab7de55e0ecf329183c635d6b0bfc4562..c4ed311b440b88703245ff09d0cd56659cd73464 100644 --- a/compute/pztrsmpl.c +++ b/compute/pztrsmpl.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrsmpl parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pztrtri.c b/compute/pztrtri.c index 84241e66824bdbd1a1b0cde1e64e798c29f22e47..fc9906bc77097a470c63521c4b81fa91033e0f3b 100644 --- a/compute/pztrtri.c +++ b/compute/pztrtri.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrtri parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Julien Langou @@ -21,7 +21,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzunglq.c b/compute/pzunglq.c index ff769bec462d79e91ec66928e3eb598791bac1be..f65f73e60ac098915495872d52f5b65a1c5fe769 100644 --- a/compute/pzunglq.c +++ b/compute/pzunglq.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunglq parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -22,7 +22,7 @@ * @author Florent Pruvost * @author Raphael Boucherie * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzunglq_param.c b/compute/pzunglq_param.c index d44f834c361082a607cba28e37d89b0a13196d2d..1a15e384ed920a25b6748a37dc67bd85aed2e24f 100644 --- a/compute/pzunglq_param.c +++ b/compute/pzunglq_param.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunglq_param parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzunglqrh.c b/compute/pzunglqrh.c index 6f1e7e530b8c5353ee8d3d1fe1e726dfa58aa747..397b5f1e88a7479d1db78fbad77c184f6b029397 100644 --- a/compute/pzunglqrh.c +++ b/compute/pzunglqrh.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunglqrh parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Dulceneia Becker @@ -20,7 +20,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzungqr.c b/compute/pzungqr.c index 617a3c021371996db06516cfdb95e38f44b23563..c7ee3f5ddf49bb71c3aaf7a4f9e0c9e4367fce85 100644 --- a/compute/pzungqr.c +++ b/compute/pzungqr.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zungqr parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -21,7 +21,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzungqr_param.c b/compute/pzungqr_param.c index 46ace452c0cbc9a0cc8f89a1880e977fa0cca298..16fbefb8dea33c5ca32d10f0e35c9edbc4837db6 100644 --- a/compute/pzungqr_param.c +++ b/compute/pzungqr_param.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zungqr_param parallel algorithm * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-12-01 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzungqrrh.c b/compute/pzungqrrh.c index 578ef6b33de64a54f58fab4d9e9cb60493823023..d500fe2db7c750f8ff4ead41da200a1c03dac2f8 100644 --- a/compute/pzungqrrh.c +++ b/compute/pzungqrrh.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zungqrrh parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -22,7 +22,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzunmlq.c b/compute/pzunmlq.c index be3cea4ed221da0f9bbc0c52cdb7e3ee6d7b2c83..9edd667d7e74f1d06cd8007a17de9752b68ee7cf 100644 --- a/compute/pzunmlq.c +++ b/compute/pzunmlq.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmlq parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -23,7 +23,7 @@ * @author Florent Pruvost * @author Raphael Boucherie * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzunmlq_param.c b/compute/pzunmlq_param.c index 81f176d8e2da65154afcfc90ac5f092ce0af0b03..b01b7e7a3438f1a84cbd45f7333ac54b9219640d 100644 --- a/compute/pzunmlq_param.c +++ b/compute/pzunmlq_param.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmlq_param parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzunmlqrh.c b/compute/pzunmlqrh.c index 76bf946b3cd7971ac2d9375387686be93cf1fee1..8d9ad2ee5cf66314372b026d52313c9de29efda8 100644 --- a/compute/pzunmlqrh.c +++ b/compute/pzunmlqrh.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmlqrh parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -22,7 +22,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzunmqr.c b/compute/pzunmqr.c index 78a5f3fa23d40831731b62c298d25cb6f37877d2..d9f5e1850e53e589d7aedaa2ca2552dc692df24e 100644 --- a/compute/pzunmqr.c +++ b/compute/pzunmqr.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmqr parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -23,7 +23,7 @@ * @author Florent Pruvost * @author Raphael Boucherie * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzunmqr_param.c b/compute/pzunmqr_param.c index c282b2a5405c2a9166c092a5304744ab07ff96f5..ee2d0da7eaacefd456c8b764c6cb0601415c555b 100644 --- a/compute/pzunmqr_param.c +++ b/compute/pzunmqr_param.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmqr_param parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/pzunmqrrh.c b/compute/pzunmqrrh.c index 5e672f7819dd7623c8ac47b78bae2a4fb30fbeeb..98a816cd1866d56303a7ea09224c073a98d120aa 100644 --- a/compute/pzunmqrrh.c +++ b/compute/pzunmqrrh.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmqrrh parallel algorithm * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -22,7 +22,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zbuild.c b/compute/zbuild.c index 7310e1b73a4356322036bc71c523e970b1801120..ee6beff5ab11f4c23a55a12f66b85139980dbadf 100644 --- a/compute/zbuild.c +++ b/compute/zbuild.c @@ -4,12 +4,12 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @brief Chameleon zbuild wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge @@ -17,7 +17,7 @@ * @author Cedric Castagnede * @author Guillaume Sylvand * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zcesca.c b/compute/zcesca.c index 822858dad6683f5748cb7073b6bfcbd4c2286491..7d2bb2e2751d5258996df09bcf6f32d70c651a41 100644 --- a/compute/zcesca.c +++ b/compute/zcesca.c @@ -2,16 +2,16 @@ * * @file zcesca.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zcesca wrappers * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost - * @date 2021-05-07 + * @date 2022-02-22 * @precisions normal z -> s d c z * */ diff --git a/compute/zgeadd.c b/compute/zgeadd.c index f0a93b42e6b70ac213dc13e8e47265e58a396a3b..cc8c7a2a31bcb2ef9c74fa03e929792192f82306 100644 --- a/compute/zgeadd.c +++ b/compute/zgeadd.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeadd wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgelqf.c b/compute/zgelqf.c index f5afebb99310b3a722935d301cdc82cfb0785043..09b8e90556cd4a95b6e4da24f01cc028b64fc37b 100644 --- a/compute/zgelqf.c +++ b/compute/zgelqf.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgelqf wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -21,7 +21,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Raphael Boucherie - * @date 2020-01-07 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgelqf_param.c b/compute/zgelqf_param.c index d60af32c2a55a371432eacc458db5e8abb919b88..f1a3469952346ecb611b8d80adb5734e9ef48e32 100644 --- a/compute/zgelqf_param.c +++ b/compute/zgelqf_param.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgelqf_param wrappers * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-01-07 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgelqs.c b/compute/zgelqs.c index 170ad6e7556a7bb37e2adc80650eb16c41b5ad99..3470105373a2fc2c760b3f743081cc691abac4ff 100644 --- a/compute/zgelqs.c +++ b/compute/zgelqs.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgelqs wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -20,7 +20,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Raphael Boucherie - * @date 2020-01-07 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgelqs_param.c b/compute/zgelqs_param.c index b2041636343ed751068db4453b3b3f8f2a780dd2..9b7e0d569164965ae3dcc53ef7cb9b1e39f9b32c 100644 --- a/compute/zgelqs_param.c +++ b/compute/zgelqs_param.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgelqs_param wrappers * - * @version 1.0.0 + * @version 1.2.0 * @author Raphael Boucherie * @author Mathieu Faverge - * @date 2020-01-07 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgels.c b/compute/zgels.c index d8c48b753e4fc10a04cc03c69ce1c5b3298aa1c9..f1dc999130f8a6c333f9ba5e3248d24fc74cf020 100644 --- a/compute/zgels.c +++ b/compute/zgels.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgels wrappers * - * @version 1.0.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost * @author Raphael Boucherie - * @date 2020-01-07 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgels_param.c b/compute/zgels_param.c index 64742b7ea1f6869baf04b934acbc5be6b270213b..dd3928f5b42814962458626244687fdc37be3c9b 100644 --- a/compute/zgels_param.c +++ b/compute/zgels_param.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgels_param wrappers * - * @version 1.0.0 + * @version 1.2.0 * @author Raphael Boucherie * @author Mathieu Faverge - * @date 2020-01-07 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgemm.c b/compute/zgemm.c index 6514ca83f2babf03b95f36a2f12842eb72f58813..e3eed82ec66a299b83c74bbdc274ad867950bc2f 100644 --- a/compute/zgemm.c +++ b/compute/zgemm.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgemm wrappers * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2021-03-17 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgenm2.c b/compute/zgenm2.c index 83fc17a63694514d99aa97cff0e6de4619e61b12..1f7657112a2e4bb255c37e5dbfb29121742d3626 100644 --- a/compute/zgenm2.c +++ b/compute/zgenm2.c @@ -4,7 +4,7 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2016-2020 KAUST. All rights reserved. * @@ -12,9 +12,9 @@ * * @brief Chameleon zgenm2 wrappers * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-10-15 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgepdf_qdwh.c b/compute/zgepdf_qdwh.c index 39773bf712b924d1cc5990d2d72c2dd9d4bf6ed0..d8fcba55c198e1fe80c9904ac6d2fefd7dffc1b9 100644 --- a/compute/zgepdf_qdwh.c +++ b/compute/zgepdf_qdwh.c @@ -2,7 +2,7 @@ * * @file zgepdf_qdwh.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2016-2020 KAUST. All rights reserved. * @@ -10,10 +10,10 @@ * * @brief Chameleon zgepdf_qdwh wrappers * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Hatem Ltaief - * @date 2020-12-01 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgepdf_qr.c b/compute/zgepdf_qr.c index 502e81f03f3fc9cd0ca49ebfbf8d6e80743a70c9..7d662588af4abf6cac2d10388338a68359b4f4d8 100644 --- a/compute/zgepdf_qr.c +++ b/compute/zgepdf_qr.c @@ -2,7 +2,7 @@ * * @file zgepdf_qr.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2016-2020 KAUST. All rights reserved. * @@ -14,9 +14,9 @@ * timer/testing fot this subroutine of the QDWH/Zolo algorithms. That is why * only the Tile version is available. * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-12-01 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgeqrf.c b/compute/zgeqrf.c index 374293868dff051b619df4f4c71129f04c77450f..9fba10701a4af7b966469ee3d137e359203e61f9 100644 --- a/compute/zgeqrf.c +++ b/compute/zgeqrf.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeqrf wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -20,7 +20,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Raphael Boucherie - * @date 2020-01-07 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgeqrf_param.c b/compute/zgeqrf_param.c index 85c376f435f52021b451e2278aac988d6fd014ab..2084039b458940077454b65a00533727de6514b7 100644 --- a/compute/zgeqrf_param.c +++ b/compute/zgeqrf_param.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeqrf_param wrappers * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-01-07 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgeqrs.c b/compute/zgeqrs.c index 565a829e66493a2b3a9887be30fd94d26168ac2b..4ad0fa826666d522a71f2890abdafb9055610e73 100644 --- a/compute/zgeqrs.c +++ b/compute/zgeqrs.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeqrs wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -20,7 +20,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Raphael Boucherie - * @date 2020-01-07 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgeqrs_param.c b/compute/zgeqrs_param.c index 6ee688a39b40942ea6be21ba75875d4874abac9f..8a138ed57cc2aee640d0d269a429a3e18b3deb05 100644 --- a/compute/zgeqrs_param.c +++ b/compute/zgeqrs_param.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeqrs_param wrappers * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-01-07 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgesv_incpiv.c b/compute/zgesv_incpiv.c index 3db5a73e9ab03ceace2ab63e5e5f80e2c6154de3..df19e469fbb8669b46a36030dbcb67f0c9a8bc0c 100644 --- a/compute/zgesv_incpiv.c +++ b/compute/zgesv_incpiv.c @@ -4,7 +4,7 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** @@ -12,7 +12,7 @@ * @brief Chameleon zgesv_incpiv wrappers * Release Date: November, 15th 2009 * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-01-07 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgesv_nopiv.c b/compute/zgesv_nopiv.c index b3231aa957b53486deda00a21f2f226d9df48edd..d36dc2c24d58a953af0d6b74fce9b5adfdae2052 100644 --- a/compute/zgesv_nopiv.c +++ b/compute/zgesv_nopiv.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgesv_nopiv wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgesvd.c b/compute/zgesvd.c index 42512bec5afcb024a1d83d00e724389a05c69aed..e85f280719c04804d87d8ede3377f8c2e76e2881 100644 --- a/compute/zgesvd.c +++ b/compute/zgesvd.c @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgesvd wrappers * - * @version 1.0.0 + * @version 1.2.0 * @author Gregoire Pichon * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgetrf_incpiv.c b/compute/zgetrf_incpiv.c index b8eaccce4ec4a71e0c093fd83881f36cfc559d89..20636929b6b89830ec6e313d639746e93b19d2f1 100644 --- a/compute/zgetrf_incpiv.c +++ b/compute/zgetrf_incpiv.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrf_incpiv wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-01-07 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgetrf_nopiv.c b/compute/zgetrf_nopiv.c index ce02b9c8e1b74909d258c73b6ba83df8906ddf39..efdd8e5f5426b85b0bbe1e681cfaaca0987e0bf4 100644 --- a/compute/zgetrf_nopiv.c +++ b/compute/zgetrf_nopiv.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrf_nopiv wrappers * - * @version 1.0.0 + * @version 1.2.0 * @author Omar Zenati * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * * @precisions normal z -> s d c * diff --git a/compute/zgetrs_incpiv.c b/compute/zgetrs_incpiv.c index 80b721095eaef65f4a49dc604a4e140167804e57..76e2fb51ba31486879e36ae855e5e28801c71549 100644 --- a/compute/zgetrs_incpiv.c +++ b/compute/zgetrs_incpiv.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrs_incpiv wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgetrs_nopiv.c b/compute/zgetrs_nopiv.c index fd297a29cc27d151100ece709329065740e78db7..2390b6a8707b23055b9b6aad53bf80c46f2ad858 100644 --- a/compute/zgetrs_nopiv.c +++ b/compute/zgetrs_nopiv.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrs_nopiv wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zgram.c b/compute/zgram.c index 1b9d02122f01a23c15ba80cd6d7351eba4884b1e..e1649be4c6f685dd6ffd7001c3977549cc2dc7c5 100644 --- a/compute/zgram.c +++ b/compute/zgram.c @@ -2,18 +2,18 @@ * * @file zgram.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgram wrappers * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost * @author Philippe Swartvagher - * @date 2021-03-25 + * @date 2022-02-22 * @precisions normal z -> s d c z * */ diff --git a/compute/zheevd.c b/compute/zheevd.c index ec0e307a2a341a4e5081c4a1549eed71042eb28a..ca26b4e14b3cb8a237117309f37a812dc1d47278 100644 --- a/compute/zheevd.c +++ b/compute/zheevd.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zheevd wrappers * - * @version 1.1.0 + * @version 1.2.0 * @author Azzam Haidar * @author Hatem Ltaief * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2021-03-17 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zhemm.c b/compute/zhemm.c index 0c02ba87c57e35639f2bfe4035c709c404be93be..422bf9eecef6ea09acdff520e99751f5560b7e01 100644 --- a/compute/zhemm.c +++ b/compute/zhemm.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zhemm wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/compute/zher2k.c b/compute/zher2k.c index 7fd084918941bcfb5e42f195d0efa91870fbec79..f5a962c0d1cfe107bf248cf01c0eb2d0327e7248 100644 --- a/compute/zher2k.c +++ b/compute/zher2k.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zher2k wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/compute/zherk.c b/compute/zherk.c index ffa743e018e33cddf90615bf106ab3b2089539e8..2438268b6373ce92728b5fcfd33d702eb1823b7d 100644 --- a/compute/zherk.c +++ b/compute/zherk.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zherk wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/compute/zhetrd.c b/compute/zhetrd.c index 3749bf95aa64b14d21bd9d713f9039f5978b143f..072161a441fd245d0988e98d29d5a830d2871a08 100644 --- a/compute/zhetrd.c +++ b/compute/zhetrd.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zhetrd wrappers * - * @version 1.0.0 + * @version 1.2.0 * @author Azzam Haidar * @author Hatem Ltaief * @author Gregoire Pichon * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zlacpy.c b/compute/zlacpy.c index 8023f3cd00bba6f59d89f3f2a98f9a22709a1018..cac80229449fc158e242191451383571b177ef0d 100644 --- a/compute/zlacpy.c +++ b/compute/zlacpy.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlacpy wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zlange.c b/compute/zlange.c index 443ad4b18a2365f4e0b00ad248362bb4197d703b..e44dd880c792dbf6a93c43c1f414572fbb770301 100644 --- a/compute/zlange.c +++ b/compute/zlange.c @@ -4,7 +4,7 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2016-2020 KAUST. All rights reserved. * @@ -12,11 +12,11 @@ * * @brief Chameleon zlange wrappers * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Hatem Ltaief * @author Florent Pruvost - * @date 2020-10-15 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zlanhe.c b/compute/zlanhe.c index ad0bb66a5c5b0b227528a4abd509a2b8a41ba955..c6346e136cc5b0994b72fcab76f6008d5085aa66 100644 --- a/compute/zlanhe.c +++ b/compute/zlanhe.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlanhe wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/compute/zlansy.c b/compute/zlansy.c index 3243f0b2c0bf29303e738151c08119debfa04921..771660fc7f697e5181cfe8319690280c303a5240 100644 --- a/compute/zlansy.c +++ b/compute/zlansy.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlansy wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zlantr.c b/compute/zlantr.c index 9845a76c6b006dae145bbefd3ae42b961e36a4a5..979bed405786945128742cc29b79989a02dbf1b2 100644 --- a/compute/zlantr.c +++ b/compute/zlantr.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlantr wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zlascal.c b/compute/zlascal.c index df2db533b9b38e57a5989812e38e4ac63e49763c..5be1dfc6cabeac0aca4e08735c91ee5c0315838f 100644 --- a/compute/zlascal.c +++ b/compute/zlascal.c @@ -4,7 +4,7 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2016-2018 KAUST. All rights reserved. * @@ -12,10 +12,10 @@ * * @brief Chameleon zlascal wrappers * - * @version 1.0.0 + * @version 1.2.0 * @author Dalal Sukkari * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zlaset.c b/compute/zlaset.c index 653aef0fe1474e7ff94460aad0aa4ab4d054094f..86ae11cfe587167dc7fcb6a92f381a0a4a0f7d9d 100644 --- a/compute/zlaset.c +++ b/compute/zlaset.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlaset wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zlatms.c b/compute/zlatms.c index 660e163094554f0cb9147c354e71d7e72a7b5a9b..6a6e333b6729f9226ef3ed6c8f76aaadf270c862 100644 --- a/compute/zlatms.c +++ b/compute/zlatms.c @@ -2,7 +2,7 @@ * * @file zlatms.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2016-2020 KAUST. All rights reserved. * @@ -10,9 +10,9 @@ * * @brief Chameleon zlatms wrappers * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-10-10 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zlauum.c b/compute/zlauum.c index f570219ea86836456ee12e9e674dda639b68cb8d..6e07cfeb6e626b9cad39bd80350239460360535d 100644 --- a/compute/zlauum.c +++ b/compute/zlauum.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlauum wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zplghe.c b/compute/zplghe.c index ea6a7364f76463233cc13d3f799834a1d82ce51e..efbd069113f1f9415a6135cd2442ad71c2b7f116 100644 --- a/compute/zplghe.c +++ b/compute/zplghe.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplghe wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file is a copy of zplghe.c * wich has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 @@ -20,7 +20,7 @@ * @author Cedric Castagnede * @author Rade Mathis * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/compute/zplgsy.c b/compute/zplgsy.c index 2f592151779d658e7caca905922c17a8a8923e63..ec96fc87535819d03f70f295b5791cdfae98e12a 100644 --- a/compute/zplgsy.c +++ b/compute/zplgsy.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplgsy wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file is a copy of zplgsy.c, * wich has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 @@ -20,7 +20,7 @@ * @author Cedric Castagnede * @author Rade Mathis * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/compute/zplrnk.c b/compute/zplrnk.c index 6b3853522ab5a70a4fa89bdd456c433a4ccf48d5..3ad7d7142204153dce8ef517faa471747de68401 100644 --- a/compute/zplrnk.c +++ b/compute/zplrnk.c @@ -2,17 +2,17 @@ * * @file zplrnk.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplrnk wrappers * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-09-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zplrnt.c b/compute/zplrnt.c index 4f25f18a008b184134444bf122addb0f30891803..9742f8bed34fcc058fa52bf31b9e57059f52370a 100644 --- a/compute/zplrnt.c +++ b/compute/zplrnt.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplrnt wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zpoinv.c b/compute/zpoinv.c index acc12fcea5d4681bb29aaa43c6ede64bcf0d456a..29c76a115caebe2d18a455b450f2996f83f615d2 100644 --- a/compute/zpoinv.c +++ b/compute/zpoinv.c @@ -11,9 +11,9 @@ * * @brief Chameleon zpoinv wrappers * - * @version 1.0.0 + * @version 1.2.0 * @author Alycia Lisito - * @date 2022-02-02 + * @date 2022-02-03 * @precisions normal z -> s d c * */ diff --git a/compute/zposv.c b/compute/zposv.c index 805e17ce70ee0bccc55bac2fb02847a92d966ee7..0b1db5f1f1e86b1dcd34f782f7b82d472c926f87 100644 --- a/compute/zposv.c +++ b/compute/zposv.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zposv wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zpotrf.c b/compute/zpotrf.c index e15395d893a7a826fd02e932b99fadfa9c541fb6..97f52485c950b6ea8e9d972ef76d0884a4c5c2f6 100644 --- a/compute/zpotrf.c +++ b/compute/zpotrf.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zpotrf wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zpotri.c b/compute/zpotri.c index 9eb7abe98f0d14bb1cde49cdc0c9ec853ed49730..e6d7295075968214589ef8106867cdac58a15b4b 100644 --- a/compute/zpotri.c +++ b/compute/zpotri.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zpotri wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zpotrimm.c b/compute/zpotrimm.c index 0d960e0ff8cfb64976eb3375cc896fbe5ee8607a..d371b351008aad861ca8c22ab7cc17f228730d91 100644 --- a/compute/zpotrimm.c +++ b/compute/zpotrimm.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zpotrimm wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zpotrs.c b/compute/zpotrs.c index a5965ce8684fb9bcb7cedee6e695d0ad2071ce73..e1f7104b120d9f5dcdc1c946e673b1deea699507 100644 --- a/compute/zpotrs.c +++ b/compute/zpotrs.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zpotrs wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zsymm.c b/compute/zsymm.c index 7f9038ebca9e360392e0e9db980304726605a88d..c4ff5fb0ea3f8cb1bf8bb0321f2f62f52d0d33bb 100644 --- a/compute/zsymm.c +++ b/compute/zsymm.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsymm wrappers * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-11-18 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zsyr2k.c b/compute/zsyr2k.c index 193ac7bd02422174010e73af05381cf510425a21..2dc9c2f3792d3726df41261dffd7199bffba7160 100644 --- a/compute/zsyr2k.c +++ b/compute/zsyr2k.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsyr2k wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/compute/zsyrk.c b/compute/zsyrk.c index 53311b64464133ba74e97921c87d6c7678da032c..8092e34fef368a139bc3f9eeae9f64ccd353fdef 100644 --- a/compute/zsyrk.c +++ b/compute/zsyrk.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsyrk wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zsysv.c b/compute/zsysv.c index c833c35977e9b3eca64983525ce7ef1854f82899..fcc04f4ec3667143b0feac117c8f791c9e165567 100644 --- a/compute/zsysv.c +++ b/compute/zsysv.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsysv wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -20,7 +20,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Marc Sergent - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/compute/zsytrf.c b/compute/zsytrf.c index 57cea0df23800135e0af1783f2cf01c63dbf8e8a..d8058cca43fa0a07128007ecfa4e5d9076126ab5 100644 --- a/compute/zsytrf.c +++ b/compute/zsytrf.c @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsytrf wrappers * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Marc Sergent * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/compute/zsytrs.c b/compute/zsytrs.c index 6091333b5faf34a2ea8c2f096f3ac57735a3a567..3b37f43dbdc5c8d859c594c837576dec4cb9d876 100644 --- a/compute/zsytrs.c +++ b/compute/zsytrs.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsytrs wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -20,7 +20,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Marc Sergent - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/compute/ztile.c b/compute/ztile.c index 54dc48b256947f5f5bdbb0aa004e179de09806db..31410b08b029a10db38eac06b955341f21c54795 100644 --- a/compute/ztile.c +++ b/compute/ztile.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon auxiliary routines * - * @version 1.1.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-04-22 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/ztpgqrt.c b/compute/ztpgqrt.c index ef43a94c0e38e371dbfc61bc40ac90876a4b7dd3..07755339b8ddea95a8ecd760ce27f2f602b964b2 100644 --- a/compute/ztpgqrt.c +++ b/compute/ztpgqrt.c @@ -4,7 +4,7 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2016-2018 KAUST. All rights reserved. * @@ -12,10 +12,10 @@ * * @brief Chameleon ztpgqrt wrappers * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-01-07 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/ztpqrt.c b/compute/ztpqrt.c index 0b3600acc69644a0bb322c25a88b31fe2b5e9ed7..004b2b86124e01b1e3d4cf4dfc3450f28b5a0bfd 100644 --- a/compute/ztpqrt.c +++ b/compute/ztpqrt.c @@ -4,7 +4,7 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2016-2018 KAUST. All rights reserved. * @@ -12,9 +12,9 @@ * * @brief Chameleon ztpqrt wrappers * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/ztradd.c b/compute/ztradd.c index 61cb24fe094cbfbcef2b1df54404ba9aff06db55..3a684fffdd4fa15806fc4106c7fe8507c5ccfc27 100644 --- a/compute/ztradd.c +++ b/compute/ztradd.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztradd wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/ztrmm.c b/compute/ztrmm.c index 13776888d5168e35d5cea21ee164be72f898d2d6..5d3922ecebdb19e6acb4b28f68bc016d32837eb9 100644 --- a/compute/ztrmm.c +++ b/compute/ztrmm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrmm wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge @@ -19,7 +19,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Lucas Barros de Assis - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/ztrsm.c b/compute/ztrsm.c index 2caf96e4526ec61ce1ad96eb73e429e4976714a4..fb25937178ddda73a6fcaa2184e3a5be65e7fe48 100644 --- a/compute/ztrsm.c +++ b/compute/ztrsm.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrsm wrappers * - * @version 1.1.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-11 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/ztrsmpl.c b/compute/ztrsmpl.c index 5949ad69c21d825d4ef4df40973c5706be60dee3..34ae7b3ac7ec1dbac2fd8d056c4824ac2014b5c8 100644 --- a/compute/ztrsmpl.c +++ b/compute/ztrsmpl.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrsmpl wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/ztrtri.c b/compute/ztrtri.c index ad590984457c3124d23c93405c7c04958ee4fdf2..377792e21e1336c28196f6cd6df9e3adcede718b 100644 --- a/compute/ztrtri.c +++ b/compute/ztrtri.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrtri wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zunglq.c b/compute/zunglq.c index 6ee4fbc5514bf08ff3e217f79249f874f5c441da..38d58fb45eb393b66a67eb3c76318d230d7deca2 100644 --- a/compute/zunglq.c +++ b/compute/zunglq.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunglq wrappers * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost * @author Raphael Boucherie - * @date 2020-11-17 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zunglq_param.c b/compute/zunglq_param.c index c302383f49a77db154ca48ff5bf40bb49f66215f..3a311a5427dd911439388b6dc32d9a5a00a2d6a0 100644 --- a/compute/zunglq_param.c +++ b/compute/zunglq_param.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunglq_param wrappers * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-11-17 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zungqr.c b/compute/zungqr.c index 66a5840afbd204f8b68b55a50b0ab993cd33d236..76b8aa20f535100d698a7595cc7b6ab91c5142b8 100644 --- a/compute/zungqr.c +++ b/compute/zungqr.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zungqr wrappers * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost * @author Raphael Boucherie - * @date 2020-11-17 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zungqr_param.c b/compute/zungqr_param.c index c184e6cdb1f7198283ebca44da28d7d8f56d24a5..e2885d88f87135a527aeeb3386183b538d0f5045 100644 --- a/compute/zungqr_param.c +++ b/compute/zungqr_param.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zungqr_param wrappers * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-11-17 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zunmlq.c b/compute/zunmlq.c index c23c73522e2dbf676385c066ad933aee404f7288..bc20b52e595593a57851e7e92cb90a58a8e0083f 100644 --- a/compute/zunmlq.c +++ b/compute/zunmlq.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmlq wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -22,7 +22,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Raphael Boucherie - * @date 2020-01-07 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zunmlq_param.c b/compute/zunmlq_param.c index 89b577cc93485cf1d27f217cd1488d8f9fe29f78..138c70c1014a797d6b5c644ae24bb563df880c59 100644 --- a/compute/zunmlq_param.c +++ b/compute/zunmlq_param.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmlq_param wrappers * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-01-07 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zunmqr.c b/compute/zunmqr.c index 85c6d0294ac9631a0c4f98c0357f43ecd3fedbe2..0697ee08ee67bd04af5a65caa73176423ba64714 100644 --- a/compute/zunmqr.c +++ b/compute/zunmqr.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmqr wrappers * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -21,7 +21,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Raphael Boucherie - * @date 2020-01-07 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/compute/zunmqr_param.c b/compute/zunmqr_param.c index c9a345f99308f427d7e74d90e371cb47bed1ecf2..8872922ab3b0625933e9c9ad4645837d27a785db 100644 --- a/compute/zunmqr_param.c +++ b/compute/zunmqr_param.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmqr_param wrappers * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-01-07 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/control/CMakeLists.txt b/control/CMakeLists.txt index d11bf15269bb0abb70aca6616ef630faa6638504..67113d56170f0d4c743543070aec55ca98884194 100644 --- a/control/CMakeLists.txt +++ b/control/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,12 +17,12 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.0.0 +# @version 1.2.0 # @author Cedric Castagnede # @author Emmanuel Agullo # @author Mathieu Faverge # @author Florent Pruvost -# @date 2020-03-03 +# @date 2022-02-22 # ### diff --git a/control/async.c b/control/async.c index 2612f9e3dbf248032826c74f1698079cff877ba3..1a86246cf5c568d51b0d07a32567d5c17e985a96 100644 --- a/control/async.c +++ b/control/async.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon asynchronous management routines * - * @version 1.1.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-04-22 + * @date 2022-02-22 * *** * diff --git a/control/async.h b/control/async.h index f33a5a5b10be423abe69dc03d8a610422076c666..0a55971a0b1e68c32fd2c6639b7d877f9ca26c22 100644 --- a/control/async.h +++ b/control/async.h @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon asynchronous management header * - * @version 1.1.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Cedric Castagnede * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-04-22 + * @date 2022-02-22 * */ #ifndef _chameleon_async_h_ diff --git a/control/auxiliary.c b/control/auxiliary.c index b1f0095c44c266f02d4b3f10769b873c389138c0..b2fec846167bf23757f05e6a1016fcdf9ef8eb30 100644 --- a/control/auxiliary.c +++ b/control/auxiliary.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon auxiliary routines * - * @version 1.0.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Piotr Luszczek * @author Emmanuel Agullo @@ -19,7 +19,7 @@ * @author Florent Pruvost * @author Guillaume Sylvand * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * *** * diff --git a/control/auxiliary.h b/control/auxiliary.h index bf77aa08018d1ffac800f61b870c3ddb60e7b629..45df77d6ad4c25da5c724f465d7c44643b21a760 100644 --- a/control/auxiliary.h +++ b/control/auxiliary.h @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon auxiliary header * - * @version 1.0.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Piotr Luszczek * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _chameleon_auxiliary_h_ diff --git a/control/chameleon_f77.c b/control/chameleon_f77.c index a247a75b9c3a4195220ba5f43fb298dd74550294..f66c7998de5a47f6272dbe9247323f5fd9131804 100644 --- a/control/chameleon_f77.c +++ b/control/chameleon_f77.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon Fortran77 interface * - * @version 1.1.0 + * @version 1.2.0 * @author Bilel Hadri * @author Cedric Castagnede * @author Florent Pruvost * @author Mathieu Faverge * @author Philippe Virouleau - * @date 2020-03-12 + * @date 2022-02-22 * */ #include "control/common.h" diff --git a/control/chameleon_f77.h b/control/chameleon_f77.h index a8745471a6b1d9faec45872f17f6e024825a3d6f..9bbc36856ba325a60feb3a8f7304a6cc4229df10 100644 --- a/control/chameleon_f77.h +++ b/control/chameleon_f77.h @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon Fortran77 naming macros * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge * @author Philippe Virouleau - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _chameleon_f77_h_ diff --git a/control/chameleon_f90.f90 b/control/chameleon_f90.f90 index 51b659d6d46d47f46d85a85171f45024a745c248..b80379574b4e972fa182b440c3430194f5d9a04d 100644 --- a/control/chameleon_f90.f90 +++ b/control/chameleon_f90.f90 @@ -6,14 +6,14 @@ ! CHAMELEON is a software package provided by Univ. of Tennessee, ! Univ. of California Berkeley and Univ. of Colorado Denver ! -! @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +! @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, ! Univ. Bordeaux. All rights reserved. ! -! @version 1.1.0 +! @version 1.2.0 ! @author Numerical Algorithm Group ! @author Florent Pruvost ! @author Mathieu Faverge -! @date 2020-04-22 +! @date 2022-02-22 ! ! -- Inria ! -- (C) Copyright 2012 diff --git a/control/chameleon_mf77.c b/control/chameleon_mf77.c index 2a43c778eb0204a7015520e8bfdba3d03aee73e5..50ef18ee1d41847edf067989963c7fce8b562151 100644 --- a/control/chameleon_mf77.c +++ b/control/chameleon_mf77.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon Fortran77 interface for mixed-precision computational routines * - * @version 1.0.0 + * @version 1.2.0 * @author Bilel Hadri * @author Cedric Castagnede * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "control/common.h" diff --git a/control/chameleon_zcf90.F90 b/control/chameleon_zcf90.F90 index c5c577404db9dd69a22d9788d42afcdb68182e27..b57959832a3a88df974f4e78f174942b0f92d463 100644 --- a/control/chameleon_zcf90.F90 +++ b/control/chameleon_zcf90.F90 @@ -6,16 +6,16 @@ ! CHAMELEON is a software package provided by Univ. of Tennessee, ! Univ. of California Berkeley and Univ. of Colorado Denver ! -! @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +! @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, ! Univ. Bordeaux. All rights reserved. ! -! @version 1.0.0 +! @version 1.2.0 ! @author Numerical Algorithm Group ! @author Mathieu Faverge ! @author Emmanuel Agullo ! @author Cedric Castagnede ! @author Florent Pruvost -! @date 2020-03-03 +! @date 2022-02-22 ! @precisions mixed zc -> ds ! ! -- Inria diff --git a/control/chameleon_zf77.c b/control/chameleon_zf77.c index 611740889f56b5751fd7f9dea3f46a36661eb10b..717548e3102c1283c689f4434d627c915d291fcb 100644 --- a/control/chameleon_zf77.c +++ b/control/chameleon_zf77.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon Fortran77 computational routines * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @comment This file is automatically generated by tools/genf77interface.pl @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2021-03-17 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/control/chameleon_zf90.F90 b/control/chameleon_zf90.F90 index 76c57161b0506b2dd06d5c8785a06a365c558d31..93c61b0fd1cb570d2824ab7fb539a71c120fa993 100644 --- a/control/chameleon_zf90.F90 +++ b/control/chameleon_zf90.F90 @@ -6,16 +6,16 @@ ! CHAMELEON is a software package provided by Univ. of Tennessee, ! Univ. of California Berkeley and Univ. of Colorado Denver ! -! @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +! @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, ! Univ. Bordeaux. All rights reserved. ! -! @version 1.1.0 +! @version 1.2.0 ! @author Numerical Algorithm Group ! @author Mathieu Faverge ! @author Emmanuel Agullo ! @author Cedric Castagnede ! @author Florent Pruvost -! @date 2021-03-17 +! @date 2022-02-22 ! @precisions normal z -> c d s ! ! -- Inria diff --git a/control/chameleon_zf90_wrappers.F90 b/control/chameleon_zf90_wrappers.F90 index 617ee5610a92071c8334c359fe166bb67606cf9d..3988d8dc6e411c10642895076fb42e7a34d1ff98 100644 --- a/control/chameleon_zf90_wrappers.F90 +++ b/control/chameleon_zf90_wrappers.F90 @@ -6,16 +6,16 @@ ! CHAMELEON is a software package provided by Univ. of Tennessee, ! Univ. of California Berkeley and Univ. of Colorado Denver ! -! @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +! @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, ! Univ. Bordeaux. All rights reserved. ! -! @version 1.0.0 +! @version 1.2.0 ! @author Numerical Algorithm Group ! @author Mathieu Faverge ! @author Emmanuel Agullo ! @author Cedric Castagnede ! @author Florent Pruvost -! @date 2020-03-03 +! @date 2022-02-22 ! @precisions normal z -> c d s ! ! diff --git a/control/common.h b/control/common.h index 7eab1f417994b7910263d40e2e43e1d02455e8b0..85e696d1a3a4b8a3bd98e2a439cca159fc0fa68d 100644 --- a/control/common.h +++ b/control/common.h @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon common header file * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * */ /** diff --git a/control/compute_z.h b/control/compute_z.h index 0e3dc6ae213c42a1c2e9a40fee0724c671606895..71f5428c613e1fbc80b0511661fe1abd4489edef 100644 --- a/control/compute_z.h +++ b/control/compute_z.h @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon computational functions header * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2021-03-17 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/control/context.c b/control/context.c index cda18348a68d8c5b5164e601a0f719c2715282ce..52ffc195094b2b0126883071090df386f876317d 100644 --- a/control/context.c +++ b/control/context.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon context management routines * - * @version 1.1.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost * @author Guillaume Sylvand - * @date 2020-12-01 + * @date 2022-02-22 * *** * diff --git a/control/context.h b/control/context.h index e751bac46905a0f09121a81e69d3cde9ed01282c..566646885aa18b18edc9af2c1d728a6b2dfbc430 100644 --- a/control/context.h +++ b/control/context.h @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon context header * - * @version 1.0.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Cedric Augonnet * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _chameleon_context_h_ diff --git a/control/control.c b/control/control.c index b881661fe601f86f1a439897b9faf88af5884fbf..8193f9955dc40636828b8a92641dfb47ead17488 100644 --- a/control/control.c +++ b/control/control.c @@ -4,21 +4,22 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon control routines * - * @version 1.0.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost * @author Philippe Virouleau * @author Samuel Thibault - * @date 2020-03-03 + * @author Philippe Swartvagher + * @date 2022-02-22 * *** * diff --git a/control/descriptor.c b/control/descriptor.c index 0f3e9def70c48445e0b1dcd6863d40b9a042eb1b..b2666d2baa78291a63235a0c60b518ef696749ca 100644 --- a/control/descriptor.c +++ b/control/descriptor.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon descriptors routines * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost * @author Guillaume Sylvand * @author Raphael Boucherie * @author Samuel Thibault - * @date 2021-03-16 + * @date 2022-02-22 * *** * diff --git a/control/descriptor.h b/control/descriptor.h index dda8fa71906169a3dde202e670e27c6c1c70467b..42669511a0afcdc6b9e4b98b7a43042e05d5d84d 100644 --- a/control/descriptor.h +++ b/control/descriptor.h @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon descriptor header * - * @version 1.0.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Mathieu Faverge * @author Cedric Castagnede @@ -19,7 +19,7 @@ * @author Guillaume Sylvand * @author Raphael Boucherie * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _chameleon_descriptor_h_ diff --git a/control/descriptor_rec.c b/control/descriptor_rec.c index 333a4472a44bd5138f4284ca3246a229b32e8cf0..7c388eb9072c19e1e3cbeb6749c5436491ad8b99 100644 --- a/control/descriptor_rec.c +++ b/control/descriptor_rec.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon descriptors routines * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Gwenole Lucas - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "control/common.h" diff --git a/control/gkkleader.h b/control/gkkleader.h index 9abd747a21c9c280cbfb52f34dc3dd2a454e95d5..1e3774016d2af73f838aaecd6f46da23567dd810 100644 --- a/control/gkkleader.h +++ b/control/gkkleader.h @@ -4,16 +4,16 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon InPlaceTransformation main module header - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * * This work is the implementation of an inplace transformation * based on the GKK algorithm by Gustavson, Karlsson, Kagstrom diff --git a/control/global.h b/control/global.h index 058cc42ee8259d75d725f55a57dcf0bc7a18c339..4f093cd0b6c02a7d676739f3cf884ada1732c97a 100644 --- a/control/global.h +++ b/control/global.h @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon global variables header * - * @version 1.0.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Piotr Luszczek * @author Cedric Castagnede * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ /** diff --git a/control/primes.h b/control/primes.h index 92a2e7c2a521543cfb66ee52744bc1b38e96e5f0..7af0e88aa0de33c54dba5da2890ab0cbca172c5e 100644 --- a/control/primes.h +++ b/control/primes.h @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon InPlaceTransformation prime numbers module header - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * * This work is the implementation of an inplace transformation * based on the GKK algorithm by Gustavson, Karlsson, Kagstrom diff --git a/control/tile.c b/control/tile.c index 2cb446643fdb123486a0501740c25ba31d788bf4..27de8841bfc344bd86cb936f885a24e49d2d316a 100644 --- a/control/tile.c +++ b/control/tile.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon layout conversion wrappers * - * @version 1.1.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Cedric Castagnede * @author Florent Pruvost * @author Guillaume Sylvand * @author Mathieu Faverge - * @date 2020-03-12 + * @date 2022-02-22 * *** * diff --git a/control/workspace.c b/control/workspace.c index 28581d42bd7bf571168ac03bcbbf8e257f702ef2..568519361e64426578229b91b05bf994820a1107 100644 --- a/control/workspace.c +++ b/control/workspace.c @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon workspace routines * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * *** * diff --git a/control/workspace.h b/control/workspace.h index b5af241116f3d855ecaeff6ac22749d22922b5e1..c12d01bb71616b722a342d9b24f90459f30e0de4 100644 --- a/control/workspace.h +++ b/control/workspace.h @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon workspace header * - * @version 1.0.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Cedric Castagnede * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _chameleon_workspace_h_ diff --git a/control/workspace_z.c b/control/workspace_z.c index f122a2a512dff0d4b6e999ff593c95238191b849..75963d7995512e81e120b86602cee712d0aaaac4 100644 --- a/control/workspace_z.c +++ b/control/workspace_z.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon precision dependent workspace routines * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -21,7 +21,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/CMakeLists.txt b/coreblas/CMakeLists.txt index 9b660293997dede6e9ee6da546760a6ae3a2db5f..eb93d51258eb67f0c1c66bb8511b68317356f0a6 100644 --- a/coreblas/CMakeLists.txt +++ b/coreblas/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,12 +17,12 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.0.0 +# @version 1.2.0 # @author Cedric Castagnede # @author Emmanuel Agullo # @author Mathieu Faverge # @author Florent Pruvost -# @date 2020-03-03 +# @date 2022-02-22 # ### diff --git a/coreblas/compute/CMakeLists.txt b/coreblas/compute/CMakeLists.txt index 108dd249e32d8f777584fb28baf63c49e4402088..dc2aac9e239f0d7136f548016105225de76a72c8 100644 --- a/coreblas/compute/CMakeLists.txt +++ b/coreblas/compute/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,13 +17,13 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 +# @version 1.2.0 # @author Cedric Castagnede # @author Emmanuel Agullo # @author Mathieu Faverge # @author Florent Pruvost # @author Guillaume Sylvand -# @date 2021-01-11 +# @date 2022-02-22 # ### diff --git a/coreblas/compute/core_dlag2z.c b/coreblas/compute/core_dlag2z.c index 8ccfdc9f5c47cf68c907078f356556921dc7af40..78be93ba6ce3e0a5c58b83277eac463a4e709f6f 100644 --- a/coreblas/compute/core_dlag2z.c +++ b/coreblas/compute/core_dlag2z.c @@ -4,16 +4,16 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_dlag2z CPU kernel * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-10-12 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/coreblas/compute/core_dzasum.c b/coreblas/compute/core_dzasum.c index 711a05dd7069066e47cbb7945a1b0fef2a06bda1..1b9f19d648dc6e307cfd564a32c8f23bd07d6774 100644 --- a/coreblas/compute/core_dzasum.c +++ b/coreblas/compute/core_dzasum.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_dzasum CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zaxpy.c b/coreblas/compute/core_zaxpy.c index d1721bf4654e15b999ae8753fcf4b0d5d4a01b7e..dea53f512ee79c20b6c4170a530a2da6bf767879 100644 --- a/coreblas/compute/core_zaxpy.c +++ b/coreblas/compute/core_zaxpy.c @@ -4,15 +4,15 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zcesca.c b/coreblas/compute/core_zcesca.c index 3f81f42700876a90c0410667004497202634b90a..4c363ce16e982321241447b3436be991c1e19b50 100644 --- a/coreblas/compute/core_zcesca.c +++ b/coreblas/compute/core_zcesca.c @@ -2,16 +2,16 @@ * * @file core_zcesca.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zcesca CPU kernel * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost - * @date 2021-05-07 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zgeadd.c b/coreblas/compute/core_zgeadd.c index c71714a63c4ba24957293f7f3a9f2b70caf50dfb..9d6df21c3bd3a8d13b3a1168252270d588971dcd 100644 --- a/coreblas/compute/core_zgeadd.c +++ b/coreblas/compute/core_zgeadd.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zgeadd CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zgelqt.c b/coreblas/compute/core_zgelqt.c index 1735142ea9c6d1318432a9ed5518d78a17c3b792..421a0ef94a6f177b234d313e36ef978a613495a2 100644 --- a/coreblas/compute/core_zgelqt.c +++ b/coreblas/compute/core_zgelqt.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zgelqt CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zgemm.c b/coreblas/compute/core_zgemm.c index bba2ebf1eec6c252b09347d7c72fd7aec00eb610..589c486f0b4459cf0320bd67c2dde1a6b27e0bf5 100644 --- a/coreblas/compute/core_zgemm.c +++ b/coreblas/compute/core_zgemm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zgemm CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -21,7 +21,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Guillaume Sylvand - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zgemv.c b/coreblas/compute/core_zgemv.c index 0230f7ecffcc82d7d409d82c2f088b37b724d905..6a8f0404e8b75aa095780b56884e49aef1b0e073 100644 --- a/coreblas/compute/core_zgemv.c +++ b/coreblas/compute/core_zgemv.c @@ -4,16 +4,16 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zgemv CPU kernel * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-10-12 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zgeqrt.c b/coreblas/compute/core_zgeqrt.c index e914701edd312c950d13761510b3725b1ef6d5d9..a28f47bb395c4b97bb0457a013fff6ab099a2a22 100644 --- a/coreblas/compute/core_zgeqrt.c +++ b/coreblas/compute/core_zgeqrt.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zgeqrt CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zgesplit.c b/coreblas/compute/core_zgesplit.c index ddf84e3a5cd5581bebac063cbe73804c14189286..517dd28739822eb614970a95443f78cfcca6a273 100644 --- a/coreblas/compute/core_zgesplit.c +++ b/coreblas/compute/core_zgesplit.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zgesplit CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zgessm.c b/coreblas/compute/core_zgessm.c index 0243b3f565785dc46a439cea1e2684132d51eb83..476701dbca77b58df2a72b25284be9da176f7deb 100644 --- a/coreblas/compute/core_zgessm.c +++ b/coreblas/compute/core_zgessm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zgessm CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zgessq.c b/coreblas/compute/core_zgessq.c index d704db932d0ae3b20d4801281644b38d35f9f39b..f205996b0877d0672be46054d927f504002aee3c 100644 --- a/coreblas/compute/core_zgessq.c +++ b/coreblas/compute/core_zgessq.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zgessq CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zgesum.c b/coreblas/compute/core_zgesum.c index 0f6aac2fbfab1d63e3f2082a9bd2e048d3c6a5e4..3c9839d446679d78e498470ba70968834e16906a 100644 --- a/coreblas/compute/core_zgesum.c +++ b/coreblas/compute/core_zgesum.c @@ -2,16 +2,17 @@ * * @file core_zgesum.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zgesum CPU kernel * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost - * @date 2021-05-07 + * @author Philippe Swartvagher + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zgetf2_nopiv.c b/coreblas/compute/core_zgetf2_nopiv.c index 7254d2502194cd22c979d46d9f581b1b23937d8e..3f3c14ec490d24d90877dd96de66df8c0b1dc9f0 100644 --- a/coreblas/compute/core_zgetf2_nopiv.c +++ b/coreblas/compute/core_zgetf2_nopiv.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zgetf2_nopiv CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Omar Zenati * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zgetrf.c b/coreblas/compute/core_zgetrf.c index a7d4a04579385d22a3e826e9a3d43f7d88cd6324..1fc1d9e3952106c444e190ef8541341b75d5c45f 100644 --- a/coreblas/compute/core_zgetrf.c +++ b/coreblas/compute/core_zgetrf.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zgetrf CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zgetrf_incpiv.c b/coreblas/compute/core_zgetrf_incpiv.c index 38fb81b5ba7fad17b6e8fdec0795f1bc90a4aec9..dd9b32b4f62d2d297b5ae1df966f0a0bc0209697 100644 --- a/coreblas/compute/core_zgetrf_incpiv.c +++ b/coreblas/compute/core_zgetrf_incpiv.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zgetrf_incpiv CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zgetrf_nopiv.c b/coreblas/compute/core_zgetrf_nopiv.c index 587c003b6bb5ba0afc24a41b6c366cc6c6561c9b..a1a4439567949543a52d127089143ad19aaffb94 100644 --- a/coreblas/compute/core_zgetrf_nopiv.c +++ b/coreblas/compute/core_zgetrf_nopiv.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zgetrf_nopiv CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Omar Zenati * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zgram.c b/coreblas/compute/core_zgram.c index 4d89735b33676b83f9346c0d0b5e0a39bbf1f333..d57638ecfe4e4e1592b640709f3760b4a6dbc3a5 100644 --- a/coreblas/compute/core_zgram.c +++ b/coreblas/compute/core_zgram.c @@ -2,17 +2,17 @@ * * @file core_zgram.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zgram CPU kernel * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-27 + * @date 2022-02-22 * @precisions normal z -> s d c z * */ diff --git a/coreblas/compute/core_zhe2ge.c b/coreblas/compute/core_zhe2ge.c index 110df71a3f6b2d9e9c52a7451a38043a543ca444..30fb9e9976664fb991a2e51bbdbb3ab9b5ddad6f 100644 --- a/coreblas/compute/core_zhe2ge.c +++ b/coreblas/compute/core_zhe2ge.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zhe2ge CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Julien Langou @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zhemm.c b/coreblas/compute/core_zhemm.c index e1a495d28c9933202dc3e6d3a5c96c7624796980..728e9546daf2b1e49e4efd21b96af27bae7d3de2 100644 --- a/coreblas/compute/core_zhemm.c +++ b/coreblas/compute/core_zhemm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zhemm CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/coreblas/compute/core_zher2k.c b/coreblas/compute/core_zher2k.c index c7a1486131e4f7c3fc630893e1f5d977dc9b6c3d..c921400655ba9e77ca1139d3acaf4487a41d7eba 100644 --- a/coreblas/compute/core_zher2k.c +++ b/coreblas/compute/core_zher2k.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zher2k CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/coreblas/compute/core_zherfb.c b/coreblas/compute/core_zherfb.c index 78e9ad009da66c605040ccc6e57a7cba6ec2bc11..387893dea94b1d2cebedf13c6c0d0be7019dc8f2 100644 --- a/coreblas/compute/core_zherfb.c +++ b/coreblas/compute/core_zherfb.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zherfb CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zherk.c b/coreblas/compute/core_zherk.c index 816c457ef9aeb2cf77da42f5a4add49fb1ec6063..3c709c80d34b8c9b5959a3951ba7c32e70bbfdc5 100644 --- a/coreblas/compute/core_zherk.c +++ b/coreblas/compute/core_zherk.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zherk CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/coreblas/compute/core_zhessq.c b/coreblas/compute/core_zhessq.c index 9484697d17d23eef16ff32aaf1ea07772ff7b15a..d7df08a87a0718cbd1b77068a8b8560145f9e0c4 100644 --- a/coreblas/compute/core_zhessq.c +++ b/coreblas/compute/core_zhessq.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zhessq CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/coreblas/compute/core_zlacpy.c b/coreblas/compute/core_zlacpy.c index d82072ff87372d5313ed174b6bf362d61b48f946..98f8cba9a1494447b7c20e2d6b88f2cc6e1bb030 100644 --- a/coreblas/compute/core_zlacpy.c +++ b/coreblas/compute/core_zlacpy.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zlacpy CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Julien Langou @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zlag2c.c b/coreblas/compute/core_zlag2c.c index 75724f158f49947182dcc586b7375973923dcd54..aeff9de3871828fc788f7284b99a45bb15241016 100644 --- a/coreblas/compute/core_zlag2c.c +++ b/coreblas/compute/core_zlag2c.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zlag2c CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions mixed zc -> ds * */ diff --git a/coreblas/compute/core_zlange.c b/coreblas/compute/core_zlange.c index 88a41d633997a58475b9914ee7beadc0169daa9f..4b6d78bca75c38138efdbe3774c8e9a41e3b3df6 100644 --- a/coreblas/compute/core_zlange.c +++ b/coreblas/compute/core_zlange.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zlange CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Julien Langou * @author Henricus Bouwmeester * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zlanhe.c b/coreblas/compute/core_zlanhe.c index 66dd262033caf2bc5b4680c339dc08935a663a8c..5548a63c57285f214bc282313ab1478ced68bb39 100644 --- a/coreblas/compute/core_zlanhe.c +++ b/coreblas/compute/core_zlanhe.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zlanhe CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Julien Langou * @author Henricus Bouwmeester * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/coreblas/compute/core_zlansy.c b/coreblas/compute/core_zlansy.c index 21b4a0898df74c59b86d788b706c48674d99e02c..0f00b00c5fec72c19c26fdfc152be923aaa5ff4b 100644 --- a/coreblas/compute/core_zlansy.c +++ b/coreblas/compute/core_zlansy.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zlansy CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Julien Langou * @author Henricus Bouwmeester * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zlantr.c b/coreblas/compute/core_zlantr.c index b4a55ac074f28a665e765da036cbb4ecc9f7c4ed..6b6808a0e8557d8d48488e42c6f8f28f25a63ce3 100644 --- a/coreblas/compute/core_zlantr.c +++ b/coreblas/compute/core_zlantr.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zlantr CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zlascal.c b/coreblas/compute/core_zlascal.c index 7ce4ddabd06f812ef0af0bd4f9dd71376c75c496..d97162b398190e7597c765cec9d56fc140c6555b 100644 --- a/coreblas/compute/core_zlascal.c +++ b/coreblas/compute/core_zlascal.c @@ -4,7 +4,7 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2016-2018 KAUST. All rights reserved. * @@ -12,10 +12,10 @@ * * @brief Chameleon core_zlascal CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Dalal Sukkari * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zlaset.c b/coreblas/compute/core_zlaset.c index 8f7b5f4fa6477be291428aa45c6792cf6658bbb0..60960feefa460e894979149b7464005e08de3970 100644 --- a/coreblas/compute/core_zlaset.c +++ b/coreblas/compute/core_zlaset.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zlaset CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zlaset2.c b/coreblas/compute/core_zlaset2.c index d566067abcac1e452c10d59a97c86d394603cb53..90d2713e36f75abe1c098fdf14626b2de92d7f25 100644 --- a/coreblas/compute/core_zlaset2.c +++ b/coreblas/compute/core_zlaset2.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zlaset2 CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zlatm1.c b/coreblas/compute/core_zlatm1.c index 1d79237c36c0b49035f8bc09966b89200c41ad1c..9c59b531c73584782cf24af448e3838feb5f6471 100644 --- a/coreblas/compute/core_zlatm1.c +++ b/coreblas/compute/core_zlatm1.c @@ -4,17 +4,17 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_dlatm1 CPU kernel * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Mathieu Faverge - * @date 2020-11-19 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zlatro.c b/coreblas/compute/core_zlatro.c index 759c266ec43146b8406767e15891aba6475f64ef..73d00c72f9b111aa4ed98f9915b5bcc4a80f2a9f 100644 --- a/coreblas/compute/core_zlatro.c +++ b/coreblas/compute/core_zlatro.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zlatro CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Azzam Haidar * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zlauum.c b/coreblas/compute/core_zlauum.c index 8201b2a93df7fbc8e64dc6b7eadf46cc2db10353..76dde7c9a8c68701b3d1770086fb47d235d785a1 100644 --- a/coreblas/compute/core_zlauum.c +++ b/coreblas/compute/core_zlauum.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zlauum CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Julien Langou @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zpamm.c b/coreblas/compute/core_zpamm.c index 5223ec9227219ea468b2787361ef9e26963791d0..f3b9d3aa429b7299c6427cb79a7a7fb331fae276 100644 --- a/coreblas/compute/core_zpamm.c +++ b/coreblas/compute/core_zpamm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zpamm CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Dulceneia Becker @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zparfb.c b/coreblas/compute/core_zparfb.c index 3694e2a7f18cb06d825afd6f84cb75cd6c924165..de9756506e88cd00975d30d3714c2cd881c3e6e1 100644 --- a/coreblas/compute/core_zparfb.c +++ b/coreblas/compute/core_zparfb.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zparfb CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Dulceneia Becker @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zpemv.c b/coreblas/compute/core_zpemv.c index 646cf1b3960502bd301482dbdf8f53879670d8c5..7999e6634a74027bca6e2a67f3caf54dc73636d3 100644 --- a/coreblas/compute/core_zpemv.c +++ b/coreblas/compute/core_zpemv.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zpemv CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Dulceneia Becker @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zplghe.c b/coreblas/compute/core_zplghe.c index 6e1afeb14c34c16de237d56514340148762778ba..63827e207f16d5c809cebbcf36d8b92b7552254d 100644 --- a/coreblas/compute/core_zplghe.c +++ b/coreblas/compute/core_zplghe.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zplghe CPU kernel * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Piotr Luszczek @@ -21,7 +21,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Guillaume Sylvand - * @date 2020-10-10 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/coreblas/compute/core_zplgsy.c b/coreblas/compute/core_zplgsy.c index db3109910f81912fe620fa8d742122c006660f23..0be4e547ee03ac2dc0585a05aea5d7242186d949 100644 --- a/coreblas/compute/core_zplgsy.c +++ b/coreblas/compute/core_zplgsy.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zplgsy CPU kernel * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Piotr Luszczek @@ -21,7 +21,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Guillaume Sylvand - * @date 2020-10-10 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zplrnt.c b/coreblas/compute/core_zplrnt.c index d757e096508b08502be48342cc024534e16e0ed3..f3f3b506a51cfee630a7bd1c4b56da8694a287a8 100644 --- a/coreblas/compute/core_zplrnt.c +++ b/coreblas/compute/core_zplrnt.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zplrnt CPU kernel * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Piotr Luszczek @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-10-10 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zplssq.c b/coreblas/compute/core_zplssq.c index f72fc7635c969b843803f24350de9e0bd80f1bf4..f100a4af2ce8b493d6c1bdb34157d0dea70e2c32 100644 --- a/coreblas/compute/core_zplssq.c +++ b/coreblas/compute/core_zplssq.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zplssq CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zpotrf.c b/coreblas/compute/core_zpotrf.c index 4832b7174a5752a18118da3be7e39bd9e1fc3d28..c854fcbb63c249ced540f7d4049f271ccf30982b 100644 --- a/coreblas/compute/core_zpotrf.c +++ b/coreblas/compute/core_zpotrf.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zpotrf CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zssssm.c b/coreblas/compute/core_zssssm.c index 07a49965c3dadcb79e5a63196bc0de61cda574be..b579d3f3f94eafc56847aa9179dfca7a90bfbb17 100644 --- a/coreblas/compute/core_zssssm.c +++ b/coreblas/compute/core_zssssm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zssssm CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zsymm.c b/coreblas/compute/core_zsymm.c index 06c0287d580fe77a5114acd1d37db5446d25b6e9..5fec36f94a6b351d0107c37369a4a7dcaf509ca7 100644 --- a/coreblas/compute/core_zsymm.c +++ b/coreblas/compute/core_zsymm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zsymm CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zsyr2k.c b/coreblas/compute/core_zsyr2k.c index 9881daebc670402a827115da29150b44049388ab..4e25463f3e4b5a6f5b7414fc4847dc3ef7141a39 100644 --- a/coreblas/compute/core_zsyr2k.c +++ b/coreblas/compute/core_zsyr2k.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zsyr2k CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zsyrk.c b/coreblas/compute/core_zsyrk.c index 5fd212e58f04dd8b5b3330cb38137c0c76ad499f..53baf3f0b01cba41c3688a6a9da418da4958b60d 100644 --- a/coreblas/compute/core_zsyrk.c +++ b/coreblas/compute/core_zsyrk.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zsyrk CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zsyssq.c b/coreblas/compute/core_zsyssq.c index 6b85714551214d14005b903a21ba1463ca3c732d..e2fc1248b9585810ece09377deae01f1cb57d6d4 100644 --- a/coreblas/compute/core_zsyssq.c +++ b/coreblas/compute/core_zsyssq.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zsyssq CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zsytf2_nopiv.c b/coreblas/compute/core_zsytf2_nopiv.c index 60e9542f3f9304f301540db4623e9c30ad53a1ba..254771cfee2ad48a6a62aa9a203c8193f2cecd87 100644 --- a/coreblas/compute/core_zsytf2_nopiv.c +++ b/coreblas/compute/core_zsytf2_nopiv.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zsytf2_nopiv CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -21,7 +21,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Marc Sergent - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/coreblas/compute/core_ztile.c b/coreblas/compute/core_ztile.c index 31b1ee49599e53f619e206c164677c066499a18b..40af52744e74444a23d6d4505df24c61af0d5a9b 100644 --- a/coreblas/compute/core_ztile.c +++ b/coreblas/compute/core_ztile.c @@ -4,14 +4,15 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @brief Chameleon CPU kernel interface from CHAM_tile_t layout to the real one. * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2021-03-16 + * @author Florent Pruvost + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztile_empty.c b/coreblas/compute/core_ztile_empty.c index ee7a4a3fc94b0c8ef0999ad97c3c89d70c17db44..90bfbd3e2c5ce5838ff97b6a28fd8333d389c2c7 100644 --- a/coreblas/compute/core_ztile_empty.c +++ b/coreblas/compute/core_ztile_empty.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @brief Chameleon CPU kernel interface from CHAM_tile_t layout to the real one. * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2021-03-16 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztplqt.c b/coreblas/compute/core_ztplqt.c index 0fdee6d7afeb8570db95c9608886ece3d7f91735..bd849a007d149393ca6674d0e17c22a5fb31999c 100644 --- a/coreblas/compute/core_ztplqt.c +++ b/coreblas/compute/core_ztplqt.c @@ -4,16 +4,16 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_ztplqt CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztpmlqt.c b/coreblas/compute/core_ztpmlqt.c index 480b0d9a3767eeea940e396a73dfc534fd19cc56..89220d3efe699e8decf7f496de83fe035ef2a7bd 100644 --- a/coreblas/compute/core_ztpmlqt.c +++ b/coreblas/compute/core_ztpmlqt.c @@ -4,16 +4,16 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_ztpmlqt CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztpmqrt.c b/coreblas/compute/core_ztpmqrt.c index 4e5fc32e93040b6af98f15ed45e2b6a4f9a18756..96ae22cc3fc5775dce66f93fb9225b76d0095037 100644 --- a/coreblas/compute/core_ztpmqrt.c +++ b/coreblas/compute/core_ztpmqrt.c @@ -4,16 +4,16 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_ztpmqrt CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztpqrt.c b/coreblas/compute/core_ztpqrt.c index 01823b47355ec26582d87fd54a45d0e9015a2379..fa3d5f700b8177de0146d97a0ba0904239b13428 100644 --- a/coreblas/compute/core_ztpqrt.c +++ b/coreblas/compute/core_ztpqrt.c @@ -4,16 +4,16 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_ztpqrt CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztradd.c b/coreblas/compute/core_ztradd.c index 6eae1f75b3d9ffa6ba7ccbfc00fcfc10e1de2c48..6c32d33237e0e418024ced1a323416c8df7c2a30 100644 --- a/coreblas/compute/core_ztradd.c +++ b/coreblas/compute/core_ztradd.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_ztradd CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztrasm.c b/coreblas/compute/core_ztrasm.c index ce8c9a3ca5649d42610c73b0d705bc60b2088761..2c89c76152adf7a977584003e49e2aee5459619f 100644 --- a/coreblas/compute/core_ztrasm.c +++ b/coreblas/compute/core_ztrasm.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_ztrasm CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztrmm.c b/coreblas/compute/core_ztrmm.c index 3bbb83af35cf7f0ef1f37bf1d09a38329e61d113..539460bfee36b04e84dc1752f715513b9a797073 100644 --- a/coreblas/compute/core_ztrmm.c +++ b/coreblas/compute/core_ztrmm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_ztrmm CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Julien Langou @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztrsm.c b/coreblas/compute/core_ztrsm.c index fb5e0eaab07f22cfd9fd75dd7965c3b44b6440e5..c41dbba8473442c408f8fcd3cfdad0d0249e42af 100644 --- a/coreblas/compute/core_ztrsm.c +++ b/coreblas/compute/core_ztrsm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_ztrsm CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztrssq.c b/coreblas/compute/core_ztrssq.c index 78ee33b95e27a50abd01e5181e657f241e0bafe5..c23aa9ea3a970b85d7d57e89e33702a38683f694 100644 --- a/coreblas/compute/core_ztrssq.c +++ b/coreblas/compute/core_ztrssq.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_ztrssq CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztrtri.c b/coreblas/compute/core_ztrtri.c index 41a818cb9afed25686c689a1bf6f093bf80d51f9..7608931532ded5b5eda50b01fa6acbd5755dd035 100644 --- a/coreblas/compute/core_ztrtri.c +++ b/coreblas/compute/core_ztrtri.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_ztrtri CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Julien Langou @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztslqt.c b/coreblas/compute/core_ztslqt.c index 5e929e00bb9a8c8d822801421159b1bdc6e08c78..da4007d80effcc749f8c5b40aa5d8e2e4f1eab41 100644 --- a/coreblas/compute/core_ztslqt.c +++ b/coreblas/compute/core_ztslqt.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_ztslqt CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztsmlq.c b/coreblas/compute/core_ztsmlq.c index 5dad9ce3572263faae6f80e293aacd82d4c57487..c3118a5594c2050ac8db2711748d58292635a108 100644 --- a/coreblas/compute/core_ztsmlq.c +++ b/coreblas/compute/core_ztsmlq.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_ztsmlq CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -22,7 +22,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztsmlq_hetra1.c b/coreblas/compute/core_ztsmlq_hetra1.c index 55206e6aa4e1b90f7b7ee8ab345786d34700cf28..14e6f61dbaeda86078c0c9f86e53a914f118a551 100644 --- a/coreblas/compute/core_ztsmlq_hetra1.c +++ b/coreblas/compute/core_ztsmlq_hetra1.c @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_ztsmlq_hetra1 CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Mathieu Faverge * @author Azzam Haidar - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztsmqr.c b/coreblas/compute/core_ztsmqr.c index 5327115d57d98ee3d8212b5e4dc7ae500af38862..8ba326b76382a34ae7f625b6f152f639c92a7af8 100644 --- a/coreblas/compute/core_ztsmqr.c +++ b/coreblas/compute/core_ztsmqr.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_ztsmqr CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -22,7 +22,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztsmqr_hetra1.c b/coreblas/compute/core_ztsmqr_hetra1.c index 42205b619c08ff82f639d1015fe6c754d8a9cdf7..793f84f90f667851f510849f2d6c96afc8139c7b 100644 --- a/coreblas/compute/core_ztsmqr_hetra1.c +++ b/coreblas/compute/core_ztsmqr_hetra1.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_ztsmqr_hetra1 CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Mathieu Faverge * @author Jakub Kurzak * @author Azzam Haidar - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztsqrt.c b/coreblas/compute/core_ztsqrt.c index 6a8f5d8be2e0835952428d9a86aff2b07ef8f6c8..6124f2872a57bef7ae45997cedca98170f3f1f57 100644 --- a/coreblas/compute/core_ztsqrt.c +++ b/coreblas/compute/core_ztsqrt.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_ztsqrt CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_ztstrf.c b/coreblas/compute/core_ztstrf.c index cf7c94935c996b55461ce6b893208bbdaee21b1c..05c89a0fb4ffe0da4fea262b2d88135283bcf9ec 100644 --- a/coreblas/compute/core_ztstrf.c +++ b/coreblas/compute/core_ztstrf.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_ztstrf CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zttlqt.c b/coreblas/compute/core_zttlqt.c index 0e09a7a3a413012465c6fe431d27f6cf9d213cb2..8a31b76b29b7829ad65b8c88cbf5f13e1e6bdba7 100644 --- a/coreblas/compute/core_zttlqt.c +++ b/coreblas/compute/core_zttlqt.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zttlqt CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zttmlq.c b/coreblas/compute/core_zttmlq.c index 27e68360c120e4651e313939df7c5d5a6af84cc6..dcd962c008cf2178401916a36bd3ef244d2b32bd 100644 --- a/coreblas/compute/core_zttmlq.c +++ b/coreblas/compute/core_zttmlq.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zttmlq CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zttmqr.c b/coreblas/compute/core_zttmqr.c index 69e33c16c31187368ac35b384f1b9f0c70511370..4770c22c069cc1f764db0a0b8c97a0b94d2f0456 100644 --- a/coreblas/compute/core_zttmqr.c +++ b/coreblas/compute/core_zttmqr.c @@ -4,13 +4,13 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. *** * * @brief Chameleon core_zttmqr CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zttqrt.c b/coreblas/compute/core_zttqrt.c index 78ac5a9c38af159cec71aba7d36b4c5492f217f5..a3f89d01757450e26e41a012d5008e5e3ec54909 100644 --- a/coreblas/compute/core_zttqrt.c +++ b/coreblas/compute/core_zttqrt.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zttqrt CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zunmlq.c b/coreblas/compute/core_zunmlq.c index 7fb9b5341f9d10d421e88fc3cf42443deb0b8bc3..453cb1b0d37cb61b093b7abb23b0acd24e069204 100644 --- a/coreblas/compute/core_zunmlq.c +++ b/coreblas/compute/core_zunmlq.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_zunmlq CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -21,7 +21,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/core_zunmqr.c b/coreblas/compute/core_zunmqr.c index 542332b3591df61910d6315b05a2c681562104b1..8e9cb64a2433c1a3421a33b010deb66f4cfa2aa7 100644 --- a/coreblas/compute/core_zunmqr.c +++ b/coreblas/compute/core_zunmqr.c @@ -4,7 +4,7 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * */ @@ -12,7 +12,7 @@ * * @brief Chameleon core_zunmqr CPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -21,7 +21,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/compute/global.c b/coreblas/compute/global.c index e992acfd3c465589084dac5e47b36d437a90fc0c..e08888e0d66482d80d025aefa789e1d453ab54e6 100644 --- a/coreblas/compute/global.c +++ b/coreblas/compute/global.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon global coreblas variables and functions * - * @version 1.0.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Piotr Luszczek * @author Florent Pruvost * @author Guillaume Sylvand * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "coreblas.h" diff --git a/coreblas/compute/hmat_z.c b/coreblas/compute/hmat_z.c index aa7f0d219fd206fa40d6fc2502d8945d12bd2766..a3db67d267eb3f5da8f01a436dd90933428deb66 100644 --- a/coreblas/compute/hmat_z.c +++ b/coreblas/compute/hmat_z.c @@ -2,16 +2,16 @@ * * @file hmat_z.c * - * @copyright 2019-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2019-2019 Universidad Jaume I. All rights reserved. * * @brief Chameleon interface for H-Mat kernels * - * @version 1.0.0 + * @version 1.2.0 * @author Rocio Carratala-Saez * @author Mathieu Faverge - * @date 2019-12-02 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/eztrace_module/CMakeLists.txt b/coreblas/eztrace_module/CMakeLists.txt index 083ff4f9ac13029f19c033b695cb378db0a27fd8..02d56b24058c3ac750a7289612fbda2270391b33 100644 --- a/coreblas/eztrace_module/CMakeLists.txt +++ b/coreblas/eztrace_module/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,10 +17,10 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.0.0 +# @version 1.2.0 # @author Florent Pruvost # @author Mathieu Faverge -# @date 2020-03-03 +# @date 2022-02-22 # ### diff --git a/coreblas/include/CMakeLists.txt b/coreblas/include/CMakeLists.txt index 30f7ad411e5212aff837151d20d072db44a08033..a29218b73f207019446cb1b8cbbe819c53743521 100644 --- a/coreblas/include/CMakeLists.txt +++ b/coreblas/include/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,12 +17,12 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 +# @version 1.2.0 # @author Cedric Castagnede # @author Emmanuel Agullo # @author Mathieu Faverge # @author Florent Pruvost -# @date 2020-10-10 +# @date 2022-02-22 # ### diff --git a/coreblas/include/coreblas.h b/coreblas/include/coreblas.h index 771f7856e69abe062fe5c4b3e627a90b109f3b49..50a31094db4cf663eb6d6e4364f9d0b0dbc0631a 100644 --- a/coreblas/include/coreblas.h +++ b/coreblas/include/coreblas.h @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon CPU kernels main header * - * @version 1.0.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Hatem Ltaief * @author Florent Pruvost * @author Guillaume Sylvand * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _coreblas_h_ diff --git a/coreblas/include/coreblas/cblas.h b/coreblas/include/coreblas/cblas.h index 4e81ab4a71e44e23b735c1e7fbad7173521b98aa..9949394ab2d1c001b34ab94b9cbcc38e05b11de3 100644 --- a/coreblas/include/coreblas/cblas.h +++ b/coreblas/include/coreblas/cblas.h @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cblas header * - * @version 1.0.0 + * @version 1.2.0 * @author Cedric Castagnede * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _cblas_h_ diff --git a/coreblas/include/coreblas/coreblas_z.h b/coreblas/include/coreblas/coreblas_z.h index 9637ba67b5d2bc56bd650346389bae1bb486d360..850df39fd2dd1345c35b74001591b2247a415835 100644 --- a/coreblas/include/coreblas/coreblas_z.h +++ b/coreblas/include/coreblas/coreblas_z.h @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon CPU CHAMELEON_Complex64_t kernels header * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -21,7 +21,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-10-12 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/include/coreblas/coreblas_zc.h b/coreblas/include/coreblas/coreblas_zc.h index 1b67496c8c1f714f8af2e8cd769976c55ce605f3..0e62bef4d60cd0eff9880d99e85c764d7da1f318 100644 --- a/coreblas/include/coreblas/coreblas_zc.h +++ b/coreblas/include/coreblas/coreblas_zc.h @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon CPU complex mixed precision kernels header * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions mixed zc -> ds * */ diff --git a/coreblas/include/coreblas/coreblas_ztile.h b/coreblas/include/coreblas/coreblas_ztile.h index 10d420339b4e39bbc34fae19d5cc349ed08b0f71..aefd6461b4d57107a48585ef697e7a14bfb625f0 100644 --- a/coreblas/include/coreblas/coreblas_ztile.h +++ b/coreblas/include/coreblas/coreblas_ztile.h @@ -2,14 +2,15 @@ * * @file coreblas_ztile.h * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800 ), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800 ), Inria, * Univ. Bordeaux. All rights reserved. * * @brief Chameleon CPU kernel CHAM_tile_t interface * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-10-12 + * @author Florent Pruvost + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/include/coreblas/hmat.h b/coreblas/include/coreblas/hmat.h index dabcea3b0e7a185aae5b69242a644b450cdddd8a..7725268a5a363a35029442e5ba8930d24f0e6e6e 100644 --- a/coreblas/include/coreblas/hmat.h +++ b/coreblas/include/coreblas/hmat.h @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon CPU hmat-oss function declaration * - * @version 0.9.2 + * @version 1.2.0 * @author Rocio Carratala-Saez * @author Mathieu Faverge - * @date 2019-12-02 + * @date 2022-02-22 * */ #ifndef _coreblas_hmat_h_ diff --git a/coreblas/include/coreblas/hmat_z.h b/coreblas/include/coreblas/hmat_z.h index b8d38928d6bf6c9596f82c7e8175ad01c01873b6..648dc5d48c61321c20f5ea81cda5c0fe6291136c 100644 --- a/coreblas/include/coreblas/hmat_z.h +++ b/coreblas/include/coreblas/hmat_z.h @@ -2,16 +2,16 @@ * * @file hmat_z.h * - * @copyright 2019-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2019-2019 Universidad Jaume I. All rights reserved. * * @brief Chameleon CPU kernel interface from CHAM_tile_t layout to the real one. * - * @version 1.0.0 + * @version 1.2.0 * @author Rocio Carratala-Saez * @author Mathieu Faverge - * @date 2019-12-02 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/coreblas/include/coreblas/lapacke_config.h b/coreblas/include/coreblas/lapacke_config.h index 3b4b1063666537ce64c3372500d3d89434be1fc4..c99993e76b9abf118a232dd15159ed3dd6e89fab 100644 --- a/coreblas/include/coreblas/lapacke_config.h +++ b/coreblas/include/coreblas/lapacke_config.h @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon lapacke configuration header * - * @version 1.0.0 + * @version 1.2.0 * */ /** diff --git a/coreblas/include/coreblas/lapacke_mangling.h b/coreblas/include/coreblas/lapacke_mangling.h index 408a6123d4c60c07bb05257968f4f525d61a17ea..b2fdfcc6aef135225eb7afe25c076021a18a094e 100644 --- a/coreblas/include/coreblas/lapacke_mangling.h +++ b/coreblas/include/coreblas/lapacke_mangling.h @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon lapacke mangling header * - * @version 1.0.0 + * @version 1.2.0 * */ #ifndef _lapacke_mangling_h_ diff --git a/coreblas/include/coreblas/random.h b/coreblas/include/coreblas/random.h index 3bf6d02a3a2f18c47e18ced1777cf99e8b7e9ad7..5e068da88fc3251ab90b2518c47204d745fc12d4 100644 --- a/coreblas/include/coreblas/random.h +++ b/coreblas/include/coreblas/random.h @@ -4,20 +4,23 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon coreblas random number generator * - * @version 1.1.0 + * @version 1.2.0 * @author Piotr Luszczek * @author Mathieu Faverge - * @date 2020-10-10 + * @date 2022-02-22 * @precisions normal z -> c d s * */ +#ifndef _chameleon_random_h_ +#define _chameleon_random_h_ + /* Rnd64seed is a global variable but it doesn't spoil thread safety. All matrix generating threads only read Rnd64seed. It is safe to set Rnd64seed before @@ -96,3 +99,5 @@ CORE_zlaran( unsigned long long int *ran ) return value; } + +#endif /* _chameleon_random_h_ */ diff --git a/coreblas/include/coreblas/sumsq_update.h b/coreblas/include/coreblas/sumsq_update.h index 9a6c37dc6a890d954db3e65b87f3357de9d21485..65c8bf3382d41bea456aa16ab2774c794e41e2be 100644 --- a/coreblas/include/coreblas/sumsq_update.h +++ b/coreblas/include/coreblas/sumsq_update.h @@ -2,17 +2,17 @@ * * @file sumsq_update.h * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon CPU auxiliary sumsq_update routine * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _sumsq_update_h_ diff --git a/cudablas/CMakeLists.txt b/cudablas/CMakeLists.txt index 91eeb09f45a6b22caf41d1aa3b1d611d7b8817ed..981d663c2d91d843fccfa83f908942fc86af0a5f 100644 --- a/cudablas/CMakeLists.txt +++ b/cudablas/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,12 +17,12 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.0.0 +# @version 1.2.0 # @author Cedric Castagnede # @author Emmanuel Agullo # @author Mathieu Faverge # @author Florent Pruvost -# @date 2020-03-03 +# @date 2022-02-22 # ### diff --git a/cudablas/compute/CMakeLists.txt b/cudablas/compute/CMakeLists.txt index a3473603668f5d755ff2a66ab28903304a786591..8e69bd9420b1e3864b3588059c550ca299d39e78 100644 --- a/cudablas/compute/CMakeLists.txt +++ b/cudablas/compute/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,11 +17,11 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 +# @version 1.2.0 # @author Florent Pruvost # @author Guillaume Sylvand # @author Mathieu Faverge -# @date 2021-01-11 +# @date 2022-02-22 # ### diff --git a/cudablas/compute/cuda_zgeadd.c b/cudablas/compute/cuda_zgeadd.c index 78ebaf077bb1004dda107384133da93044f2f263..5239d416cd4dd9dbbbd1273d99c0d8d2bef0a62a 100644 --- a/cudablas/compute/cuda_zgeadd.c +++ b/cudablas/compute/cuda_zgeadd.c @@ -4,16 +4,16 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zgeadd GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zgelqt.c b/cudablas/compute/cuda_zgelqt.c index 5b36a5f875db40f217f642c64763e9733bb7edd2..01f46b60dd16036f36e984f06d63fad91cb76209 100644 --- a/cudablas/compute/cuda_zgelqt.c +++ b/cudablas/compute/cuda_zgelqt.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zgelqt GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zgemerge.c b/cudablas/compute/cuda_zgemerge.c index de144f7904a9340683e0da4a7e2fb59d9d474319..1f64403d724bc14b2131cf8930bc45097c6afd08 100644 --- a/cudablas/compute/cuda_zgemerge.c +++ b/cudablas/compute/cuda_zgemerge.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zgemerge GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zgemm.c b/cudablas/compute/cuda_zgemm.c index 7a9da427a944164fe1b3537bd5191e7d2be88c51..e594502a0ac43821ad1b762c5371a8282e50b604 100644 --- a/cudablas/compute/cuda_zgemm.c +++ b/cudablas/compute/cuda_zgemm.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zgemm GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zgeqrt.c b/cudablas/compute/cuda_zgeqrt.c index d2d33026f7f290ab9d92b69de406d4a98d13c413..a1b30867ffce70dc3c26e04c857c351fdf44d01c 100644 --- a/cudablas/compute/cuda_zgeqrt.c +++ b/cudablas/compute/cuda_zgeqrt.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zgeqrt GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zgessm.c b/cudablas/compute/cuda_zgessm.c index 3c885fc4123122ac7eef3a95a95fb4a5eff7e13e..829be25f13cc0b257c0a83237b48da405508a98d 100644 --- a/cudablas/compute/cuda_zgessm.c +++ b/cudablas/compute/cuda_zgessm.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zgessm GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zgetrf.c b/cudablas/compute/cuda_zgetrf.c index 761607639a09621307425bfa9f3eef14d4155888..df8c6c8deffdb9f63e8990801eeb2faeaa4d5ffa 100644 --- a/cudablas/compute/cuda_zgetrf.c +++ b/cudablas/compute/cuda_zgetrf.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zgetrf GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zhemm.c b/cudablas/compute/cuda_zhemm.c index 95201c0357e6d3cdc0efe6ec05e06d892f581764..1b1ad4d190f5e34b9d7249714303d62b29f2c655 100644 --- a/cudablas/compute/cuda_zhemm.c +++ b/cudablas/compute/cuda_zhemm.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zhemm GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/cudablas/compute/cuda_zher2k.c b/cudablas/compute/cuda_zher2k.c index bc4e69c839ddcc64354464492dcd76265471762d..6b4289d95b69c0b0ec977ab8314b13cf602163e9 100644 --- a/cudablas/compute/cuda_zher2k.c +++ b/cudablas/compute/cuda_zher2k.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zher2k GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/cudablas/compute/cuda_zherfb.c b/cudablas/compute/cuda_zherfb.c index 36e1784fb72f355068d549bc5229f8157a3af1ea..d4a48b274462c8adf7333fb0024a86d0f516e61a 100644 --- a/cudablas/compute/cuda_zherfb.c +++ b/cudablas/compute/cuda_zherfb.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zherfb GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zherk.c b/cudablas/compute/cuda_zherk.c index 3ac3b66f12430e91fe50f0c1bef7e50888eae2c6..44f389ecd665c0a55050a35ed20f8db5bda871a6 100644 --- a/cudablas/compute/cuda_zherk.c +++ b/cudablas/compute/cuda_zherk.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zherk GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/cudablas/compute/cuda_zlarfb.c b/cudablas/compute/cuda_zlarfb.c index 49a9baaa3622fbfbeed8f8ff173cc8d118c6c945..09d16c408360f534b7709a12ed988a4d72ddac8a 100644 --- a/cudablas/compute/cuda_zlarfb.c +++ b/cudablas/compute/cuda_zlarfb.c @@ -4,7 +4,7 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** @@ -13,10 +13,10 @@ * * Code originated from MAGMA * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zlauum.c b/cudablas/compute/cuda_zlauum.c index 9e471e579dcce5e0710c2a0fab25c869a3b1f4d0..9026ed712f0e4e5235133c53a493fb08fdca8970 100644 --- a/cudablas/compute/cuda_zlauum.c +++ b/cudablas/compute/cuda_zlauum.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zlauum GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zparfb.c b/cudablas/compute/cuda_zparfb.c index 476c8b7faef0e0bf6b3a6bb387b15d130682c9d3..5fc04a48ee7e0fdab1bd665bbeb2efaf09dd84e3 100644 --- a/cudablas/compute/cuda_zparfb.c +++ b/cudablas/compute/cuda_zparfb.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zparfb GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zpotrf.c b/cudablas/compute/cuda_zpotrf.c index ceaf7c3590fdf054b4d64aa7d1203806fa03e254..ef877426ff573c8a6a80a384b5ae19c35c82d463 100644 --- a/cudablas/compute/cuda_zpotrf.c +++ b/cudablas/compute/cuda_zpotrf.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zpotrf GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zssssm.c b/cudablas/compute/cuda_zssssm.c index ab6e19fea7652831087a38d71caf9f9d45339040..855d27cbd8c55f84177dd67cf92df5f3399ba3f4 100644 --- a/cudablas/compute/cuda_zssssm.c +++ b/cudablas/compute/cuda_zssssm.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zssssm GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zsymm.c b/cudablas/compute/cuda_zsymm.c index 3dcfa14eb9b0eecae32a4d2df75e54382e0e4038..0bc0bb0e4092650f0df60e31e5f9aad1c076aed4 100644 --- a/cudablas/compute/cuda_zsymm.c +++ b/cudablas/compute/cuda_zsymm.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zsymm GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zsyr2k.c b/cudablas/compute/cuda_zsyr2k.c index 9bd078b38e7afd1c4494d7f668a8e3d4863361cc..b97fd576a3cf13eb0e8729452c81bd1f1ddbdd7f 100644 --- a/cudablas/compute/cuda_zsyr2k.c +++ b/cudablas/compute/cuda_zsyr2k.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zsyr2k GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zsyrk.c b/cudablas/compute/cuda_zsyrk.c index cdf966546a2a2d7229766146c7000c5c34c47e29..03c94f684b4bc5a9bb419ee190979ceed55f1c9a 100644 --- a/cudablas/compute/cuda_zsyrk.c +++ b/cudablas/compute/cuda_zsyrk.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zsyrk GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_ztpmlqt.c b/cudablas/compute/cuda_ztpmlqt.c index 58c613a756fccccde789eb01f4b7a9be5f62fe52..0a18f69f31e5d8fb4aaa87adac65040f20ad4879 100644 --- a/cudablas/compute/cuda_ztpmlqt.c +++ b/cudablas/compute/cuda_ztpmlqt.c @@ -4,16 +4,16 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_ztpmlqt GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_ztpmqrt.c b/cudablas/compute/cuda_ztpmqrt.c index ddcbc1b522e8b6968e6c6ffca000907c6951ae0a..3c4dcafd3302f4276d5bff7278ca255f8c78770a 100644 --- a/cudablas/compute/cuda_ztpmqrt.c +++ b/cudablas/compute/cuda_ztpmqrt.c @@ -4,17 +4,17 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_ztpmqrt GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_ztrmm.c b/cudablas/compute/cuda_ztrmm.c index f177a09312030ef9497570120ab584c6cdae6b05..d5710f7874298dbfb065af1ce282650d52fa37a7 100644 --- a/cudablas/compute/cuda_ztrmm.c +++ b/cudablas/compute/cuda_ztrmm.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_ztrmm GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_ztrsm.c b/cudablas/compute/cuda_ztrsm.c index 32d8c83c9d4f80bde4a76ddc93fb724246ef932e..18e381625b713ac05b2e6553365d24d0949d736a 100644 --- a/cudablas/compute/cuda_ztrsm.c +++ b/cudablas/compute/cuda_ztrsm.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_ztrsm GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_ztrtri.c b/cudablas/compute/cuda_ztrtri.c index 5f15734307bdc30f55b5ec50b1c77a174ad010a9..7015c93f3a69c56805fbd25802e4ccaa9aac9089 100644 --- a/cudablas/compute/cuda_ztrtri.c +++ b/cudablas/compute/cuda_ztrtri.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_ztrtri GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_ztslqt.c b/cudablas/compute/cuda_ztslqt.c index 1efbb61788dbdadecf63b20bb9b9dda787a45596..db0f53b26c772616ab216dc1da5abd94141d3970 100644 --- a/cudablas/compute/cuda_ztslqt.c +++ b/cudablas/compute/cuda_ztslqt.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_ztslqt GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_ztsmlq.c b/cudablas/compute/cuda_ztsmlq.c index 63918f4b50c889448027d22534de2c4b31a0f0cc..7af9c4e44f5df910e0713d85fc2c1f459f2cc91f 100644 --- a/cudablas/compute/cuda_ztsmlq.c +++ b/cudablas/compute/cuda_ztsmlq.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_ztsmlq GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_ztsmqr.c b/cudablas/compute/cuda_ztsmqr.c index 61b05597243418c988b5cea60e914fc35773881f..2a00686651b0beb2a8968f50e49f148c694ec974 100644 --- a/cudablas/compute/cuda_ztsmqr.c +++ b/cudablas/compute/cuda_ztsmqr.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_ztsmqr GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_ztsqrt.c b/cudablas/compute/cuda_ztsqrt.c index c71846e95c420ffeb977ce59bb6049eced385c34..f027fedb75b3ebc04313972364e4f82511805ffa 100644 --- a/cudablas/compute/cuda_ztsqrt.c +++ b/cudablas/compute/cuda_ztsqrt.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_ztsqrt GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_ztstrf.c b/cudablas/compute/cuda_ztstrf.c index 13d9b6a6fd09bfae34731eb62c0b26927643658f..f113133f69f65c35628d5f8429fa4264e005ca02 100644 --- a/cudablas/compute/cuda_ztstrf.c +++ b/cudablas/compute/cuda_ztstrf.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_ztstrf GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zttmlq.c b/cudablas/compute/cuda_zttmlq.c index 4e6ac068a494b1afbf0ace0ce03b8595c9aa0fb1..c46a589810172fe52e30cdafa1aaab50851a7e85 100644 --- a/cudablas/compute/cuda_zttmlq.c +++ b/cudablas/compute/cuda_zttmlq.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zttmlq GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zttmqr.c b/cudablas/compute/cuda_zttmqr.c index bd2a17569b35ca7930a0a262ee3a72d7bdf69ba3..e18466a0ed3bbcf797affb5d4113a886ddb79b79 100644 --- a/cudablas/compute/cuda_zttmqr.c +++ b/cudablas/compute/cuda_zttmqr.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zttmqr GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zunmlqt.c b/cudablas/compute/cuda_zunmlqt.c index 47a3b19806b6fd4dc4acab4db331e3ee734e1652..62b69564460b280ffb09d80c5dfb5b7532fb4fc5 100644 --- a/cudablas/compute/cuda_zunmlqt.c +++ b/cudablas/compute/cuda_zunmlqt.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zunmlqt GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cuda_zunmqrt.c b/cudablas/compute/cuda_zunmqrt.c index 3864bd5ffe061a38f03531da9a544c79ee4316cc..a036a9273776d3d96ad7a5e42ce06f5447936ea0 100644 --- a/cudablas/compute/cuda_zunmqrt.c +++ b/cudablas/compute/cuda_zunmqrt.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon cuda_zunmqrt GPU kernel * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/compute/cudaglobal.c b/cudablas/compute/cudaglobal.c index b2360a437215da4fa8313e43b3933105cccaa5c7..4c460a0c7b1bd67197393d0acb17288c4578dd3f 100644 --- a/cudablas/compute/cudaglobal.c +++ b/cudablas/compute/cudaglobal.c @@ -4,16 +4,16 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon global cudablas variables and functions * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "cudablas.h" diff --git a/cudablas/eztrace_module/CMakeLists.txt b/cudablas/eztrace_module/CMakeLists.txt index d5fa7339856100a09464a304079f309b1a6280b1..e5fd417055d5b08e0715dbe41bccf497c4c65448 100644 --- a/cudablas/eztrace_module/CMakeLists.txt +++ b/cudablas/eztrace_module/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,10 +17,10 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.0.0 +# @version 1.2.0 # @author Florent Pruvost # @author Mathieu Faverge -# @date 2020-03-03 +# @date 2022-02-22 # ### diff --git a/cudablas/include/CMakeLists.txt b/cudablas/include/CMakeLists.txt index ca12bd2701f9d4b2d648ace96c5b3317aacc633f..096711d35cc15fd015ce62f929bd4137cdb5ad86 100644 --- a/cudablas/include/CMakeLists.txt +++ b/cudablas/include/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,10 +17,10 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.0.0 +# @version 1.2.0 # @author Florent Pruvost # @author Mathieu Faverge -# @date 2020-03-03 +# @date 2022-02-22 # ### diff --git a/cudablas/include/cudablas.h b/cudablas/include/cudablas.h index 066680e640100f1153e228c1db339b8bce726d4a..3e24e5fdb7587cb5103ed2abb87ad4755c6fa1be 100644 --- a/cudablas/include/cudablas.h +++ b/cudablas/include/cudablas.h @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon GPU kernels main header * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge * @author Nathalie Furmento - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/cudablas/include/cudablas/cudablas_z.h b/cudablas/include/cudablas/cudablas_z.h index 9eeebdf174e8adafbadc21b16acce1405d271fc8..0a619cdfd19377804a3df4f0b3f5de516bf61d79 100644 --- a/cudablas/include/cudablas/cudablas_z.h +++ b/cudablas/include/cudablas/cudablas_z.h @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon GPU CHAMELEON_Complex64_t kernels header * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index d7077e2a524f2abce42eed968c1dfc76223aef81..e430bd10afb4b2d0c7468c582b00ca43c99da54e 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,12 +17,12 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 +# @version 1.2.0 # @author Cedric Castagnede # @author Emmanuel Agullo # @author Mathieu Faverge # @author Florent Pruvost -# @date 2021-01-04 +# @date 2022-02-22 # ### diff --git a/doc/dev/CMakeLists.txt b/doc/dev/CMakeLists.txt index 03e930ef1e699317eb9e236f30b0d508bf194f7a..59dca9eb3411eacf43dd061d766cc42ea49b06cf 100644 --- a/doc/dev/CMakeLists.txt +++ b/doc/dev/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,12 +17,12 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 +# @version 1.2.0 # @author Cedric Castagnede # @author Emmanuel Agullo # @author Mathieu Faverge # @author Florent Pruvost -# @date 2021-01-04 +# @date 2022-02-22 # ### diff --git a/doc/user/CMakeLists.txt b/doc/user/CMakeLists.txt index a28e97cfa713ce2f3fc8bbace6cf6208728a423d..09c3300030c61f3e4222df73c97feda8c9a26a92 100644 --- a/doc/user/CMakeLists.txt +++ b/doc/user/CMakeLists.txt @@ -14,10 +14,10 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 +# @version 1.2.0 # @author Florent Pruvost # @author Mathieu Faverge -# @date 2021-01-04 +# @date 2021-09-27 # ### diff --git a/example/CMakeLists.txt b/example/CMakeLists.txt index cb832e939e8d9f9a3dd84d5f5dbfc226153adcfb..f740b8909f12b300574212a93fcc95ce224aeab2 100755 --- a/example/CMakeLists.txt +++ b/example/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,8 +17,9 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.0.0 -# @date 2020-03-03 +# @version 1.2.0 +# @author Florent Pruvost +# @date 2022-02-22 # ### if (CHAMELEON_SIMULATION) diff --git a/example/lapack_to_chameleon/CMakeLists.txt b/example/lapack_to_chameleon/CMakeLists.txt index ae879d87707146fdba1bfec02c0a0a2cf310438c..a123228e95547f34e7d980a109714b9b66cac1d9 100644 --- a/example/lapack_to_chameleon/CMakeLists.txt +++ b/example/lapack_to_chameleon/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -13,11 +13,11 @@ # CHAMELEON is a software package provided by Inria Bordeaux - Sud-Ouest, LaBRI, # University of Bordeaux, Bordeaux INP # -# @version 1.1.0 +# @version 1.2.0 # @author Florent Pruvost # @author Guillaume Sylvand # @author Mathieu Faverge -# @date 2021-01-04 +# @date 2022-02-22 # ### diff --git a/example/lapack_to_chameleon/lapack_to_chameleon.h b/example/lapack_to_chameleon/lapack_to_chameleon.h index 43f880848db28953602c4a5352ce00ccf6e7534e..b57c0e6f8f5e484f77a5a807ca4cb01921933535 100644 --- a/example/lapack_to_chameleon/lapack_to_chameleon.h +++ b/example/lapack_to_chameleon/lapack_to_chameleon.h @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon examples common header * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _lapack_to_chameleon_h_ diff --git a/example/lapack_to_chameleon/step0.c b/example/lapack_to_chameleon/step0.c index 06cc6f2fc54b73a71803096f43d45e9c5d9e1ee6..1ccc59c3ee12cb88f9a7a939731d1475b9ead5dd 100644 --- a/example/lapack_to_chameleon/step0.c +++ b/example/lapack_to_chameleon/step0.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon step0 example * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "step0.h" diff --git a/example/lapack_to_chameleon/step0.h b/example/lapack_to_chameleon/step0.h index a679fdd4200f1a8f528a9b22b329ac49563b3cee..f30024b1ce4b090fe66156943137a052c2c532e0 100644 --- a/example/lapack_to_chameleon/step0.h +++ b/example/lapack_to_chameleon/step0.h @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon step0 example header * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _step0_h_ diff --git a/example/lapack_to_chameleon/step1.c b/example/lapack_to_chameleon/step1.c index 7b86bda305e52d50ca262ef4f14c96b6eb6a6af2..c37b58a1c43347cb251af9d3aa6662c477d8a0dc 100644 --- a/example/lapack_to_chameleon/step1.c +++ b/example/lapack_to_chameleon/step1.c @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon step1 example * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge * @author Philippe Virouleau - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "step1.h" diff --git a/example/lapack_to_chameleon/step1.h b/example/lapack_to_chameleon/step1.h index 643c1e5fe5e81b5d9fb55f7605f58ea0f76f990c..7483a72ea8d2ba89cf2047904f36c40384d2a1eb 100644 --- a/example/lapack_to_chameleon/step1.h +++ b/example/lapack_to_chameleon/step1.h @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon step1 example header * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _step1_h_ diff --git a/example/lapack_to_chameleon/step2.c b/example/lapack_to_chameleon/step2.c index dc01eb6b3b466942a939969bad65bc4021445114..a1a0f3d3467239d71eb675ebb710e6dbb1dd2bf8 100644 --- a/example/lapack_to_chameleon/step2.c +++ b/example/lapack_to_chameleon/step2.c @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon step2 example * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge * @author Philippe Virouleau - * @date 2020-03-12 + * @date 2022-02-22 * */ #include "step2.h" diff --git a/example/lapack_to_chameleon/step2.h b/example/lapack_to_chameleon/step2.h index e0a28ad5ed374fa6e20509d012a984ac8a79d21a..ee136338597231740d0b435c73420c013623291d 100644 --- a/example/lapack_to_chameleon/step2.h +++ b/example/lapack_to_chameleon/step2.h @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon step2 example header * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _step2_h_ diff --git a/example/lapack_to_chameleon/step3.c b/example/lapack_to_chameleon/step3.c index e2b1813766d18b623ec5cbe7aeb10c55a6414bcd..4c702368d7104a26d0dc94668b8f8f0c7c75b59f 100644 --- a/example/lapack_to_chameleon/step3.c +++ b/example/lapack_to_chameleon/step3.c @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon step3 example * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge * @author Philippe Virouleau - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "step3.h" diff --git a/example/lapack_to_chameleon/step3.h b/example/lapack_to_chameleon/step3.h index 06e6c7b6c8ea2e8a3086876c496b775c7cfe380c..69d3ccb48232846f12f3c9c8ac53146724a83967 100644 --- a/example/lapack_to_chameleon/step3.h +++ b/example/lapack_to_chameleon/step3.h @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon step3 example header * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _step3_h_ diff --git a/example/lapack_to_chameleon/step4.c b/example/lapack_to_chameleon/step4.c index b818e549637ab44f489a3986cb79795c8dde7cd6..4f21540e49de7300a88ea87faa0630dd1ba76d68 100644 --- a/example/lapack_to_chameleon/step4.c +++ b/example/lapack_to_chameleon/step4.c @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon step4 example * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge * @author Philippe Virouleau - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "step4.h" diff --git a/example/lapack_to_chameleon/step4.h b/example/lapack_to_chameleon/step4.h index 527062bfd48c15370fcca45acffc465f3e6f2d09..dae51ddbbdbdda397c2ce78161bb6d1b78474372 100644 --- a/example/lapack_to_chameleon/step4.h +++ b/example/lapack_to_chameleon/step4.h @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon step4 example header * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _step4_h_ diff --git a/example/lapack_to_chameleon/step5.c b/example/lapack_to_chameleon/step5.c index f4bb1e35a9ebd37ab072cd66dc567264de874ce1..751538f1378a8d49c05b2e5be9ff1bc9b476e5fe 100644 --- a/example/lapack_to_chameleon/step5.c +++ b/example/lapack_to_chameleon/step5.c @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon step5 example * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge * @author Philippe Virouleau - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "step5.h" diff --git a/example/lapack_to_chameleon/step5.h b/example/lapack_to_chameleon/step5.h index 2924cd367a50068db8c22b0c98a822262714f16b..7f786e46298a8bc73caa97c29186ab0effe8716e 100644 --- a/example/lapack_to_chameleon/step5.h +++ b/example/lapack_to_chameleon/step5.h @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon step5 example header * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _step5_h_ diff --git a/example/lapack_to_chameleon/step6.c b/example/lapack_to_chameleon/step6.c index f0aa1d436b18c92bd50a663c56e00d53b42828cc..f1dfc0acd89e1fd8ef25c0de9e6460509bc7feee 100644 --- a/example/lapack_to_chameleon/step6.c +++ b/example/lapack_to_chameleon/step6.c @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon step6 example * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge * @author Philippe Virouleau - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "step6.h" diff --git a/example/lapack_to_chameleon/step6.h b/example/lapack_to_chameleon/step6.h index 395914c6471170c901120b3c4797e69f58a06e93..1f730f26a2774786f66f02e9c554df1d931abb2a 100644 --- a/example/lapack_to_chameleon/step6.h +++ b/example/lapack_to_chameleon/step6.h @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon step6 example header * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2021-01-04 + * @date 2022-02-22 * */ #ifndef _step6_h_ diff --git a/example/lapack_to_chameleon/step7.c b/example/lapack_to_chameleon/step7.c index 9ca4e8f112362e7edc1833f4f46c5e1d3b2771ae..0665d4805f74a29fe0f2ed5dc9f824782a93cd6f 100644 --- a/example/lapack_to_chameleon/step7.c +++ b/example/lapack_to_chameleon/step7.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon step7 example * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Guillaume Sylvand * @author Mathieu Faverge * @author Philippe Virouleau - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "step7.h" diff --git a/example/lapack_to_chameleon/step7.h b/example/lapack_to_chameleon/step7.h index 3b637a4ab3d56e256f0c051b6ec3b8424d0ee6b2..f94b1a78b226019043648ca89ecaa29d34656a00 100644 --- a/example/lapack_to_chameleon/step7.h +++ b/example/lapack_to_chameleon/step7.h @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon step7 example header * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost * @author Guillaume Sylvand * @author Mathieu Faverge - * @date 2021-01-04 + * @date 2022-02-22 * */ #ifndef _step7_h_ diff --git a/example/link_chameleon/CMakeLists.txt b/example/link_chameleon/CMakeLists.txt index fe02c47f2ef087c59e18d5c61f4bb1dcb36a7627..d80dd34556830d23cd7d826afb6da7392264b458 100644 --- a/example/link_chameleon/CMakeLists.txt +++ b/example/link_chameleon/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,8 +17,9 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 -# @date 2021-01-04 +# @version 1.2.0 +# @author Florent Pruvost +# @date 2022-02-22 # ### cmake_minimum_required(VERSION 3.1) diff --git a/example/link_chameleon/link_chameleon.c b/example/link_chameleon/link_chameleon.c index 5d93ebcdc60b9f233f2f915c4bbc4691668a6e70..a2d6b49a209753b68a7b8356a3bb4af3e739bb79 100644 --- a/example/link_chameleon/link_chameleon.c +++ b/example/link_chameleon/link_chameleon.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon link_chameleon example * - * @version 1.0.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include <math.h> diff --git a/example/link_chameleon/link_chameleon.f90 b/example/link_chameleon/link_chameleon.f90 index 40ba455eb99b9838ef80b2908f7cdf591d793af6..ff9b532846a2ee2744c58d7366d4a9123aa57656 100644 --- a/example/link_chameleon/link_chameleon.f90 +++ b/example/link_chameleon/link_chameleon.f90 @@ -6,13 +6,13 @@ ! CHAMELEON is a software package provided by Univ. of Tennessee, ! Univ. of California Berkeley and Univ. of Colorado Denver ! -! @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +! @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, ! Univ. Bordeaux. All rights reserved. ! -! @version 1.0.0 +! @version 1.2.0 ! @author Florent Pruvost ! @author Mathieu Faverge -! @date 2020-03-03 +! @date 2022-02-22 program fortran_example implicit none include 'chameleon_fortran.h' diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt index d76372f6f1c7f7feda916b5974ec3a69fa4966a2..d76c36523ea2728a24cb26d17bfcc001603c93eb 100644 --- a/include/CMakeLists.txt +++ b/include/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,12 +17,12 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 +# @version 1.2.0 # @author Cedric Castagnede # @author Emmanuel Agullo # @author Mathieu Faverge # @author Florent Pruvost -# @date 2020-11-19 +# @date 2022-02-22 # ### diff --git a/include/chameleon.h b/include/chameleon.h index e34925827c218b11af541393e4912deb599e7596..5aadfb8d4802f7154b783c80db3fb7e2e08e561b 100644 --- a/include/chameleon.h +++ b/include/chameleon.h @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon main header * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Augonnet * @author Cedric Castagnede * @author Florent Pruvost * @author Philippe Virouleau - * @date 2021-03-16 + * @date 2022-02-22 * */ #ifndef _chameleon_h_ diff --git a/include/chameleon/chameleon_z.h b/include/chameleon/chameleon_z.h index 6fd52f848de55b5e1680ab3a322769244e08c2f9..2ea083dbfba61405d042f32dca9dce7bb3112700 100644 --- a/include/chameleon/chameleon_z.h +++ b/include/chameleon/chameleon_z.h @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon CHAMELEON_complex64_t wrappers * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -21,7 +21,8 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2021-03-17 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/include/chameleon/chameleon_zc.h b/include/chameleon/chameleon_zc.h index 3bc60397e5b5acf45d608d9a341beee028e5141b..7934951a2f7afbd877773a08f9de2d4b44cb527f 100644 --- a/include/chameleon/chameleon_zc.h +++ b/include/chameleon/chameleon_zc.h @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon mixed precision wrappers header * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions mixed zc -> ds * */ diff --git a/include/chameleon/config.h.in b/include/chameleon/config.h.in index 9f62ff9852df02bca2127f193d7cdef28bca111a..7d6e85188df3f774322d4843ee83a1a7f7a34897 100644 --- a/include/chameleon/config.h.in +++ b/include/chameleon/config.h.in @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon configuration file * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge * @author Philippe Virouleau * @author Raphael Boucherie - * @date 2021-01-04 + * @date 2022-02-22 * */ #ifndef CHAMELEON_CONFIG_H_HAS_BEEN_INCLUDED diff --git a/include/chameleon/constants.h b/include/chameleon/constants.h index f6e1284ab2cda8ee73f325b17557079e7cb114d9..79bce66b4c3524f31db76357b425ce30272a83d7 100644 --- a/include/chameleon/constants.h +++ b/include/chameleon/constants.h @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon global constants * - * @version 1.1.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-12-01 + * @date 2022-02-22 * */ #ifndef _chameleon_constants_h_ diff --git a/include/chameleon/flops.h b/include/chameleon/flops.h index 864deda07273763b22b590d9cff6bcb1e7ab72b1..a6a43f837e659d7ca1235350fcd15100f02fae1e 100644 --- a/include/chameleon/flops.h +++ b/include/chameleon/flops.h @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * File provided by Univ. of Tennessee, * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Castagnede * @author Lucas Barros de Assis - * @date 2020-11-19 + * @date 2022-02-22 * */ /* diff --git a/include/chameleon/fortran.h b/include/chameleon/fortran.h index a4022a59fdaadd8da1725c334d7a043aded6623c..679eb3a5a2ab2f1cc8e7cb09e654d1d8b185f37d 100644 --- a/include/chameleon/fortran.h +++ b/include/chameleon/fortran.h @@ -5,15 +5,15 @@ ! ! @copyright 2009-2014 The University of Tennessee and The University of ! Tennessee Research Foundation. All rights reserved. -! @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +! @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, ! Univ. Bordeaux. All rights reserved. ! -! @version 1.0.0 +! @version 1.2.0 ! @author Bilel Hadri ! @author Mathieu Faverge ! @author Cedric Castagnede ! @author Florent Pruvost -! @date 2020-03-03 +! @date 2022-02-22 ! !** ! diff --git a/include/chameleon/runtime.h b/include/chameleon/runtime.h index f3e26f4f755f90bd564d3ac434a1a9cee30fc2dd..e1aa0f96c0de8aa8e6b18d849aee1a22f8ee27d6 100644 --- a/include/chameleon/runtime.h +++ b/include/chameleon/runtime.h @@ -4,19 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief The common runtimes API - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Augonnet * @author Cedric Castagnede * @author Florent Pruvost * @author Samuel Thibault - * @date 2020-04-22 + * @author Philippe Swartvagher + * @date 2022-02-22 * */ #ifndef _chameleon_runtime_h_ diff --git a/include/chameleon/runtime_struct.h b/include/chameleon/runtime_struct.h index a5ca6e027043b2d95452cf01c9821be40f31582f..d1b0d9b4917c70d8b5fbdab4ac37c23dbc078598 100644 --- a/include/chameleon/runtime_struct.h +++ b/include/chameleon/runtime_struct.h @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Runtime structures * - * @version 1.1.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost * @author Philippe Virouleau - * @date 2020-10-15 + * @date 2022-02-22 * */ #ifndef _chameleon_runtime_struct_h_ diff --git a/include/chameleon/simulate.h b/include/chameleon/simulate.h index 3e5b3f378e98754e229e2c3fc76d77e4f5b16a78..fed287caef5b748c4df93fe0285430f5351dc172 100644 --- a/include/chameleon/simulate.h +++ b/include/chameleon/simulate.h @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon SimGrid simulation header * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-09-11 + * @date 2022-02-22 * */ #ifndef _chameleon_simulate_h_ diff --git a/include/chameleon/struct.h b/include/chameleon/struct.h index 6da47e1c9f332a9ac9b3042fe34e5a1bbdd30a93..7ab9711e1df9dfc9a9df131c501f37da4d66f0f1 100644 --- a/include/chameleon/struct.h +++ b/include/chameleon/struct.h @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon structures * - * @version 1.1.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-03-16 + * @date 2022-02-22 * */ #ifndef _chameleon_struct_h_ diff --git a/include/chameleon/tasks.h b/include/chameleon/tasks.h index bb26355eb5bf32f108246e2a0b4268fc39b74e87..97284f14c242b09ba9a05ebab1c9a1dc749b1d5a 100644 --- a/include/chameleon/tasks.h +++ b/include/chameleon/tasks.h @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon elementary tasks main header * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Augonnet * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _chameleon_tasks_h_ diff --git a/include/chameleon/tasks_z.h b/include/chameleon/tasks_z.h index d89c00df4d5a0c1405584fe630a6ee846bb5939a..85f0e30ee377818e24ac0e20362e9720b5bfda42 100644 --- a/include/chameleon/tasks_z.h +++ b/include/chameleon/tasks_z.h @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon CHAMELEON_Complex64_t elementary tasks header * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -21,7 +21,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-10-12 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/include/chameleon/tasks_zc.h b/include/chameleon/tasks_zc.h index 2e21a59505ed06a327ee43472b0dc892545787dd..6e2b83469d899bbb1932a5199afe614ba3693a7e 100644 --- a/include/chameleon/tasks_zc.h +++ b/include/chameleon/tasks_zc.h @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon complex mixed precision elementary tasks header * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Jakub Kurzak @@ -20,7 +20,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions mixed zc -> ds * */ diff --git a/include/chameleon/timer.h b/include/chameleon/timer.h index 76e0ae37c47d81202c90b10611bdefc2408ab959..5d6e4898b25ea5a537cf12980e5ff5198c236fe6 100644 --- a/include/chameleon/timer.h +++ b/include/chameleon/timer.h @@ -4,16 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 1.0.0 + * @version 1.2.0 + * @author Mathieu Faverge * * @brief Chameleon timer * * Provide a simple timer for examples and runtimes which do not provide their * own timer. - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _chameleon_timer_h_ diff --git a/include/chameleon/types.h b/include/chameleon/types.h index 0a38ebb9a7a97e7eb7f6d8294826a990a592f1fe..d63b1efb43e7a6ec04d369f00235bc07044708e8 100644 --- a/include/chameleon/types.h +++ b/include/chameleon/types.h @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon basic datatypes header * - * @version 1.1.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost * @author Lucas Barros de Assis * @author Thomas Mijieux - * @date 2020-10-12 + * @date 2022-02-22 * */ #ifndef _chameleon_types_h_ diff --git a/lib/pkgconfig/chameleon.pc.in b/lib/pkgconfig/chameleon.pc.in index 50550a26c25617da1962bafee05020a518ad7fb9..aa36a935cd72b4069a7ad6cafc64369ffbe68c9e 100644 --- a/lib/pkgconfig/chameleon.pc.in +++ b/lib/pkgconfig/chameleon.pc.in @@ -1,3 +1,13 @@ +# +# @file chameleon.pc +# +# @copyright 2016-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# Univ. Bordeaux. All rights reserved. +# +# @version 1.2.0 +# @author Florent Pruvost +# @date 2022-02-22 +# prefix=@CMAKE_INSTALL_PREFIX@ exec_prefix=${prefix} libdir=${exec_prefix}/lib diff --git a/lib/pkgconfig/coreblas.pc.in b/lib/pkgconfig/coreblas.pc.in index 64fd9b165ea6af305ab3ec604fd997339de3d764..cbf462567e92b5192a03c9966dd1402fbf5afbda 100644 --- a/lib/pkgconfig/coreblas.pc.in +++ b/lib/pkgconfig/coreblas.pc.in @@ -1,3 +1,13 @@ +# +# @file coreblas.pc +# +# @copyright 2016-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# Univ. Bordeaux. All rights reserved. +# +# @version 1.2.0 +# @author Florent Pruvost +# @date 2022-02-22 +# prefix=@CMAKE_INSTALL_PREFIX@ exec_prefix=${prefix} libdir=${exec_prefix}/lib diff --git a/lib/pkgconfig/cudablas.pc.in b/lib/pkgconfig/cudablas.pc.in index b0b94291c427be267e102b37703b661721caf912..d3b5c793ffb9f8d69ea5f337e07a99b6ff82fd78 100644 --- a/lib/pkgconfig/cudablas.pc.in +++ b/lib/pkgconfig/cudablas.pc.in @@ -1,3 +1,13 @@ +# +# @file cudablas.pc +# +# @copyright 2016-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# Univ. Bordeaux. All rights reserved. +# +# @version 1.2.0 +# @author Florent Pruvost +# @date 2022-02-22 +# prefix=@CMAKE_INSTALL_PREFIX@ exec_prefix=${prefix} libdir=${exec_prefix}/lib diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index 9ca5edd5c927544480fc82f3a75c78ddbdca4447..bda8ef2732cdf6a7cb8b9a12128bb9175e9f584e 100644 --- a/runtime/CMakeLists.txt +++ b/runtime/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,13 +17,13 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 +# @version 1.2.0 # @author Cedric Castagnede # @author Emmanuel Agullo # @author Mathieu Faverge # @author Florent Pruvost # @author Philippe Virouleau -# @date 2020-10-12 +# @date 2022-02-22 # ### diff --git a/runtime/openmp/CMakeLists.txt b/runtime/openmp/CMakeLists.txt index 0a2242ff79a962b8941c48f826e4b8317c30a6b4..2bc8716dafc5bda20897bc6ff4f92eaeced7d366 100644 --- a/runtime/openmp/CMakeLists.txt +++ b/runtime/openmp/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2015 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,13 +17,13 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 +# @version 1.2.0 # @author Cedric Castagnede # @author Emmanuel Agullo # @author Mathieu Faverge # @author Florent Pruvost # @author Philippe Virouleau -# @date 2021-01-11 +# @date 2022-02-22 # ### cmake_minimum_required(VERSION 3.1) diff --git a/runtime/openmp/codelets/codelet_dlag2z.c b/runtime/openmp/codelets/codelet_dlag2z.c index aa5c6a30dfffbadeb77fa7e5a9eed425023b491f..dad90fec27ebe34d78aaa2696a20974c91125301 100644 --- a/runtime/openmp/codelets/codelet_dlag2z.c +++ b/runtime/openmp/codelets/codelet_dlag2z.c @@ -4,16 +4,16 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon dlag2z OpenMP codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-10-12 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/openmp/codelets/codelet_dzasum.c b/runtime/openmp/codelets/codelet_dzasum.c index 38b052c0c90db0cd9bd0e5b155586d6cc9f47a7f..3b33634a8ddb43057836c8395e57de310c2eb2c1 100644 --- a/runtime/openmp/codelets/codelet_dzasum.c +++ b/runtime/openmp/codelets/codelet_dzasum.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_dzasum.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon dzasum OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_map.c b/runtime/openmp/codelets/codelet_map.c index b58575eceef31f720f9eb686f1cddd542fccfb41..eb7d4ef54bc5159eb909785f1c9dba30d3931291 100644 --- a/runtime/openmp/codelets/codelet_map.c +++ b/runtime/openmp/codelets/codelet_map.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_map.c * - * @copyright 2018-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2018-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon map OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_openmp.h" diff --git a/runtime/openmp/codelets/codelet_zaxpy.c b/runtime/openmp/codelets/codelet_zaxpy.c index 8edbc3a1561e9611bbf6e914320545a8a6a5c06c..ab53528f485187a2bc6ed5ef6c02b8620390afc3 100644 --- a/runtime/openmp/codelets/codelet_zaxpy.c +++ b/runtime/openmp/codelets/codelet_zaxpy.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zaxpy.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zaxpy OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zbuild.c b/runtime/openmp/codelets/codelet_zbuild.c index fc343e183a05dc4f5d8b046815d30f7c819efa08..673cd4f9739e165498677bd341c600ca077df837 100644 --- a/runtime/openmp/codelets/codelet_zbuild.c +++ b/runtime/openmp/codelets/codelet_zbuild.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zbuild.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zbuild OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zcesca.c b/runtime/openmp/codelets/codelet_zcesca.c index dc92f33d06ccf76a48a4b69e5b16df71e5116abd..97c8c81e701071afbdd452232903c6c916d5fcfd 100644 --- a/runtime/openmp/codelets/codelet_zcesca.c +++ b/runtime/openmp/codelets/codelet_zcesca.c @@ -2,16 +2,16 @@ * * @file openmp/codelet_zcesca.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zcesca OpenMP codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost - * @date 2021-05-07 + * @date 2022-02-22 * @precisions normal z -> s d c z * */ diff --git a/runtime/openmp/codelets/codelet_zgeadd.c b/runtime/openmp/codelets/codelet_zgeadd.c index 253cce2a41b672ab4d3bc4c5ef05810f945c16a7..c568b93fdbfb29c17c25ef7bc67832f22723dbf1 100644 --- a/runtime/openmp/codelets/codelet_zgeadd.c +++ b/runtime/openmp/codelets/codelet_zgeadd.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zgeadd.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeadd OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zgelqt.c b/runtime/openmp/codelets/codelet_zgelqt.c index 6a2993ef51dca51405511d971632977877f79eea..99c5b346a1695de40f18597658f69930256283b0 100644 --- a/runtime/openmp/codelets/codelet_zgelqt.c +++ b/runtime/openmp/codelets/codelet_zgelqt.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zgelqt.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgelqt OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zgemm.c b/runtime/openmp/codelets/codelet_zgemm.c index 5706c82d6ac1a5c5e71abec2b6d30cdafcb31e31..b94aff972b1a2168b243445e1a2c527ee3603a4e 100644 --- a/runtime/openmp/codelets/codelet_zgemm.c +++ b/runtime/openmp/codelets/codelet_zgemm.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zgemm.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgemm OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zgemv.c b/runtime/openmp/codelets/codelet_zgemv.c index 8f87a167383f5b6ab5c0ccae766aaa184296a770..e12432dedec7d27056c995c89a6a04e6ae785ef3 100644 --- a/runtime/openmp/codelets/codelet_zgemv.c +++ b/runtime/openmp/codelets/codelet_zgemv.c @@ -2,16 +2,16 @@ * * @file openmp/codelet_zgemv.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgemv OpenMP codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-10-12 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zgeqrt.c b/runtime/openmp/codelets/codelet_zgeqrt.c index 8bd38548aaaf685e2993d6b5188499d555b747b7..d93035692d1cacc8de0647894f628bd7d789fcec 100644 --- a/runtime/openmp/codelets/codelet_zgeqrt.c +++ b/runtime/openmp/codelets/codelet_zgeqrt.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zgeqrt.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeqrt OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zgessm.c b/runtime/openmp/codelets/codelet_zgessm.c index 10d876a6e67390cfd54c88831534b6f313181b0d..685ef0d14ee4ce36e2cceb4738b385a84b8a2030 100644 --- a/runtime/openmp/codelets/codelet_zgessm.c +++ b/runtime/openmp/codelets/codelet_zgessm.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zgessm.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgessm OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zgessq.c b/runtime/openmp/codelets/codelet_zgessq.c index 132b3a9e9c10b03c65a60ce0b8ae891c3928654a..b0e9618c7422579934dc7438d28973c69dafb436 100644 --- a/runtime/openmp/codelets/codelet_zgessq.c +++ b/runtime/openmp/codelets/codelet_zgessq.c @@ -2,18 +2,18 @@ * * @file openmp/codelet_zgessq.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgessq OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zgesum.c b/runtime/openmp/codelets/codelet_zgesum.c index f52f4bec5170be457c96dfc78d5550f4d4dcf6bb..fff889eceb27426e078bbaa6c02e95fdaf41048e 100644 --- a/runtime/openmp/codelets/codelet_zgesum.c +++ b/runtime/openmp/codelets/codelet_zgesum.c @@ -2,16 +2,16 @@ * * @file openmp/codelet_zgesum.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgesum OpenMP codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost - * @date 2021-05-07 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zgetrf.c b/runtime/openmp/codelets/codelet_zgetrf.c index 1f92b7a3d69b21b8f7f6a418604a8afbd9664653..a50f1be348e64189d867c2fe04a658fd3f2ced2d 100644 --- a/runtime/openmp/codelets/codelet_zgetrf.c +++ b/runtime/openmp/codelets/codelet_zgetrf.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zgetrf.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrf OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zgetrf_incpiv.c b/runtime/openmp/codelets/codelet_zgetrf_incpiv.c index 1b8dad5450111457b54170a807652a55cc8c6885..ec8c15a6c45c1043f60467cbcd0f4377693a2bbe 100644 --- a/runtime/openmp/codelets/codelet_zgetrf_incpiv.c +++ b/runtime/openmp/codelets/codelet_zgetrf_incpiv.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zgetrf_incpiv.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrf_incpiv OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zgetrf_nopiv.c b/runtime/openmp/codelets/codelet_zgetrf_nopiv.c index 63a6a07ed449fda7700263ce8f27e29ba734ddd8..4f037705bb03e43d128a9eb22e05ce80361fff15 100644 --- a/runtime/openmp/codelets/codelet_zgetrf_nopiv.c +++ b/runtime/openmp/codelets/codelet_zgetrf_nopiv.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zgetrf_nopiv.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrf_nopiv OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zgram.c b/runtime/openmp/codelets/codelet_zgram.c index b8805f0da0ac5fd85223dbccca33f22dbbd4394b..9d7776f5884560d0c4430bef3c08cc20bfb74683 100644 --- a/runtime/openmp/codelets/codelet_zgram.c +++ b/runtime/openmp/codelets/codelet_zgram.c @@ -2,18 +2,18 @@ * * @file openmp/codelet_zgram.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgram OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c z * */ diff --git a/runtime/openmp/codelets/codelet_zhe2ge.c b/runtime/openmp/codelets/codelet_zhe2ge.c index 61265d7b04aec45a62fe9213bea8212fa32728fd..287a6b64bf966afb293bbc918ff2b7c68d748033 100644 --- a/runtime/openmp/codelets/codelet_zhe2ge.c +++ b/runtime/openmp/codelets/codelet_zhe2ge.c @@ -2,18 +2,18 @@ * * @file openmp/codelet_zhe2ge.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zhe2ge OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zhemm.c b/runtime/openmp/codelets/codelet_zhemm.c index 9be2378aefaf8625733409ba9e15b8580118115f..79d36ff56f9c76074225a9b0438631236eab3b39 100644 --- a/runtime/openmp/codelets/codelet_zhemm.c +++ b/runtime/openmp/codelets/codelet_zhemm.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zhemm.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zhemm OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/openmp/codelets/codelet_zher2k.c b/runtime/openmp/codelets/codelet_zher2k.c index 85c1471f533728168d7ac7efac4f82f77182a4eb..7666da6366e7fb29a13af399cdf892adbc05042a 100644 --- a/runtime/openmp/codelets/codelet_zher2k.c +++ b/runtime/openmp/codelets/codelet_zher2k.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zher2k.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zher2k OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/openmp/codelets/codelet_zherfb.c b/runtime/openmp/codelets/codelet_zherfb.c index 0be0211353d40fcbf0bf2c11b71416006859f0d1..c24578d7ec636fdfb3e7b0d592f58be5d83ffe2b 100644 --- a/runtime/openmp/codelets/codelet_zherfb.c +++ b/runtime/openmp/codelets/codelet_zherfb.c @@ -2,18 +2,18 @@ * * @file openmp/codelet_zherfb.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zherfb OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zherk.c b/runtime/openmp/codelets/codelet_zherk.c index d3187185e201ae5018675ebc684935ee45aaeb75..5d0376f07addfca31743b966994f9e603b34b8db 100644 --- a/runtime/openmp/codelets/codelet_zherk.c +++ b/runtime/openmp/codelets/codelet_zherk.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zherk.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zherk OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/openmp/codelets/codelet_zhessq.c b/runtime/openmp/codelets/codelet_zhessq.c index 48b25b6af91718a8ba6f940682e891e8b530c979..988131372712bb0282b1f50040c5060f120779d2 100644 --- a/runtime/openmp/codelets/codelet_zhessq.c +++ b/runtime/openmp/codelets/codelet_zhessq.c @@ -2,18 +2,18 @@ * * @file openmp/codelet_zhessq.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zhessq OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/openmp/codelets/codelet_zlacpy.c b/runtime/openmp/codelets/codelet_zlacpy.c index 3728f844d48502c578c7e287b20cee52f5368b3c..25de93f94bbba0cfeb4d66f21b27a85ab572161b 100644 --- a/runtime/openmp/codelets/codelet_zlacpy.c +++ b/runtime/openmp/codelets/codelet_zlacpy.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zlacpy.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlacpy OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zlag2c.c b/runtime/openmp/codelets/codelet_zlag2c.c index b8ef54827db901d0f214d99c1089f44f1b020fe9..369b5dd059103901ebb0977444dfe6c33fd85891 100644 --- a/runtime/openmp/codelets/codelet_zlag2c.c +++ b/runtime/openmp/codelets/codelet_zlag2c.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zlag2c.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlag2c OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions mixed zc -> ds * */ diff --git a/runtime/openmp/codelets/codelet_zlange.c b/runtime/openmp/codelets/codelet_zlange.c index 80a04cdf4a71eea4a817930c5e29eeb4fe666d9e..30fe109cdab7b92d338fb10e3296fac6cdd02874 100644 --- a/runtime/openmp/codelets/codelet_zlange.c +++ b/runtime/openmp/codelets/codelet_zlange.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zlange.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlange OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zlanhe.c b/runtime/openmp/codelets/codelet_zlanhe.c index dd73a7ba5863d8428010a7ee07f7b3d2798c6acd..c55a015fa22e36a4e3576ca6ccb64c10d5825da4 100644 --- a/runtime/openmp/codelets/codelet_zlanhe.c +++ b/runtime/openmp/codelets/codelet_zlanhe.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zlanhe.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlanhe OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/openmp/codelets/codelet_zlansy.c b/runtime/openmp/codelets/codelet_zlansy.c index 505e9be55cba513f5b4dd3ce3d73851dc5284534..18f13390415bfbd6b9640ab0645f685a014517cd 100644 --- a/runtime/openmp/codelets/codelet_zlansy.c +++ b/runtime/openmp/codelets/codelet_zlansy.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zlansy.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlansy OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zlantr.c b/runtime/openmp/codelets/codelet_zlantr.c index e667cd1a7a6ff7c8f942dafb19d3246a994e1686..73ff6271c891dae7e332b3909ede896158cb428c 100644 --- a/runtime/openmp/codelets/codelet_zlantr.c +++ b/runtime/openmp/codelets/codelet_zlantr.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zlantr.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlantr OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zlascal.c b/runtime/openmp/codelets/codelet_zlascal.c index 5b4757837de146dbaaaaaed420603f95afeeb025..e6ecb27e8db2fc5a6ae8587819818b26edad892d 100644 --- a/runtime/openmp/codelets/codelet_zlascal.c +++ b/runtime/openmp/codelets/codelet_zlascal.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zlascal.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlascal OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zlaset.c b/runtime/openmp/codelets/codelet_zlaset.c index 51203862154a27693ed00e3c411d915e39137986..9cdc06e7fd48afe08a8590ef80f9cc6ee2d4c84e 100644 --- a/runtime/openmp/codelets/codelet_zlaset.c +++ b/runtime/openmp/codelets/codelet_zlaset.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zlaset.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlaset OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zlaset2.c b/runtime/openmp/codelets/codelet_zlaset2.c index 957a2dce86c1723334b7b1acacf14fa275f595e2..2694fc3d135d6285f69ce613ef346e85638b0b64 100644 --- a/runtime/openmp/codelets/codelet_zlaset2.c +++ b/runtime/openmp/codelets/codelet_zlaset2.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zlaset2.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlaset2 OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zlatro.c b/runtime/openmp/codelets/codelet_zlatro.c index fc5f6ed188a4ad06f7f3f82297f9e9aaba9fec96..417597bf87fd7c89b1cbc8616e8fe98ce8f39b35 100644 --- a/runtime/openmp/codelets/codelet_zlatro.c +++ b/runtime/openmp/codelets/codelet_zlatro.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zlatro.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlatro OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zlauum.c b/runtime/openmp/codelets/codelet_zlauum.c index 173685b4062dc390091216a2704957609d8430f4..c76a5fa2a64f5397f9e7fa4b75fd2ac6204e94b8 100644 --- a/runtime/openmp/codelets/codelet_zlauum.c +++ b/runtime/openmp/codelets/codelet_zlauum.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zlauum.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlauum OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zplghe.c b/runtime/openmp/codelets/codelet_zplghe.c index 733fd0a3f09e53c935f09defbf0b81cd63206e9b..5e06682c509b9bc00bc09a2a092f258c40fb2f92 100644 --- a/runtime/openmp/codelets/codelet_zplghe.c +++ b/runtime/openmp/codelets/codelet_zplghe.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zplghe.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplghe OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/openmp/codelets/codelet_zplgsy.c b/runtime/openmp/codelets/codelet_zplgsy.c index 76a7bc4e84d67c88e9e6b520b775ad4f5c553136..e5a5e85f3327aac1fba84f0f80e2bc6beb73563f 100644 --- a/runtime/openmp/codelets/codelet_zplgsy.c +++ b/runtime/openmp/codelets/codelet_zplgsy.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zplgsy.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplgsy OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zplrnt.c b/runtime/openmp/codelets/codelet_zplrnt.c index 1c58d5a5e11498abd0e4efece4d22e7fc87f9dab..dc1074844efbf0a86e8c51698eda80448d833341 100644 --- a/runtime/openmp/codelets/codelet_zplrnt.c +++ b/runtime/openmp/codelets/codelet_zplrnt.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zplrnt.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplrnt OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zplssq.c b/runtime/openmp/codelets/codelet_zplssq.c index 26c42c0da4a84c240a938b5bd5aaf3c5e722d8b0..4a227818e9ff480dfd94932ade9a987b62cdeb44 100644 --- a/runtime/openmp/codelets/codelet_zplssq.c +++ b/runtime/openmp/codelets/codelet_zplssq.c @@ -2,18 +2,18 @@ * * @file openmp/codelet_zplssq.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplssq OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zpotrf.c b/runtime/openmp/codelets/codelet_zpotrf.c index 7bfca86e982c45430936c782248d1223166cd336..e60a01c5d417daf60d8c45ec3229c005b8de3b40 100644 --- a/runtime/openmp/codelets/codelet_zpotrf.c +++ b/runtime/openmp/codelets/codelet_zpotrf.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zpotrf.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zpotrf OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zssssm.c b/runtime/openmp/codelets/codelet_zssssm.c index fd498f71fc7eb1216900fe12d1b562d96ef9826b..db5b886cc4077e318923527e67c6d7779752043e 100644 --- a/runtime/openmp/codelets/codelet_zssssm.c +++ b/runtime/openmp/codelets/codelet_zssssm.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zssssm.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zssssm OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zsymm.c b/runtime/openmp/codelets/codelet_zsymm.c index a87d3da6b925b795c640ecb171c22d4c33548c04..90ea5d8490c741a38ff56536c32f25e37616f0c3 100644 --- a/runtime/openmp/codelets/codelet_zsymm.c +++ b/runtime/openmp/codelets/codelet_zsymm.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zsymm.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsymm OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zsyr2k.c b/runtime/openmp/codelets/codelet_zsyr2k.c index d5380de40e259f08ba64b8152879df0b0154eb0b..41974f4b1b5c62d1d51d1a1d7fc0080c8d573681 100644 --- a/runtime/openmp/codelets/codelet_zsyr2k.c +++ b/runtime/openmp/codelets/codelet_zsyr2k.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zsyr2k.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsyr2k OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zsyrk.c b/runtime/openmp/codelets/codelet_zsyrk.c index 098adc94efbfcb63d5ebd6128d57cfce95cc8406..b60acce60eaf81fd694f3ef65af6d8f62bed73ac 100644 --- a/runtime/openmp/codelets/codelet_zsyrk.c +++ b/runtime/openmp/codelets/codelet_zsyrk.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zsyrk.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsyrk OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zsyssq.c b/runtime/openmp/codelets/codelet_zsyssq.c index fa3d1799c5503ace8a85853c7c596511a04cff76..f110bb7098fbf36f910d215bb91e908031833faf 100644 --- a/runtime/openmp/codelets/codelet_zsyssq.c +++ b/runtime/openmp/codelets/codelet_zsyssq.c @@ -2,18 +2,18 @@ * * @file openmp/codelet_zsyssq.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsyssq OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zsytrf_nopiv.c b/runtime/openmp/codelets/codelet_zsytrf_nopiv.c index 6219d3019f0e85f518c53000820d3fc059137793..a2217b32a8d02c81ebe83f6e2b00b7fa09d546c6 100644 --- a/runtime/openmp/codelets/codelet_zsytrf_nopiv.c +++ b/runtime/openmp/codelets/codelet_zsytrf_nopiv.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zsytrf_nopiv.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsytrf_nopiv OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/openmp/codelets/codelet_ztplqt.c b/runtime/openmp/codelets/codelet_ztplqt.c index f158c4e2699949a9d3f1b3683271b74dd2a7bdbd..4afcdfd8e51310ba3e8941f2bcca6e544be18ab6 100644 --- a/runtime/openmp/codelets/codelet_ztplqt.c +++ b/runtime/openmp/codelets/codelet_ztplqt.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_ztplqt.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztplqt OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/openmp/codelets/codelet_ztpmlqt.c b/runtime/openmp/codelets/codelet_ztpmlqt.c index abad44da2e77c0ddd53e2f83241f7dbc46b8c7bf..320c8c046358b9885abeb82bb786949f5bab9c68 100644 --- a/runtime/openmp/codelets/codelet_ztpmlqt.c +++ b/runtime/openmp/codelets/codelet_ztpmlqt.c @@ -2,15 +2,15 @@ * * @file openmp/codelet_ztpmlqt.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @brief Chameleon ztpmlqt OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/openmp/codelets/codelet_ztpmqrt.c b/runtime/openmp/codelets/codelet_ztpmqrt.c index a264b0117771fc0373a01abb722755e4d9d2c0d5..70591a14ff510267973a007a6e4157d7a2431558 100644 --- a/runtime/openmp/codelets/codelet_ztpmqrt.c +++ b/runtime/openmp/codelets/codelet_ztpmqrt.c @@ -2,15 +2,15 @@ * * @file openmp/codelet_ztpmqrt.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @brief Chameleon ztpmqrt OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/openmp/codelets/codelet_ztpqrt.c b/runtime/openmp/codelets/codelet_ztpqrt.c index 5bbfa7f4e20d9311e5f70273d055d4ae1ddfdd06..0fd0c4457e277e33b9464c2dbdd422a2474c2606 100644 --- a/runtime/openmp/codelets/codelet_ztpqrt.c +++ b/runtime/openmp/codelets/codelet_ztpqrt.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_ztpqrt.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztpqrt OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/openmp/codelets/codelet_ztradd.c b/runtime/openmp/codelets/codelet_ztradd.c index 662d830f87ddff79a5579992c859fee4af4945a5..ea776b003db4ad58a3bd1d5f4bfc7e4efa8a57cb 100644 --- a/runtime/openmp/codelets/codelet_ztradd.c +++ b/runtime/openmp/codelets/codelet_ztradd.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_ztradd.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztradd OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_ztrasm.c b/runtime/openmp/codelets/codelet_ztrasm.c index dc201b02cf64796e2ae77de9655b80f099a14f54..b6a59683fbecff0210639bf4421da9069d11d537 100644 --- a/runtime/openmp/codelets/codelet_ztrasm.c +++ b/runtime/openmp/codelets/codelet_ztrasm.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_ztrasm.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrasm OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_ztrmm.c b/runtime/openmp/codelets/codelet_ztrmm.c index fc8e2b3ff96d40e869ec726058431c003c2ada22..4f2fd7ddd0c7a67ef56613af7f554e316da5a487 100644 --- a/runtime/openmp/codelets/codelet_ztrmm.c +++ b/runtime/openmp/codelets/codelet_ztrmm.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_ztrmm.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrmm OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_ztrsm.c b/runtime/openmp/codelets/codelet_ztrsm.c index 741afef278034e7af981885eba7aa4206e85ff11..17bec0fb5de99474b37a14d2e415da4cd9fd4f51 100644 --- a/runtime/openmp/codelets/codelet_ztrsm.c +++ b/runtime/openmp/codelets/codelet_ztrsm.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_ztrsm.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrsm OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_ztrssq.c b/runtime/openmp/codelets/codelet_ztrssq.c index a7f27565458950861ea3772e166d00696b92494d..8dc40fd8c1db8226c2dd6a9061537fd40ea4f5bb 100644 --- a/runtime/openmp/codelets/codelet_ztrssq.c +++ b/runtime/openmp/codelets/codelet_ztrssq.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_ztrssq.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrssq OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_ztrtri.c b/runtime/openmp/codelets/codelet_ztrtri.c index 18491ba0861a96494f199c9f56cd1afd3338bb9c..3bfda6dee8962cdc1b5f05960f7efb714967a54c 100644 --- a/runtime/openmp/codelets/codelet_ztrtri.c +++ b/runtime/openmp/codelets/codelet_ztrtri.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_ztrtri.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrtri OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_ztsmlq_hetra1.c b/runtime/openmp/codelets/codelet_ztsmlq_hetra1.c index f6ab02011ae3284b254e9fbef6d01fd0a6a5718c..66fc27390bbcac4b59c10d0966d9ce21ae8f07ee 100644 --- a/runtime/openmp/codelets/codelet_ztsmlq_hetra1.c +++ b/runtime/openmp/codelets/codelet_ztsmlq_hetra1.c @@ -2,18 +2,18 @@ * * @file openmp/codelet_ztsmlq_hetra1.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztsmlq_hetra1 OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_ztsmqr_hetra1.c b/runtime/openmp/codelets/codelet_ztsmqr_hetra1.c index 1a32871fcbcf95b2ff9a4eb17237726defecee9e..f7d693030d4e3c3d3ff0e0011fb71536b55a036f 100644 --- a/runtime/openmp/codelets/codelet_ztsmqr_hetra1.c +++ b/runtime/openmp/codelets/codelet_ztsmqr_hetra1.c @@ -2,18 +2,18 @@ * * @file openmp/codelet_ztsmqr_hetra1.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztsmqr_hetra1 OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_ztstrf.c b/runtime/openmp/codelets/codelet_ztstrf.c index 9ef66b00f5af3e7bb44a7697e36b91685e5aa744..ca7793978ed3fe29c7222431f11dcf9155a157a2 100644 --- a/runtime/openmp/codelets/codelet_ztstrf.c +++ b/runtime/openmp/codelets/codelet_ztstrf.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_ztstrf.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztstrf OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zunmlq.c b/runtime/openmp/codelets/codelet_zunmlq.c index 134a7b493604bf8a52115be9913e4907040a57dd..9038b19d0f8c67068725afbcbccee2b72b83fcde 100644 --- a/runtime/openmp/codelets/codelet_zunmlq.c +++ b/runtime/openmp/codelets/codelet_zunmlq.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zunmlq.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmlq OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/codelets/codelet_zunmqr.c b/runtime/openmp/codelets/codelet_zunmqr.c index 251a27a6797cd0e498d571a71f6d386636d0b338..020cc2e70fba74da35d02d9a62087afac26ed709 100644 --- a/runtime/openmp/codelets/codelet_zunmqr.c +++ b/runtime/openmp/codelets/codelet_zunmqr.c @@ -2,17 +2,17 @@ * * @file openmp/codelet_zunmqr.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmqr OpenMP codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/openmp/control/runtime_async.c b/runtime/openmp/control/runtime_async.c index d14a19791d5edd11b49f3f5a74f2f7c0b58eacfc..5e74e6042da641ffd1ac8fd5370085bcd82829d3 100644 --- a/runtime/openmp/control/runtime_async.c +++ b/runtime/openmp/control/runtime_async.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU asynchronous routines * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost * @author Philippe Virouleau - * @date 2020-04-22 + * @date 2022-02-22 * */ #include "chameleon_openmp.h" diff --git a/runtime/openmp/control/runtime_context.c b/runtime/openmp/control/runtime_context.c index b83faded2abcc0f0514e5b5027c9104450c28f5e..a4332ef9f4b3e0840b76624cdf4c920ba8ea9e95 100644 --- a/runtime/openmp/control/runtime_context.c +++ b/runtime/openmp/control/runtime_context.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU context routines * - * @version 1.0.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Mathieu Faverge * @author Cedric Castagnede * @author Philippe Virouleau - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_openmp.h" diff --git a/runtime/openmp/control/runtime_control.c b/runtime/openmp/control/runtime_control.c index 6ab7dc0e79652a98758abb20b733e4e35d6d1862..e50193c0fd4ab8eccd8860d5f243a16edd897496 100644 --- a/runtime/openmp/control/runtime_control.c +++ b/runtime/openmp/control/runtime_control.c @@ -4,20 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU control routines * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Augonnet * @author Cedric Castagnede * @author Florent Pruvost * @author Philippe Virouleau - * @date 2020-04-22 + * @author Philippe Swartvagher + * @date 2022-02-22 * */ #include "chameleon_openmp.h" diff --git a/runtime/openmp/control/runtime_descriptor.c b/runtime/openmp/control/runtime_descriptor.c index 87c46728da5a616e1be1138631e6be99d51f5ae3..34517752d4f0d796dfb23dc51d448bfeff13f063 100644 --- a/runtime/openmp/control/runtime_descriptor.c +++ b/runtime/openmp/control/runtime_descriptor.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon OpenMP descriptor routines * - * @version 1.0.0 + * @version 1.2.0 * @author Vijay Joshi * @author Cedric Castagnede * @author Philippe Virouleau * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_openmp.h" diff --git a/runtime/openmp/control/runtime_options.c b/runtime/openmp/control/runtime_options.c index ecda9a1b41b28dcb4d23caaafdcc5e9676f9824a..c146c1f262db15734ec09fe59c941588aa342c00 100644 --- a/runtime/openmp/control/runtime_options.c +++ b/runtime/openmp/control/runtime_options.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU options routines * - * @version 1.0.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Mathieu Faverge * @author Cedric Castagnede * @author Philippe Virouleau - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_openmp.h" diff --git a/runtime/openmp/control/runtime_profiling.c b/runtime/openmp/control/runtime_profiling.c index 54382419be4507a7ed5dc352ed8cd3c73ef44e41..f582836db3bca3eeaab244d249fe2c31e762fd9c 100644 --- a/runtime/openmp/control/runtime_profiling.c +++ b/runtime/openmp/control/runtime_profiling.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU profiling routines * - * @version 1.0.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Mathieu Faverge * @author Cedric Castagnede * @author Philippe Virouleau - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_openmp.h" diff --git a/runtime/openmp/control/runtime_zlocality.c b/runtime/openmp/control/runtime_zlocality.c index 6ec6ee95d49589258f3400e47923e66d6b01d78c..440c87c189de47761dcbdbaa43a51790b7dd9d47 100644 --- a/runtime/openmp/control/runtime_zlocality.c +++ b/runtime/openmp/control/runtime_zlocality.c @@ -4,16 +4,16 @@ * * @copyright 2012-2017 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon OpenMP CHAMELEON_Complex64_t kernel locality management * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-10-15 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/openmp/control/runtime_zprofiling.c b/runtime/openmp/control/runtime_zprofiling.c index b085146860d95fb83fe76d4f5334163ece9fe92b..9fb36d58d583a6276235292d3e043e16a3edb3e2 100644 --- a/runtime/openmp/control/runtime_zprofiling.c +++ b/runtime/openmp/control/runtime_zprofiling.c @@ -4,16 +4,16 @@ * * @copyright 2012-2017 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon OpenMP CHAMELEON_Complex64_t kernel progiling * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-10-15 + * @date 2022-02-22 * */ #include "chameleon_openmp.h" diff --git a/runtime/openmp/include/chameleon_openmp.h b/runtime/openmp/include/chameleon_openmp.h index a44a63db65efceaa514090138d3628446332f943..367a0e6324c042548d2908cb2435cbe68b2f2684 100644 --- a/runtime/openmp/include/chameleon_openmp.h +++ b/runtime/openmp/include/chameleon_openmp.h @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon OpenMP runtime main header * - * @version 1.0.0 + * @version 1.2.0 * @author Philippe Virouleau * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _chameleon_openmp_h_ diff --git a/runtime/parsec/CMakeLists.txt b/runtime/parsec/CMakeLists.txt index 84e0bde292958df1d8678e774309c1f59fe40d3c..bf9fda273451a885245bdb908b701ce59f3a1d68 100644 --- a/runtime/parsec/CMakeLists.txt +++ b/runtime/parsec/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2015 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,13 +17,13 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 +# @version 1.2.0 # @author Cedric Castagnede # @author Emmanuel Agullo # @author Mathieu Faverge # @author Florent Pruvost # @author Guillaume Sylvand -# @date 2021-01-11 +# @date 2022-02-22 # ### cmake_minimum_required(VERSION 3.1) diff --git a/runtime/parsec/codelets/codelet_dlag2z.c b/runtime/parsec/codelets/codelet_dlag2z.c index 5d28abcfb2288e45e37900ff6d5593579ff4d1af..500e00d26b04490f5a5b5d97fed4c9149d9eb840 100644 --- a/runtime/parsec/codelets/codelet_dlag2z.c +++ b/runtime/parsec/codelets/codelet_dlag2z.c @@ -4,16 +4,16 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon dlag2z PaRSEC codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-10-12 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/parsec/codelets/codelet_dzasum.c b/runtime/parsec/codelets/codelet_dzasum.c index 95cf736d9bfd798d127f0a72adb60d6a586f72ca..c113438d4659142ca8228d89add9d827ec3a98ca 100644 --- a/runtime/parsec/codelets/codelet_dzasum.c +++ b/runtime/parsec/codelets/codelet_dzasum.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon dzasum PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_map.c b/runtime/parsec/codelets/codelet_map.c index b33aaa1c27c9eeed67fa3a761b9ff33b347d46ff..6fcf08517b7b28a2a2c5dfd390101891099ddc5c 100644 --- a/runtime/parsec/codelets/codelet_map.c +++ b/runtime/parsec/codelets/codelet_map.c @@ -2,16 +2,16 @@ * * @file parsec/codelet_map.c * - * @copyright 2018-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2018-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon map PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_parsec.h" diff --git a/runtime/parsec/codelets/codelet_zaxpy.c b/runtime/parsec/codelets/codelet_zaxpy.c index f03c19aa53574c1e6b846a7ced20feada31d489a..598b2325630720e3e0b18201c19d0c1157fcfad6 100644 --- a/runtime/parsec/codelets/codelet_zaxpy.c +++ b/runtime/parsec/codelets/codelet_zaxpy.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zaxpy PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zbuild.c b/runtime/parsec/codelets/codelet_zbuild.c index 53a09818aaab62b2561283a1ef5c27b27a1f5c5b..4de7f2c201ca765fa848d39f4009048308e78b0b 100644 --- a/runtime/parsec/codelets/codelet_zbuild.c +++ b/runtime/parsec/codelets/codelet_zbuild.c @@ -4,18 +4,18 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zbuild PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Guillaume Sylvand * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zcesca.c b/runtime/parsec/codelets/codelet_zcesca.c index 5018014eb6b28ec7ff7df6b02273cc98578d55d3..d270b7fb234db6c2f7d1f24210a57e0d3c8f67f0 100644 --- a/runtime/parsec/codelets/codelet_zcesca.c +++ b/runtime/parsec/codelets/codelet_zcesca.c @@ -2,16 +2,16 @@ * * @file parsec/codelet_zcesca.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zcesca PaRSEC codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost - * @date 2021-05-07 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zgeadd.c b/runtime/parsec/codelets/codelet_zgeadd.c index cb1053a6a95bb9475e00ac900afadd6b8527033d..c6a5df5ecdc5fc7ecca746320e3192ee9e851e5e 100644 --- a/runtime/parsec/codelets/codelet_zgeadd.c +++ b/runtime/parsec/codelets/codelet_zgeadd.c @@ -4,18 +4,18 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeadd PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Reazul Hoque * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zgelqt.c b/runtime/parsec/codelets/codelet_zgelqt.c index ed53599e578bb0ad10778053adca90c8b0f63362..042ced97650187083a79e66e8dd120fecde2d079 100644 --- a/runtime/parsec/codelets/codelet_zgelqt.c +++ b/runtime/parsec/codelets/codelet_zgelqt.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgelqt PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zgemm.c b/runtime/parsec/codelets/codelet_zgemm.c index 2c92f7e8250a8ddfa9f147296eacc776e3622869..303aa03ba02378093a7cedc5d02c5ea00eee9efe 100644 --- a/runtime/parsec/codelets/codelet_zgemm.c +++ b/runtime/parsec/codelets/codelet_zgemm.c @@ -4,18 +4,18 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgemm PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zgemv.c b/runtime/parsec/codelets/codelet_zgemv.c index 783ceb42c99318369b33c1ccc33718d8890a7bc6..36c8481898f66dd29ad07fd8dad0cbe561ca21c7 100644 --- a/runtime/parsec/codelets/codelet_zgemv.c +++ b/runtime/parsec/codelets/codelet_zgemv.c @@ -4,16 +4,16 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgemv PaRSEC codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-10-12 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zgeqrt.c b/runtime/parsec/codelets/codelet_zgeqrt.c index 6c5dbf6f7da8b44b37d33a917eaeac73fdbe1ce5..6f48b7585fdfa1bae1d3a594ad235915067b00ec 100644 --- a/runtime/parsec/codelets/codelet_zgeqrt.c +++ b/runtime/parsec/codelets/codelet_zgeqrt.c @@ -4,18 +4,18 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeqrt PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zgessm.c b/runtime/parsec/codelets/codelet_zgessm.c index 19102487a9231ce2013a72d7fe58912e140781ef..d2195745991ef43d7b6184f091eecd84f5d02cd3 100644 --- a/runtime/parsec/codelets/codelet_zgessm.c +++ b/runtime/parsec/codelets/codelet_zgessm.c @@ -4,18 +4,18 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgessm PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zgessq.c b/runtime/parsec/codelets/codelet_zgessq.c index 7b2f4ac8aa38054c12d4d3c72f76685c97d75f2e..7957ea71958947d2d86495258e77cc684ef6863e 100644 --- a/runtime/parsec/codelets/codelet_zgessq.c +++ b/runtime/parsec/codelets/codelet_zgessq.c @@ -4,18 +4,18 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgessq PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zgesum.c b/runtime/parsec/codelets/codelet_zgesum.c index c0e1a10dd0539db947d5784ea3c13788d294cda4..ae6611f65a3833992988e935ed62c0f25758f82d 100644 --- a/runtime/parsec/codelets/codelet_zgesum.c +++ b/runtime/parsec/codelets/codelet_zgesum.c @@ -4,16 +4,16 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgesum PaRSEC codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost - * @date 2021-05-07 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zgetrf.c b/runtime/parsec/codelets/codelet_zgetrf.c index 3b9fbc5a9ba94ec8925b0bd27bed144ef5c80f47..31f22608dfe73921478cc109e081f82780a6fa93 100644 --- a/runtime/parsec/codelets/codelet_zgetrf.c +++ b/runtime/parsec/codelets/codelet_zgetrf.c @@ -4,18 +4,18 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrf PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zgetrf_incpiv.c b/runtime/parsec/codelets/codelet_zgetrf_incpiv.c index 1bdf3e38a960a5f41de2afa87ab8293340e3bbad..7fd412e0f152a3979e7e544817da1519ff843fd6 100644 --- a/runtime/parsec/codelets/codelet_zgetrf_incpiv.c +++ b/runtime/parsec/codelets/codelet_zgetrf_incpiv.c @@ -4,18 +4,18 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrf_incpiv PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zgetrf_nopiv.c b/runtime/parsec/codelets/codelet_zgetrf_nopiv.c index 65447212d470eeb905277536db7774736532cc56..cf95237896641e349fb3fa4c143a52e85660cfe2 100644 --- a/runtime/parsec/codelets/codelet_zgetrf_nopiv.c +++ b/runtime/parsec/codelets/codelet_zgetrf_nopiv.c @@ -4,18 +4,18 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrf_nopiv PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zgram.c b/runtime/parsec/codelets/codelet_zgram.c index 55c60abdfcc1978816fb5b6b0cb1098f242dde6e..b07d1c4283a2f79abe5bd96a43711f6edd98dae5 100644 --- a/runtime/parsec/codelets/codelet_zgram.c +++ b/runtime/parsec/codelets/codelet_zgram.c @@ -2,17 +2,17 @@ * * @file parsec/codelet_zgram.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgram PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zhe2ge.c b/runtime/parsec/codelets/codelet_zhe2ge.c index 8e48b096af1402f8695af738b9a1eb4724ec4bed..5d54c8f1ecc50c52d91aa12765627dd5297f2c3f 100644 --- a/runtime/parsec/codelets/codelet_zhe2ge.c +++ b/runtime/parsec/codelets/codelet_zhe2ge.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zhe2ge PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zhemm.c b/runtime/parsec/codelets/codelet_zhemm.c index 066e450549f18cec3ae89ad315725c9fcce40418..a1c398308c514eaaea41be192c061bc42b09ac09 100644 --- a/runtime/parsec/codelets/codelet_zhemm.c +++ b/runtime/parsec/codelets/codelet_zhemm.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zhemm PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/parsec/codelets/codelet_zher2k.c b/runtime/parsec/codelets/codelet_zher2k.c index 958155b40a09bd1003f3343d4a6948a73958ca7f..ddadf2b4921907cbb43f09c069e62bdf93b16e2c 100644 --- a/runtime/parsec/codelets/codelet_zher2k.c +++ b/runtime/parsec/codelets/codelet_zher2k.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zher2k PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/parsec/codelets/codelet_zherfb.c b/runtime/parsec/codelets/codelet_zherfb.c index fe703f09a89bf80503664f9c0002f73c1fd4362f..b5cb8072e904d6168b026c5d53878b6c8b4181dc 100644 --- a/runtime/parsec/codelets/codelet_zherfb.c +++ b/runtime/parsec/codelets/codelet_zherfb.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_blas PaRSEC wrapper * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zherk.c b/runtime/parsec/codelets/codelet_zherk.c index 83a8873e7da4c76c1001dd80f1ddadf222176f56..7245b4568120f0ad0193c184e89696c7a8546af7 100644 --- a/runtime/parsec/codelets/codelet_zherk.c +++ b/runtime/parsec/codelets/codelet_zherk.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zherk PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/parsec/codelets/codelet_zhessq.c b/runtime/parsec/codelets/codelet_zhessq.c index b0c6c74b3d6af489f5f2bfaf6c249eff99ca5842..7d14af80fe15ec7b31ab903c335d6317ce96aa0e 100644 --- a/runtime/parsec/codelets/codelet_zhessq.c +++ b/runtime/parsec/codelets/codelet_zhessq.c @@ -4,18 +4,18 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zhessq PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/parsec/codelets/codelet_zlacpy.c b/runtime/parsec/codelets/codelet_zlacpy.c index 1c2b732f92db04032f3a2e562552b15f3679cfdf..5c047798d8227eb7618d6490d08ab00e2d4abee2 100644 --- a/runtime/parsec/codelets/codelet_zlacpy.c +++ b/runtime/parsec/codelets/codelet_zlacpy.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlacpy PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zlag2c.c b/runtime/parsec/codelets/codelet_zlag2c.c index ab3ce063f342c2b605d9fe59c2d4c6e21a233cbb..24255ade3f3e1dacfa3f9c491eadd4ef3b13d056 100644 --- a/runtime/parsec/codelets/codelet_zlag2c.c +++ b/runtime/parsec/codelets/codelet_zlag2c.c @@ -4,18 +4,18 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlag2c PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zlange.c b/runtime/parsec/codelets/codelet_zlange.c index 32dfc6a949618326d504d56c6e6e39e4e3691e56..94e19d116b4370ea8b016801668ad60b43be1ddb 100644 --- a/runtime/parsec/codelets/codelet_zlange.c +++ b/runtime/parsec/codelets/codelet_zlange.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlange PaRSEC codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-09-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zlanhe.c b/runtime/parsec/codelets/codelet_zlanhe.c index b4e556d9f96bc5734c76d24cc8239bbfa0f9fef0..f3974b789636061521a2cb75f97fd74777ab4882 100644 --- a/runtime/parsec/codelets/codelet_zlanhe.c +++ b/runtime/parsec/codelets/codelet_zlanhe.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlanhe PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/parsec/codelets/codelet_zlansy.c b/runtime/parsec/codelets/codelet_zlansy.c index 12373a0d4337475a220e8b8531e9af5a63956c8b..453696c73cb75381c73b8f5205f902ec854a13d8 100644 --- a/runtime/parsec/codelets/codelet_zlansy.c +++ b/runtime/parsec/codelets/codelet_zlansy.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlansy PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zlantr.c b/runtime/parsec/codelets/codelet_zlantr.c index 84c9dfa0abcf763982e0a73ebdf7fe72f2c2ccbb..a487218c01760ea5fdad89e0a2e37eca8bbbfaa0 100644 --- a/runtime/parsec/codelets/codelet_zlantr.c +++ b/runtime/parsec/codelets/codelet_zlantr.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlantr PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zlascal.c b/runtime/parsec/codelets/codelet_zlascal.c index eded3f55013a12efa50d0de3d870860649f447ad..00aa26b75bce275dd6b8062f940a50007304a2bf 100644 --- a/runtime/parsec/codelets/codelet_zlascal.c +++ b/runtime/parsec/codelets/codelet_zlascal.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlascal PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Julien Langou * @author Henricus Bouwmeester * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zlaset.c b/runtime/parsec/codelets/codelet_zlaset.c index fea7c911ec331e52f1e739c7b3acf46fa425f43f..54cabb8b505e72748a5eb35c3f346475f66723f5 100644 --- a/runtime/parsec/codelets/codelet_zlaset.c +++ b/runtime/parsec/codelets/codelet_zlaset.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlaset PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zlaset2.c b/runtime/parsec/codelets/codelet_zlaset2.c index fef44ec1b0bfc5c94c55fa6c778852cafc2a183f..575f64e2373bafcc649e2be4fb30e5a78eb28c8c 100644 --- a/runtime/parsec/codelets/codelet_zlaset2.c +++ b/runtime/parsec/codelets/codelet_zlaset2.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlaset2 PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zlatro.c b/runtime/parsec/codelets/codelet_zlatro.c index 8e03d0914b32660e0316c7150d16ee2d104b900d..595677f0a1e1a6e0e477f5f645489eee01da1706 100644 --- a/runtime/parsec/codelets/codelet_zlatro.c +++ b/runtime/parsec/codelets/codelet_zlatro.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon core_blas PaRSEC wrapper * - * @version 1.0.0 + * @version 1.2.0 * @author Azzam Haidar * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zlauum.c b/runtime/parsec/codelets/codelet_zlauum.c index c2f7efe3bc86c0a13d8d7f12416962c8e2e51f39..c770bef878a161952d3b8520e78b0f63af159573 100644 --- a/runtime/parsec/codelets/codelet_zlauum.c +++ b/runtime/parsec/codelets/codelet_zlauum.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlauum PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zplghe.c b/runtime/parsec/codelets/codelet_zplghe.c index 11d0e49a284dff8f650549794f40b8c539a192f3..6a6f7d23b27558d4f601d2e8c69b9ab29c3009c2 100644 --- a/runtime/parsec/codelets/codelet_zplghe.c +++ b/runtime/parsec/codelets/codelet_zplghe.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplghe PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/parsec/codelets/codelet_zplgsy.c b/runtime/parsec/codelets/codelet_zplgsy.c index 98e116ceacc46ef4d3d3087b18e66fa432732422..c27674a52a4c11e5d20e7d8b6988c2a9beab0385 100644 --- a/runtime/parsec/codelets/codelet_zplgsy.c +++ b/runtime/parsec/codelets/codelet_zplgsy.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplgsy PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zplrnt.c b/runtime/parsec/codelets/codelet_zplrnt.c index 43af4675b087f959688ef0d3df7731264dd2d1a3..544dfcde205243653aa0887781465d33b4d606c0 100644 --- a/runtime/parsec/codelets/codelet_zplrnt.c +++ b/runtime/parsec/codelets/codelet_zplrnt.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplrnt PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zplssq.c b/runtime/parsec/codelets/codelet_zplssq.c index 1231b5304b0b371006b2c5667f218a8a60baa6c9..8b57d91a562f4d05f158416245794ae173b33033 100644 --- a/runtime/parsec/codelets/codelet_zplssq.c +++ b/runtime/parsec/codelets/codelet_zplssq.c @@ -4,18 +4,18 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplssq PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zpotrf.c b/runtime/parsec/codelets/codelet_zpotrf.c index 5d7a7624222fb08c62ba55c3e8217d9092db625f..a45ca5e081133a01289789d4f11074624b760479 100644 --- a/runtime/parsec/codelets/codelet_zpotrf.c +++ b/runtime/parsec/codelets/codelet_zpotrf.c @@ -4,18 +4,18 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zpotrf PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zssssm.c b/runtime/parsec/codelets/codelet_zssssm.c index d3d2eaac912e1e4dfa7b3edbe2781eacef3e0bb8..5e441fc5f9938e87a9482b1abcd2176a471e2298 100644 --- a/runtime/parsec/codelets/codelet_zssssm.c +++ b/runtime/parsec/codelets/codelet_zssssm.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zssssm PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zsymm.c b/runtime/parsec/codelets/codelet_zsymm.c index 93ef4c5e9c220ede9d0b1d54f967d40a27d4bf21..cf8fc50cd9c3a2f3718e3be355a5ee731e65a656 100644 --- a/runtime/parsec/codelets/codelet_zsymm.c +++ b/runtime/parsec/codelets/codelet_zsymm.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsymm PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zsyr2k.c b/runtime/parsec/codelets/codelet_zsyr2k.c index 41da64f3f86b67370e05c053c899746e0604b7a4..287a47b8e87740463f19248cb3e121c1ff563686 100644 --- a/runtime/parsec/codelets/codelet_zsyr2k.c +++ b/runtime/parsec/codelets/codelet_zsyr2k.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsyr2k PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zsyrk.c b/runtime/parsec/codelets/codelet_zsyrk.c index 3e0d22d04976a5d12c92341b215251fbd0245768..437486c30b4d935d96b6bb70ec414b93dfce9a23 100644 --- a/runtime/parsec/codelets/codelet_zsyrk.c +++ b/runtime/parsec/codelets/codelet_zsyrk.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsyrk PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zsyssq.c b/runtime/parsec/codelets/codelet_zsyssq.c index cb95d4bd52469248c7c98d25af6d8ce4d5ecf5d9..1c3dfbfd28f8f30671c49aa8fa32eda375c3a634 100644 --- a/runtime/parsec/codelets/codelet_zsyssq.c +++ b/runtime/parsec/codelets/codelet_zsyssq.c @@ -4,18 +4,18 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsyssq PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zsytrf_nopiv.c b/runtime/parsec/codelets/codelet_zsytrf_nopiv.c index 0a9033c481f3fedddef879f13cda12099565916b..6ad4e0f6bf5df1fd0be2be21511349d7627b5203 100644 --- a/runtime/parsec/codelets/codelet_zsytrf_nopiv.c +++ b/runtime/parsec/codelets/codelet_zsytrf_nopiv.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsytrf_nopiv PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/parsec/codelets/codelet_ztplqt.c b/runtime/parsec/codelets/codelet_ztplqt.c index 82e89b8077293d2d586977abb988ba372037388f..9846e076f31dc581e7c22e96875afe12eb2cfaf8 100644 --- a/runtime/parsec/codelets/codelet_ztplqt.c +++ b/runtime/parsec/codelets/codelet_ztplqt.c @@ -4,16 +4,16 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztplqt PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/parsec/codelets/codelet_ztpmlqt.c b/runtime/parsec/codelets/codelet_ztpmlqt.c index 8b220f70eea3f5af58fab90e9dae4e4bf8b3bdf8..b835dd7c88f8bd4fb03373f780cb9fdb3639fce9 100644 --- a/runtime/parsec/codelets/codelet_ztpmlqt.c +++ b/runtime/parsec/codelets/codelet_ztpmlqt.c @@ -4,16 +4,16 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztpmlqt PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/parsec/codelets/codelet_ztpmqrt.c b/runtime/parsec/codelets/codelet_ztpmqrt.c index 75ffdeb9420ca881f20144560c9b486ab0793f5d..91589614ad317f972e395a02779337e1d9a55c71 100644 --- a/runtime/parsec/codelets/codelet_ztpmqrt.c +++ b/runtime/parsec/codelets/codelet_ztpmqrt.c @@ -4,16 +4,16 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztpmqrt PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/parsec/codelets/codelet_ztpqrt.c b/runtime/parsec/codelets/codelet_ztpqrt.c index 4d1e7bcdca7a09357f657ccecd129d03f5b50c85..353870b3d0ccaa9690ad0dc8be1d079296b0e2c3 100644 --- a/runtime/parsec/codelets/codelet_ztpqrt.c +++ b/runtime/parsec/codelets/codelet_ztpqrt.c @@ -4,16 +4,16 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztpqrt PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/parsec/codelets/codelet_ztradd.c b/runtime/parsec/codelets/codelet_ztradd.c index f7de42bf733c1096c722cacf4e1e00c666e3566c..9d176222aa26791e6cb0fdc59a2bc9fd985d5fb1 100644 --- a/runtime/parsec/codelets/codelet_ztradd.c +++ b/runtime/parsec/codelets/codelet_ztradd.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztradd PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_ztrasm.c b/runtime/parsec/codelets/codelet_ztrasm.c index 8de5a5f091407c1f0f06b5de27d6f9bf563754cf..135111d7b52f35ec4ac95672ed77962d33e44d9f 100644 --- a/runtime/parsec/codelets/codelet_ztrasm.c +++ b/runtime/parsec/codelets/codelet_ztrasm.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrasm PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_ztrmm.c b/runtime/parsec/codelets/codelet_ztrmm.c index 978ffa8bc1abfe39853a51e288d8f3f93044e2af..2d205ce91b8d9de5c2a343f57479d7c45152db1e 100644 --- a/runtime/parsec/codelets/codelet_ztrmm.c +++ b/runtime/parsec/codelets/codelet_ztrmm.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrmm PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_ztrsm.c b/runtime/parsec/codelets/codelet_ztrsm.c index 4ab4c68469047a60df7bfe37dc29dfae159b7fd1..d080b5081b7b25bc7f666f17eb1d233ebbb787d9 100644 --- a/runtime/parsec/codelets/codelet_ztrsm.c +++ b/runtime/parsec/codelets/codelet_ztrsm.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrsm PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_ztrssq.c b/runtime/parsec/codelets/codelet_ztrssq.c index 1c3683d51262335a7813e53d6a9196389af0b300..49a6f3d7896f2abbb91fc0e82ca1acea1372a99c 100644 --- a/runtime/parsec/codelets/codelet_ztrssq.c +++ b/runtime/parsec/codelets/codelet_ztrssq.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrssq PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_ztrtri.c b/runtime/parsec/codelets/codelet_ztrtri.c index f1a23bcd7089e4ca13653d4532a68a1cdf91da29..975d4f2c35925cd7c8163d3254cf49f44668ea4a 100644 --- a/runtime/parsec/codelets/codelet_ztrtri.c +++ b/runtime/parsec/codelets/codelet_ztrtri.c @@ -4,18 +4,18 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrtri PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_ztsmlq_hetra1.c b/runtime/parsec/codelets/codelet_ztsmlq_hetra1.c index 26635d22156a40a681361acdb32b285e2a51bd1e..e7926219d8f0d466afcfdfea5bb72bb045bdd21d 100644 --- a/runtime/parsec/codelets/codelet_ztsmlq_hetra1.c +++ b/runtime/parsec/codelets/codelet_ztsmlq_hetra1.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztsmlq_hetra1 PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Mathieu Faverge * @author Jakub Kurzak * @author Azzam Haidar - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_ztsmqr_hetra1.c b/runtime/parsec/codelets/codelet_ztsmqr_hetra1.c index fbc00f607137dd7327ecc458919ac67f37b188e5..0917f3463cfe10776da66e8763e3b579d2ecb74b 100644 --- a/runtime/parsec/codelets/codelet_ztsmqr_hetra1.c +++ b/runtime/parsec/codelets/codelet_ztsmqr_hetra1.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztsmqr_hetra1 PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Mathieu Faverge * @author Jakub Kurzak * @author Azzam Haidar - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_ztstrf.c b/runtime/parsec/codelets/codelet_ztstrf.c index d7e832e80599aaad5c98cc604b17677cb0156066..aea099c57863d015074b6b1053dff40078469557 100644 --- a/runtime/parsec/codelets/codelet_ztstrf.c +++ b/runtime/parsec/codelets/codelet_ztstrf.c @@ -4,18 +4,18 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztstrf PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zunmlq.c b/runtime/parsec/codelets/codelet_zunmlq.c index f5f5c1785952d7b15463e1d57e6bbca073f17220..694700034fb05386905978760a0aaabc8be2951a 100644 --- a/runtime/parsec/codelets/codelet_zunmlq.c +++ b/runtime/parsec/codelets/codelet_zunmlq.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmlq PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/codelets/codelet_zunmqr.c b/runtime/parsec/codelets/codelet_zunmqr.c index 579f5eee5bf49ecf21e733027d313fa7007f7381..96770229211817ade8f74700d340ec534b17529f 100644 --- a/runtime/parsec/codelets/codelet_zunmqr.c +++ b/runtime/parsec/codelets/codelet_zunmqr.c @@ -4,17 +4,17 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmqr PaRSEC codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/parsec/control/runtime_async.c b/runtime/parsec/control/runtime_async.c index 792e18c10ef43e881c57bcdbef5d4526ef182452..0b2d744fc4f572911afd838cb7a8142be6a21229 100644 --- a/runtime/parsec/control/runtime_async.c +++ b/runtime/parsec/control/runtime_async.c @@ -4,18 +4,18 @@ * * @copyright 2012-2017 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon PaRSEC asynchronous routines * - * @version 1.1.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-04-22 + * @date 2022-02-22 * */ #include "chameleon_parsec.h" diff --git a/runtime/parsec/control/runtime_context.c b/runtime/parsec/control/runtime_context.c index 6b51b5e9a20a3305fe6c19fd74f5775e549f8ee7..a15d52eeede14e037c752b7eb7fde144177d59a9 100644 --- a/runtime/parsec/control/runtime_context.c +++ b/runtime/parsec/control/runtime_context.c @@ -4,17 +4,17 @@ * * @copyright 2012-2017 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon PaRSEC context routines * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_parsec.h" diff --git a/runtime/parsec/control/runtime_control.c b/runtime/parsec/control/runtime_control.c index f4c20c35dd4b581245f2a057442e13dc82cc8014..5a5347866f596eba12444fe8ed66085a4adafe8c 100644 --- a/runtime/parsec/control/runtime_control.c +++ b/runtime/parsec/control/runtime_control.c @@ -4,18 +4,19 @@ * * @copyright 2012-2017 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon PaRSEC control routines * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge * @author Samuel Thibault - * @date 2020-03-03 + * @author Philippe Swartvagher + * @date 2022-02-22 * */ #include "chameleon_parsec.h" diff --git a/runtime/parsec/control/runtime_descriptor.c b/runtime/parsec/control/runtime_descriptor.c index be2a095c11cc86f5a307f294dd307d52578bd423..b181ff8b927d620af2415b8c46238026e1aac603 100644 --- a/runtime/parsec/control/runtime_descriptor.c +++ b/runtime/parsec/control/runtime_descriptor.c @@ -4,19 +4,19 @@ * * @copyright 2012-2017 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon PaRSEC descriptor routines * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge * @author Guillaume Sylvand * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_parsec.h" diff --git a/runtime/parsec/control/runtime_options.c b/runtime/parsec/control/runtime_options.c index 0c56ead88c34e50e8c09f00ed702246686e250fa..dac3176f5e3af7091fcf3d6a07be01a12c3b47f7 100644 --- a/runtime/parsec/control/runtime_options.c +++ b/runtime/parsec/control/runtime_options.c @@ -4,17 +4,17 @@ * * @copyright 2012-2017 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon PaRSEC options routines * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_parsec.h" diff --git a/runtime/parsec/control/runtime_profiling.c b/runtime/parsec/control/runtime_profiling.c index 35ea06a1e55232da4113074b3e75c92b2dc484d9..9951f0989016f1ee83498c8f4d175427a907c298 100644 --- a/runtime/parsec/control/runtime_profiling.c +++ b/runtime/parsec/control/runtime_profiling.c @@ -4,18 +4,18 @@ * * @copyright 2012-2017 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon PaRSEC profiling routines * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_parsec.h" diff --git a/runtime/parsec/control/runtime_zlocality.c b/runtime/parsec/control/runtime_zlocality.c index f7a9a5bfc943bb2e068dd2134fb68e949885f183..09fdff6c423ca49b2c468aaffd4d8b0a18dc930d 100644 --- a/runtime/parsec/control/runtime_zlocality.c +++ b/runtime/parsec/control/runtime_zlocality.c @@ -4,16 +4,16 @@ * * @copyright 2012-2017 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon PaRSEC CHAMELEON_Complex64_t kernel locality management * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-10-15 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/parsec/control/runtime_zprofiling.c b/runtime/parsec/control/runtime_zprofiling.c index 18331d4ae4b404ee94ec302d906b3e7e150a46c3..2bee55cca7ed066cbb207be61faf60729efbd4c4 100644 --- a/runtime/parsec/control/runtime_zprofiling.c +++ b/runtime/parsec/control/runtime_zprofiling.c @@ -4,17 +4,17 @@ * * @copyright 2012-2017 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon PaRSEC CHAMELEON_Complex64_t kernel progiling * - * @version 1.0.0 + * @version 1.2.0 * @author Reazul Hoque * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_parsec.h" diff --git a/runtime/parsec/include/chameleon_parsec.h b/runtime/parsec/include/chameleon_parsec.h index fdec33ac6500ac269ef0972eeda24ab39ee422d2..99054364a4aca47b585944ead5a0e64c0e92e5d9 100644 --- a/runtime/parsec/include/chameleon_parsec.h +++ b/runtime/parsec/include/chameleon_parsec.h @@ -4,19 +4,19 @@ * * @copyright 2009-2015 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon PaRSEC runtime header * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Reazul Hoque * @author Florent Pruvost * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _chameleon_parsec_h_ diff --git a/runtime/quark/CMakeLists.txt b/runtime/quark/CMakeLists.txt index 582ea17a459fea90d0d2b7f23489be9fe85692cf..ceccd00b99c2ff4718bb6ce3348a885efe0350fe 100644 --- a/runtime/quark/CMakeLists.txt +++ b/runtime/quark/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2015 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,13 +17,13 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 +# @version 1.2.0 # @author Cedric Castagnede # @author Emmanuel Agullo # @author Mathieu Faverge # @author Florent Pruvost # @author Guillaume Sylvand -# @date 2021-01-11 +# @date 2022-02-22 # ### cmake_minimum_required(VERSION 3.1) diff --git a/runtime/quark/codelets/codelet_dlag2z.c b/runtime/quark/codelets/codelet_dlag2z.c index 27fb943afe2caf97fd3069727186f3c8a181298a..8fa9f0f11996171c788a79ff6decc797a2316766 100644 --- a/runtime/quark/codelets/codelet_dlag2z.c +++ b/runtime/quark/codelets/codelet_dlag2z.c @@ -4,16 +4,16 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon dlag2z Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-10-12 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/quark/codelets/codelet_dzasum.c b/runtime/quark/codelets/codelet_dzasum.c index 339c37bb471be9a3a67ec3ca638c1b39e91a00a8..0ff35b1fb39342b1d6f70f46cad9e32d694a1ca8 100644 --- a/runtime/quark/codelets/codelet_dzasum.c +++ b/runtime/quark/codelets/codelet_dzasum.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon dzasum Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_map.c b/runtime/quark/codelets/codelet_map.c index 31aec02663157e5ae3a042246e14ae4f65aed364..75af2a82d92996abe411db3327a89e2d4b023ac7 100644 --- a/runtime/quark/codelets/codelet_map.c +++ b/runtime/quark/codelets/codelet_map.c @@ -2,16 +2,16 @@ * * @file quark/codelet_map.c * - * @copyright 2018-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2018-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon map Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_quark.h" diff --git a/runtime/quark/codelets/codelet_zaxpy.c b/runtime/quark/codelets/codelet_zaxpy.c index 19abf343dbcff08050c82a53b38aff48c7135b23..49b432390cbf9d2360a7f14d734d7eb001b00ae0 100644 --- a/runtime/quark/codelets/codelet_zaxpy.c +++ b/runtime/quark/codelets/codelet_zaxpy.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zaxpy Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-06-29 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zbuild.c b/runtime/quark/codelets/codelet_zbuild.c index 18fe0a4af1565a0f66cddeab364f256ba6f288fc..099f3aac9938f98ece79f237fd7e6cde49893b84 100644 --- a/runtime/quark/codelets/codelet_zbuild.c +++ b/runtime/quark/codelets/codelet_zbuild.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zbuild Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Piotr Luszczek * @author Pierre Lemarinier * @author Mathieu Faverge @@ -19,7 +19,7 @@ * @author Cedric Castagnede * @author Guillaume Sylvand * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zcesca.c b/runtime/quark/codelets/codelet_zcesca.c index 6339719f74509d1b36b304a8ff9e086b59041d0a..8e9ead715f2fb1317eb98cba2173900f117a8c62 100644 --- a/runtime/quark/codelets/codelet_zcesca.c +++ b/runtime/quark/codelets/codelet_zcesca.c @@ -2,16 +2,16 @@ * * @file quark/codelet_zcesca.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zcesca Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost - * @date 2021-05-07 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zgeadd.c b/runtime/quark/codelets/codelet_zgeadd.c index 8ac93301ddb9bb33ae89031793d76e74f42619a7..832152cc8602959fd10d9dc49ab0085ad76fb336 100644 --- a/runtime/quark/codelets/codelet_zgeadd.c +++ b/runtime/quark/codelets/codelet_zgeadd.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeadd Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost * @author Raphael Boucherie - * @date 2020-06-29 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zgelqt.c b/runtime/quark/codelets/codelet_zgelqt.c index 96a05b4678cc371d4957b2a69300aa60ffbfdb38..ce32d269d54ffc029476b7eccd5328815c6f38af 100644 --- a/runtime/quark/codelets/codelet_zgelqt.c +++ b/runtime/quark/codelets/codelet_zgelqt.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgelqt Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zgemm.c b/runtime/quark/codelets/codelet_zgemm.c index 6d9ad0329d52758e254a8a48e5b422796c519609..487fe27cc6a57fe548ed2a0b81cdddc26b3a517d 100644 --- a/runtime/quark/codelets/codelet_zgemm.c +++ b/runtime/quark/codelets/codelet_zgemm.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgemm Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-06-29 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zgemv.c b/runtime/quark/codelets/codelet_zgemv.c index 1b8f236c3118c4fcc28f88b14d13114c599c6f82..927ed570962d0175b6a89572a1b3eff14a6482be 100644 --- a/runtime/quark/codelets/codelet_zgemv.c +++ b/runtime/quark/codelets/codelet_zgemv.c @@ -4,16 +4,16 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgemv Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-10-12 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zgeqrt.c b/runtime/quark/codelets/codelet_zgeqrt.c index 344c52112ada7fb91e16920e95e928112a3894aa..120a0f13ec2835d14782bfdf1c9072b23455f8ac 100644 --- a/runtime/quark/codelets/codelet_zgeqrt.c +++ b/runtime/quark/codelets/codelet_zgeqrt.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeqrt Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zgessm.c b/runtime/quark/codelets/codelet_zgessm.c index e2336c23d72c355a629280f7f37703a1596c82d9..4f78f4bb7de43581edf98879e9d3b6f7d6785491 100644 --- a/runtime/quark/codelets/codelet_zgessm.c +++ b/runtime/quark/codelets/codelet_zgessm.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgessm Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zgessq.c b/runtime/quark/codelets/codelet_zgessq.c index e4ba41a11675f883422255ce199a0b20316c5ee7..429de3f6bf9f33f3a53407615b03bac55b9694d7 100644 --- a/runtime/quark/codelets/codelet_zgessq.c +++ b/runtime/quark/codelets/codelet_zgessq.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgessq Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zgesum.c b/runtime/quark/codelets/codelet_zgesum.c index 51b4e427e8a27e75a606e65065475abb0e2a72d3..7b8af0d7ad980c02b0ced18f6abb920cf19455ca 100644 --- a/runtime/quark/codelets/codelet_zgesum.c +++ b/runtime/quark/codelets/codelet_zgesum.c @@ -2,16 +2,16 @@ * * @file quark/codelet_zgesum.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgesum Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost - * @date 2021-05-07 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zgetrf.c b/runtime/quark/codelets/codelet_zgetrf.c index 4e9c40adcd30eec1ba79c275ad4f79231ca8b15f..b283c9871692a910fca6fe8db1c4331c1ca630f6 100644 --- a/runtime/quark/codelets/codelet_zgetrf.c +++ b/runtime/quark/codelets/codelet_zgetrf.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrf Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zgetrf_incpiv.c b/runtime/quark/codelets/codelet_zgetrf_incpiv.c index 3cfe46a71c0f8305f0b46693337c06f00abc0af8..aae76b5ccff234eeed60a18a0869fc5e36df5b20 100644 --- a/runtime/quark/codelets/codelet_zgetrf_incpiv.c +++ b/runtime/quark/codelets/codelet_zgetrf_incpiv.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrf_incpiv Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge @@ -19,7 +19,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Raphael Boucherie - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zgetrf_nopiv.c b/runtime/quark/codelets/codelet_zgetrf_nopiv.c index b59d417e9c516f9d9fb8176e840758e3f82767df..a55dc2e566a2eb19be289cddcaf9a22bdac1519d 100644 --- a/runtime/quark/codelets/codelet_zgetrf_nopiv.c +++ b/runtime/quark/codelets/codelet_zgetrf_nopiv.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrf_nopiv Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Omar Zenati * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zgram.c b/runtime/quark/codelets/codelet_zgram.c index 996a6ffe543f3ed07e8587ffbcd5cbc709d5afca..6174ecc066d03b95559a3ab256ceeae4a1b495a0 100644 --- a/runtime/quark/codelets/codelet_zgram.c +++ b/runtime/quark/codelets/codelet_zgram.c @@ -2,17 +2,17 @@ * * @file quark/codelet_zgram.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgram Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zhe2ge.c b/runtime/quark/codelets/codelet_zhe2ge.c index 73d5f6f6704fd28c29a5200754f0bd4b20052891..45d8a259bf81e63c023ec093483badee3103a6ae 100644 --- a/runtime/quark/codelets/codelet_zhe2ge.c +++ b/runtime/quark/codelets/codelet_zhe2ge.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zhe2ge Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-06-29 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zhemm.c b/runtime/quark/codelets/codelet_zhemm.c index 066dc3d52b946f006977935993e315ce2b361c3d..9ab119755135f795ebc39031bd08795f5a59b07b 100644 --- a/runtime/quark/codelets/codelet_zhemm.c +++ b/runtime/quark/codelets/codelet_zhemm.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zhemm Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-06-29 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/quark/codelets/codelet_zher2k.c b/runtime/quark/codelets/codelet_zher2k.c index 7393e917b948fb0b1fb9b369bbf6a56c7e22a010..fbd92488c749b7f4e485666df53e90ad0e5028ee 100644 --- a/runtime/quark/codelets/codelet_zher2k.c +++ b/runtime/quark/codelets/codelet_zher2k.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zher2k Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-06-29 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/quark/codelets/codelet_zherfb.c b/runtime/quark/codelets/codelet_zherfb.c index be618576f2d99ef70bcdb8bb8d589822bb83e5d6..fff232c134f0af0a4214ea2e1c678768a777404c 100644 --- a/runtime/quark/codelets/codelet_zherfb.c +++ b/runtime/quark/codelets/codelet_zherfb.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zherfb Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zherk.c b/runtime/quark/codelets/codelet_zherk.c index 1a1f4cd8a9b9ae6bcfe19085ad5f6a28b48a63be..54a7c9d75b02f5f69dff618aba7689ab4147b925 100644 --- a/runtime/quark/codelets/codelet_zherk.c +++ b/runtime/quark/codelets/codelet_zherk.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zherk Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-06-29 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/quark/codelets/codelet_zhessq.c b/runtime/quark/codelets/codelet_zhessq.c index 509a12f226f21068b608ce435f058c471f011ffe..1a650ea8801b2026cb96361217869c1db0132bfc 100644 --- a/runtime/quark/codelets/codelet_zhessq.c +++ b/runtime/quark/codelets/codelet_zhessq.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zhessq Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/quark/codelets/codelet_zlacpy.c b/runtime/quark/codelets/codelet_zlacpy.c index 79085b4f0eaafd632ce36b41cd016673ab7c70c5..11992d320efc8269d9e2a5ea62f9f409849b7487 100644 --- a/runtime/quark/codelets/codelet_zlacpy.c +++ b/runtime/quark/codelets/codelet_zlacpy.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlacpy Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Julien Langou * @author Henricus Bouwmeester * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zlag2c.c b/runtime/quark/codelets/codelet_zlag2c.c index 508f84a593dc9fca3f292de99e687995330e335a..336540606b8c3536aa2bd73407233c847174d52c 100644 --- a/runtime/quark/codelets/codelet_zlag2c.c +++ b/runtime/quark/codelets/codelet_zlag2c.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlag2c Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions mixed zc -> ds * */ diff --git a/runtime/quark/codelets/codelet_zlange.c b/runtime/quark/codelets/codelet_zlange.c index 920e83e65f788b0e0f88cfe1045410fedd9ff702..83574b8e096ade3d532165a8e0919aaf41d097a0 100644 --- a/runtime/quark/codelets/codelet_zlange.c +++ b/runtime/quark/codelets/codelet_zlange.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlange Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Julien Langou * @author Henricus Bouwmeester * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zlanhe.c b/runtime/quark/codelets/codelet_zlanhe.c index d8b1804080531c87d5cd469c105e93f2197d1717..4d3108e53abe4b3295d7bc56b0981d1d7efb89ca 100644 --- a/runtime/quark/codelets/codelet_zlanhe.c +++ b/runtime/quark/codelets/codelet_zlanhe.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlanhe Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Julien Langou * @author Henricus Bouwmeester * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/quark/codelets/codelet_zlansy.c b/runtime/quark/codelets/codelet_zlansy.c index 9c75b979259f95b02271c06f6252ba843412801c..8e750e0fb2425c50ced06e893f7fadba3a2dfe7f 100644 --- a/runtime/quark/codelets/codelet_zlansy.c +++ b/runtime/quark/codelets/codelet_zlansy.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlansy Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Julien Langou * @author Henricus Bouwmeester * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zlantr.c b/runtime/quark/codelets/codelet_zlantr.c index 38a3a5f897e331c8e3104c5a2832bf09fd57bf54..ca433c19b5da96ff98f27ea2aed569d766b5f48c 100644 --- a/runtime/quark/codelets/codelet_zlantr.c +++ b/runtime/quark/codelets/codelet_zlantr.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlantr Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zlascal.c b/runtime/quark/codelets/codelet_zlascal.c index 93565a1732497b2fafd5022ba0d197ac06469288..a331984a77256f5875394ed2740682a42332dbdb 100644 --- a/runtime/quark/codelets/codelet_zlascal.c +++ b/runtime/quark/codelets/codelet_zlascal.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlascal Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Julien Langou * @author Henricus Bouwmeester * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede - * @date 2020-06-29 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zlaset.c b/runtime/quark/codelets/codelet_zlaset.c index 581c8c1dfa8cb09fb9b4526ccb3580b3867f1174..d44f8e097e8591b6094a63aafaa7d6b277d4fe7d 100644 --- a/runtime/quark/codelets/codelet_zlaset.c +++ b/runtime/quark/codelets/codelet_zlaset.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlaset Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zlaset2.c b/runtime/quark/codelets/codelet_zlaset2.c index ca02da2760bbd5a2c231a267f7157af947f5ed73..c47a7f68b90c8846048690e689a6b36b3d19ddbe 100644 --- a/runtime/quark/codelets/codelet_zlaset2.c +++ b/runtime/quark/codelets/codelet_zlaset2.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlaset2 Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zlatro.c b/runtime/quark/codelets/codelet_zlatro.c index 5a3e30887c3009e1b8d87daf5f7469deb9d5edb8..15d829d15a897b4821480e87bbe58fecedc3e5b5 100644 --- a/runtime/quark/codelets/codelet_zlatro.c +++ b/runtime/quark/codelets/codelet_zlatro.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlatro Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Azzam Haidar * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zlauum.c b/runtime/quark/codelets/codelet_zlauum.c index 01ee1558f8e1ebf417db5de6f81a049f5f08ceb9..dc1b5881595adbd1d59846eec6ed4e9aa31cc1a0 100644 --- a/runtime/quark/codelets/codelet_zlauum.c +++ b/runtime/quark/codelets/codelet_zlauum.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlauum Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Julien Langou * @author Henricus Bouwmeester * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zplghe.c b/runtime/quark/codelets/codelet_zplghe.c index aa6a6527e9fd9cc361d0ff77187fb453b245fafb..4e2d90b160bade6d4f10cb3d76e9f72b75c2b0e7 100644 --- a/runtime/quark/codelets/codelet_zplghe.c +++ b/runtime/quark/codelets/codelet_zplghe.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplghe Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Piotr Luszczek * @author Pierre Lemarinier * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/quark/codelets/codelet_zplgsy.c b/runtime/quark/codelets/codelet_zplgsy.c index d7b4a2816fe2ef66162412cadb3a541962fd58dc..d4db07ee488bc077d0a55080cf9275ff9ad92f0c 100644 --- a/runtime/quark/codelets/codelet_zplgsy.c +++ b/runtime/quark/codelets/codelet_zplgsy.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplgsy Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Piotr Luszczek * @author Pierre Lemarinier * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zplrnt.c b/runtime/quark/codelets/codelet_zplrnt.c index 85e0913c8fb887f2eae74306cdef3e80cfddb278..d5c19f88f3f3540d08984bccaaea3af495926963 100644 --- a/runtime/quark/codelets/codelet_zplrnt.c +++ b/runtime/quark/codelets/codelet_zplrnt.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplrnt Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Piotr Luszczek * @author Pierre Lemarinier * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zplssq.c b/runtime/quark/codelets/codelet_zplssq.c index c6c10eb704a5b10899a8b5c78b8330954c9ccac4..6a5ace28491cecbbc317006e2705bd024d37c487 100644 --- a/runtime/quark/codelets/codelet_zplssq.c +++ b/runtime/quark/codelets/codelet_zplssq.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplssq Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-10-10 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zpotrf.c b/runtime/quark/codelets/codelet_zpotrf.c index a27ddd5abfb666d644e96a9aa37552a117988957..6cd0ae61e52da85a2507aef04d4df3f18d1e7873 100644 --- a/runtime/quark/codelets/codelet_zpotrf.c +++ b/runtime/quark/codelets/codelet_zpotrf.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zpotrf Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zssssm.c b/runtime/quark/codelets/codelet_zssssm.c index c193b2c6d0466023abbdee1b6160483924ad4c99..bb52b5ae1815adc6f8bf4b05f8c586864dbe51db 100644 --- a/runtime/quark/codelets/codelet_zssssm.c +++ b/runtime/quark/codelets/codelet_zssssm.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zssssm Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zsymm.c b/runtime/quark/codelets/codelet_zsymm.c index 7c037c601a9e6cfd5e695c8d009a3e20f6e779ee..6a57a49f9429384c38b6c03ce93984f503a3c744 100644 --- a/runtime/quark/codelets/codelet_zsymm.c +++ b/runtime/quark/codelets/codelet_zsymm.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsymm Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-06-29 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zsyr2k.c b/runtime/quark/codelets/codelet_zsyr2k.c index 4a591bdf552c6b01a3f94820f3e7a1ef7e1651a2..694ed5e1ccca8bb9c5ab1b534dddaba39b529d19 100644 --- a/runtime/quark/codelets/codelet_zsyr2k.c +++ b/runtime/quark/codelets/codelet_zsyr2k.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsyr2k Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-06-29 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zsyrk.c b/runtime/quark/codelets/codelet_zsyrk.c index 0f9f3254d17ddc9bea4559303f5d411bbe3368c3..c6a8774b635673b0c6716a0d707f5c81eafefeda 100644 --- a/runtime/quark/codelets/codelet_zsyrk.c +++ b/runtime/quark/codelets/codelet_zsyrk.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsyrk Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-06-29 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zsyssq.c b/runtime/quark/codelets/codelet_zsyssq.c index ac91c7dd2d8b07fc5c57dda35eda0a651b127ce5..50dbfe6f9aa4ba8c6836692f4b956ef185c5a4e2 100644 --- a/runtime/quark/codelets/codelet_zsyssq.c +++ b/runtime/quark/codelets/codelet_zsyssq.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsyssq Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zsytrf_nopiv.c b/runtime/quark/codelets/codelet_zsytrf_nopiv.c index 1eb683e43ce5286ca5eeda4f580f337c3fae8ecc..4b388c9a0cae5a670fd72d58209aff7a787ad02c 100644 --- a/runtime/quark/codelets/codelet_zsytrf_nopiv.c +++ b/runtime/quark/codelets/codelet_zsytrf_nopiv.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsytrf_nopiv Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge @@ -19,7 +19,7 @@ * @author Cedric Castagnede * @author Florent Pruvost * @author Marc Sergent - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/quark/codelets/codelet_ztplqt.c b/runtime/quark/codelets/codelet_ztplqt.c index b678c84a3e3f2cf3d1903a652aab2a116e53263b..b883557450f48f21f8b70c3c9dc90154f63809ba 100644 --- a/runtime/quark/codelets/codelet_ztplqt.c +++ b/runtime/quark/codelets/codelet_ztplqt.c @@ -4,16 +4,16 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztplqt Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/quark/codelets/codelet_ztpmlqt.c b/runtime/quark/codelets/codelet_ztpmlqt.c index cc60d275c3b343688e8833740eae60891bb10073..f53b58d1dabff56781b3601b2e3a3e9e6ba5a549 100644 --- a/runtime/quark/codelets/codelet_ztpmlqt.c +++ b/runtime/quark/codelets/codelet_ztpmlqt.c @@ -4,16 +4,16 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztpmlqt Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/quark/codelets/codelet_ztpmqrt.c b/runtime/quark/codelets/codelet_ztpmqrt.c index 0f51fa627fab6c3396dd748823f6b5506576b3e1..b9c880ea3b2fdd7c4b7da656702c77e6edc48cbb 100644 --- a/runtime/quark/codelets/codelet_ztpmqrt.c +++ b/runtime/quark/codelets/codelet_ztpmqrt.c @@ -4,16 +4,16 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztpmqrt Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/quark/codelets/codelet_ztpqrt.c b/runtime/quark/codelets/codelet_ztpqrt.c index 206b021d259e0aaefc1199683a2aadf8060e5d6c..a86991e5c763517fa8dae0e6865b31bbf1984686 100644 --- a/runtime/quark/codelets/codelet_ztpqrt.c +++ b/runtime/quark/codelets/codelet_ztpqrt.c @@ -4,16 +4,16 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztpqrt Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/quark/codelets/codelet_ztradd.c b/runtime/quark/codelets/codelet_ztradd.c index d4f3960ee42fc7a777f532d6c2dbf2d3904febbf..cc60f4650ddd76bf1c50a17a015c5ef208f3b2eb 100644 --- a/runtime/quark/codelets/codelet_ztradd.c +++ b/runtime/quark/codelets/codelet_ztradd.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztradd Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-06-29 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_ztrasm.c b/runtime/quark/codelets/codelet_ztrasm.c index c3377afc4f0bd816f37486192de495eae7e31692..2346981054cd6c0323616401a2bccfddf80e7215 100644 --- a/runtime/quark/codelets/codelet_ztrasm.c +++ b/runtime/quark/codelets/codelet_ztrasm.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrasm Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_ztrmm.c b/runtime/quark/codelets/codelet_ztrmm.c index c424a27d8e011c54fedc3a2502e1a278794b03c5..bfd54026150f16e80eec8c9456490122b2bf67ce 100644 --- a/runtime/quark/codelets/codelet_ztrmm.c +++ b/runtime/quark/codelets/codelet_ztrmm.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrmm Quark codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Julien Langou * @author Henricus Bouwmeester * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-06-29 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_ztrsm.c b/runtime/quark/codelets/codelet_ztrsm.c index 57712e5428a8301b4acf5cfc9b040712f565ecd3..c35818fdbfca299b3ad296e937b627dd8a3275d3 100644 --- a/runtime/quark/codelets/codelet_ztrsm.c +++ b/runtime/quark/codelets/codelet_ztrsm.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrsm Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_ztrssq.c b/runtime/quark/codelets/codelet_ztrssq.c index 11acf737786739ead64a284c0bfe063a37e76b76..5574cc513f8a965c5dbde1e5bcd9ea3022b8dd1d 100644 --- a/runtime/quark/codelets/codelet_ztrssq.c +++ b/runtime/quark/codelets/codelet_ztrssq.c @@ -4,17 +4,17 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrssq Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_ztrtri.c b/runtime/quark/codelets/codelet_ztrtri.c index fb54394e451f40b71c1a9b338f62e24d18e63282..a8d46594a1e0e12442133e9a8ace21e3b703b2aa 100644 --- a/runtime/quark/codelets/codelet_ztrtri.c +++ b/runtime/quark/codelets/codelet_ztrtri.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrtri Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Julien Langou * @author Henricus Bouwmeester * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_ztsmlq_hetra1.c b/runtime/quark/codelets/codelet_ztsmlq_hetra1.c index c920ff08caf9d723d9608dd13577472ed3b9e3cb..773a570a584301d09ca435fd95c85e1769f83e5e 100644 --- a/runtime/quark/codelets/codelet_ztsmlq_hetra1.c +++ b/runtime/quark/codelets/codelet_ztsmlq_hetra1.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztsmlq_hetra1 Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Mathieu Faverge * @author Jakub Kurzak * @author Azzam Haidar - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_ztsmqr_hetra1.c b/runtime/quark/codelets/codelet_ztsmqr_hetra1.c index ea20024e3e4ccb95fbd7912649713be5290d63f6..e1c9f84b60c14e9f8281ae6078a2a80423c84d05 100644 --- a/runtime/quark/codelets/codelet_ztsmqr_hetra1.c +++ b/runtime/quark/codelets/codelet_ztsmqr_hetra1.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztsmqr_hetra1 Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Mathieu Faverge * @author Jakub Kurzak * @author Azzam Haidar - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_ztstrf.c b/runtime/quark/codelets/codelet_ztstrf.c index d710efc83747d0c321a19b3bd8a0282f2fce402f..9979b3d7ae2523ec5d1fc49a3991ec660a2b5d16 100644 --- a/runtime/quark/codelets/codelet_ztstrf.c +++ b/runtime/quark/codelets/codelet_ztstrf.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztstrf Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zunmlq.c b/runtime/quark/codelets/codelet_zunmlq.c index 31b82e14a7c823f280905805ca0ce35a713f937b..456973d3601be5a6d26284b2fb6964763e24bd5f 100644 --- a/runtime/quark/codelets/codelet_zunmlq.c +++ b/runtime/quark/codelets/codelet_zunmlq.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmlq Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Dulceneia Becker @@ -19,7 +19,7 @@ * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/codelets/codelet_zunmqr.c b/runtime/quark/codelets/codelet_zunmqr.c index 66ef2ac6b31baa850f37f49b70937552a3cdbbf1..b68e89a3b02bc3931d3cab572e4bb41ce8aba897 100644 --- a/runtime/quark/codelets/codelet_zunmqr.c +++ b/runtime/quark/codelets/codelet_zunmqr.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmqr Quark codelet * - * @version 1.0.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/quark/control/runtime_async.c b/runtime/quark/control/runtime_async.c index 5324c1c08a9d39c71c6e2354a499933edb7de249..514a42b5780c1dab98ef8479015ce3cc53df89d1 100644 --- a/runtime/quark/control/runtime_async.c +++ b/runtime/quark/control/runtime_async.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon Quark asynchronous routines * - * @version 1.1.0 + * @version 1.2.0 * @author Jakub Kurzak * @author Vijay Joshi * @author Cedric Castagnede * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-04-22 + * @date 2022-02-22 * */ #include "chameleon_quark.h" diff --git a/runtime/quark/control/runtime_context.c b/runtime/quark/control/runtime_context.c index b95ccde564707c6449c7a85223e3380f57ec77e6..64b9b183b72af0b0401db0e48f594b3dd9b47192 100644 --- a/runtime/quark/control/runtime_context.c +++ b/runtime/quark/control/runtime_context.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon Quark context routines * - * @version 1.0.0 + * @version 1.2.0 * @author Vijay Joshi * @author Cedric Castagnede * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_quark.h" diff --git a/runtime/quark/control/runtime_control.c b/runtime/quark/control/runtime_control.c index 36d634ab310d98c52dec2fa87666ab8a9d877334..bdb4a78d33b6eeee66d297b95e28e4a2cd20d36f 100644 --- a/runtime/quark/control/runtime_control.c +++ b/runtime/quark/control/runtime_control.c @@ -4,20 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon Quark control routines * - * @version 1.1.0 + * @version 1.2.0 * @author Vijay Joshi * @author Cedric Castagnede * @author Florent Pruvost * @author Mathieu Faverge * @author Samuel Thibault - * @date 2020-04-22 + * @author Philippe Swartvagher + * @date 2022-02-22 * */ #include "chameleon_quark.h" diff --git a/runtime/quark/control/runtime_descriptor.c b/runtime/quark/control/runtime_descriptor.c index 78859a86fd593b41a8a303cba7f3068d3a26fcc0..24c872fe0f6f47f6713559c3a37d59726bee3fc4 100644 --- a/runtime/quark/control/runtime_descriptor.c +++ b/runtime/quark/control/runtime_descriptor.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon Quark descriptor routines * - * @version 1.0.0 + * @version 1.2.0 * @author Vijay Joshi * @author Cedric Castagnede * @author Florent Pruvost * @author Mathieu Faverge * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_quark.h" diff --git a/runtime/quark/control/runtime_options.c b/runtime/quark/control/runtime_options.c index c0b2bbb2ba0b1afde6d4975a999cc97d581e7ad9..fba2114627ca7872e7717f4d65c15ac4bf958058 100644 --- a/runtime/quark/control/runtime_options.c +++ b/runtime/quark/control/runtime_options.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon Quark options routines * - * @version 1.0.0 + * @version 1.2.0 * @author Vijay Joshi * @author Cedric Castagnede * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_quark.h" diff --git a/runtime/quark/control/runtime_profiling.c b/runtime/quark/control/runtime_profiling.c index 481e64c53cfbeaa9040e6a6ed93238a23f7b2ee4..6b5c19c8b96fae21963f38fb7cc1306dd9939921 100644 --- a/runtime/quark/control/runtime_profiling.c +++ b/runtime/quark/control/runtime_profiling.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon Quark profiling routines * - * @version 1.0.0 + * @version 1.2.0 * @author Vijay Joshi * @author Cedric Castagnede * @author Florent Pruvost * @author Mathieu Faverge * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_quark.h" diff --git a/runtime/quark/control/runtime_zlocality.c b/runtime/quark/control/runtime_zlocality.c index 28227cf16065d8627ec13ebaa3adb09761b03441..ff7213753b3d0119bd71d01504af241b88c5d6ea 100644 --- a/runtime/quark/control/runtime_zlocality.c +++ b/runtime/quark/control/runtime_zlocality.c @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon Quark CHAMELEON_Complex64_t kernel locality management * - * @version 1.0.0 + * @version 1.2.0 * @author Vijay Joshi * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/quark/control/runtime_zprofiling.c b/runtime/quark/control/runtime_zprofiling.c index a93905fd94457d0ee3f89db940d9e8e3b14fd816..033803c6acd6203b1a2a958544d9ce37b110a72a 100644 --- a/runtime/quark/control/runtime_zprofiling.c +++ b/runtime/quark/control/runtime_zprofiling.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon Quark CHAMELEON_Complex64_t kernel progiling * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Augonnet * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/quark/include/chameleon_quark.h b/runtime/quark/include/chameleon_quark.h index a2353952cb6d73e1febba09b8e9cc8782a8963c1..70339cbbe19c63f9667d599cc4db44e2c75e8942 100644 --- a/runtime/quark/include/chameleon_quark.h +++ b/runtime/quark/include/chameleon_quark.h @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon Quark runtime main header * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost * @author Samuel Thibault - * @date 2020-10-10 + * @date 2022-02-22 * */ #ifndef _chameleon_quark_h_ diff --git a/runtime/quark/include/core_blas_dag.h b/runtime/quark/include/core_blas_dag.h index dd55bf284632885c25416454637b5a3aab72a570..922daf689427ca99e2d0d09332e95e1a55af290d 100644 --- a/runtime/quark/include/core_blas_dag.h +++ b/runtime/quark/include/core_blas_dag.h @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon Quark DAG generation header * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _core_blas_dag_h_ diff --git a/runtime/starpu/CMakeLists.txt b/runtime/starpu/CMakeLists.txt index 51f80b5edffcbe67b61078e537a33760847fc7ad..09a02526c81e484f8b914b7100ed6768ec940457 100644 --- a/runtime/starpu/CMakeLists.txt +++ b/runtime/starpu/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2015 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,13 +17,13 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 +# @version 1.2.0 # @author Cedric Castagnede # @author Emmanuel Agullo # @author Mathieu Faverge # @author Florent Pruvost # @author Samuel Thibault -# @date 2021-03-16 +# @date 2022-02-22 # ### cmake_minimum_required(VERSION 3.1) diff --git a/runtime/starpu/codelets/codelet_dlag2z.c b/runtime/starpu/codelets/codelet_dlag2z.c index 3a21d3d5734b4381d4aac736b758840de304fc56..438fe25a2c27be345913ee0bf2d247100e2335cf 100644 --- a/runtime/starpu/codelets/codelet_dlag2z.c +++ b/runtime/starpu/codelets/codelet_dlag2z.c @@ -4,16 +4,16 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon dlag2z StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/starpu/codelets/codelet_dzasum.c b/runtime/starpu/codelets/codelet_dzasum.c index 9eaf10b587ab9928a1145ca9ef0685a5dc2f9099..0106b372b61615a5c5b9b78b986aa37f361f5faa 100644 --- a/runtime/starpu/codelets/codelet_dzasum.c +++ b/runtime/starpu/codelets/codelet_dzasum.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon dzasum StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_map.c b/runtime/starpu/codelets/codelet_map.c index 9814dd3522dc1e51faa68d0f3f50d4f2069230ed..7a6d1b2349d7ae14120788f2884db7ca40dca16a 100644 --- a/runtime/starpu/codelets/codelet_map.c +++ b/runtime/starpu/codelets/codelet_map.c @@ -2,17 +2,17 @@ * * @file starpu/codelet_map.c * - * @copyright 2018-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2018-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon map StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2021-01-11 + * @date 2022-02-22 * */ #include "chameleon_starpu.h" diff --git a/runtime/starpu/codelets/codelet_zaxpy.c b/runtime/starpu/codelets/codelet_zaxpy.c index 63cc9fa77673a747f004ebf5209a5f35344d3d22..7e6f430259cceabdc81337ae44c8b8f471295c93 100644 --- a/runtime/starpu/codelets/codelet_zaxpy.c +++ b/runtime/starpu/codelets/codelet_zaxpy.c @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zaxpy StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost * @author Mathieu Faverge * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zbuild.c b/runtime/starpu/codelets/codelet_zbuild.c index 24d237bc80765a3062a0cbcb3bec3db46048633d..9427235893432abbd69407bd5b7276d9f87c164a 100644 --- a/runtime/starpu/codelets/codelet_zbuild.c +++ b/runtime/starpu/codelets/codelet_zbuild.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zbuild StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Piotr Luszczek @@ -23,7 +23,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zcallback.c b/runtime/starpu/codelets/codelet_zcallback.c index 58e6cb6bf1eabfcc0ecf91c8541a5657a1ac9f9d..00fa905af5b0ad44ecf9df9b6d682e8ee711a7f5 100644 --- a/runtime/starpu/codelets/codelet_zcallback.c +++ b/runtime/starpu/codelets/codelet_zcallback.c @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zcallback StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Augonnet * @author Florent Pruvost - * @date 2021-03-16 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zcesca.c b/runtime/starpu/codelets/codelet_zcesca.c index f7c87937d035b03b99a04b7ef307deda501eb4b1..868e7fb27f222a7895ea878f3028319a5863503c 100644 --- a/runtime/starpu/codelets/codelet_zcesca.c +++ b/runtime/starpu/codelets/codelet_zcesca.c @@ -2,16 +2,16 @@ * * @file starpu/codelet_zcesca.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zcesca StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost - * @date 2021-05-07 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zgeadd.c b/runtime/starpu/codelets/codelet_zgeadd.c index 9cfe15c08f9ab929ac9e22cc83648795d0dfffe0..825a8fb6c2c59343c0078cc6820149f0e8c27b2b 100644 --- a/runtime/starpu/codelets/codelet_zgeadd.c +++ b/runtime/starpu/codelets/codelet_zgeadd.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeadd StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Emmanuel Agullo * @author Cedric Castagnede * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zgelqt.c b/runtime/starpu/codelets/codelet_zgelqt.c index fcb9c005933b1a80d4a3186d6e5e4b94da5909de..75e5cbdc66f533cb02f2267100b6268861b5bd2a 100644 --- a/runtime/starpu/codelets/codelet_zgelqt.c +++ b/runtime/starpu/codelets/codelet_zgelqt.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgelqt StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -22,7 +22,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zgemm.c b/runtime/starpu/codelets/codelet_zgemm.c index 38d6337bb5e9d9c4d4d956e3d169f938b8de077a..d7d93512a7bce72954511f3f213d11c07dd142ee 100644 --- a/runtime/starpu/codelets/codelet_zgemm.c +++ b/runtime/starpu/codelets/codelet_zgemm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgemm StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge @@ -20,7 +20,8 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Gwenole Lucas - * @date 2021-03-16 + * @author Philippe Swartvagher + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zgemv.c b/runtime/starpu/codelets/codelet_zgemv.c index 3aedbfa4149a7dc144483f4ca91142b14b5554f6..b5901a7f0bcb6b900fd1997d0e96ff6fea180dc5 100644 --- a/runtime/starpu/codelets/codelet_zgemv.c +++ b/runtime/starpu/codelets/codelet_zgemv.c @@ -4,16 +4,16 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgemv StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zgeqrt.c b/runtime/starpu/codelets/codelet_zgeqrt.c index 14b877772a1ab1ff72f101736758a09c4a04f20c..4aa0dd48644518ae06917d8105739d1575291905 100644 --- a/runtime/starpu/codelets/codelet_zgeqrt.c +++ b/runtime/starpu/codelets/codelet_zgeqrt.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeqrt StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -22,7 +22,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zgessm.c b/runtime/starpu/codelets/codelet_zgessm.c index 352e98d618f684ad0d6f8d7e1c6b31024d94d59a..e482cbbe85741e3911590e64f6ca6193c6c2c0cc 100644 --- a/runtime/starpu/codelets/codelet_zgessm.c +++ b/runtime/starpu/codelets/codelet_zgessm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgessm StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -22,7 +22,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zgessq.c b/runtime/starpu/codelets/codelet_zgessq.c index c2d62fd4c2eae8c57b894cebdea70f9992e7bf05..81e3cede7faae185506144a56fb6133602e7abc3 100644 --- a/runtime/starpu/codelets/codelet_zgessq.c +++ b/runtime/starpu/codelets/codelet_zgessq.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgessq StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zgesum.c b/runtime/starpu/codelets/codelet_zgesum.c index ed0dbbfd6bc9db7fa25c450e4401961506fde299..9efee03cf4b8c993659881604dd79e6a721d7703 100644 --- a/runtime/starpu/codelets/codelet_zgesum.c +++ b/runtime/starpu/codelets/codelet_zgesum.c @@ -2,16 +2,16 @@ * * @file starpu/codelet_zgesum.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgesum StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost - * @date 2021-05-7 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zgetrf.c b/runtime/starpu/codelets/codelet_zgetrf.c index 79eaa295134267efcc02c0035b27678fb093c433..a00eedc434d66582ad5108cdc42fef4d1e1d8252 100644 --- a/runtime/starpu/codelets/codelet_zgetrf.c +++ b/runtime/starpu/codelets/codelet_zgetrf.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrf StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge @@ -20,7 +20,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zgetrf_incpiv.c b/runtime/starpu/codelets/codelet_zgetrf_incpiv.c index 792849815cd0e361c014537d23b4af519497c861..f2f0c096498f5b78dc5d66403892d0b37ad61126 100644 --- a/runtime/starpu/codelets/codelet_zgetrf_incpiv.c +++ b/runtime/starpu/codelets/codelet_zgetrf_incpiv.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrf_incpiv StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -22,7 +22,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zgetrf_nopiv.c b/runtime/starpu/codelets/codelet_zgetrf_nopiv.c index 7d84e67ae55e8223d7f3b05755199d2dc8ae6f62..b3baa625775a72debe4abf95a7a08019b8b0b9c5 100644 --- a/runtime/starpu/codelets/codelet_zgetrf_nopiv.c +++ b/runtime/starpu/codelets/codelet_zgetrf_nopiv.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrf_nopiv StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Omar Zenati * @author Mathieu Faverge * @author Emmanuel Agullo @@ -19,7 +19,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zgram.c b/runtime/starpu/codelets/codelet_zgram.c index 77dac818f709023b81e7670997d6b18526a96e15..fdf61c41bb96cb8d33254a9fb63cbe1179208c7f 100644 --- a/runtime/starpu/codelets/codelet_zgram.c +++ b/runtime/starpu/codelets/codelet_zgram.c @@ -2,18 +2,18 @@ * * @file starpu/codelet_zgram.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgram StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost * @author Lucas Barros de Assis - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zhe2ge.c b/runtime/starpu/codelets/codelet_zhe2ge.c index 5f4f4a98306fd8a2442c0c3a5ecf2b48b92e52f6..615ecd2eaabf2bcbc65f732781d1a65f0b99cec3 100644 --- a/runtime/starpu/codelets/codelet_zhe2ge.c +++ b/runtime/starpu/codelets/codelet_zhe2ge.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zhe2ge StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zhemm.c b/runtime/starpu/codelets/codelet_zhemm.c index 20d0e352b33b1c4a74682622b17d136bbdd8fc70..c05dbb92d53962d337b995f3725f02aeae19e31f 100644 --- a/runtime/starpu/codelets/codelet_zhemm.c +++ b/runtime/starpu/codelets/codelet_zhemm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zhemm StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge @@ -19,7 +19,7 @@ * @author Cedric Castagnede * @author Lucas Barros de Assis * @author Florent Pruvost - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/starpu/codelets/codelet_zher2k.c b/runtime/starpu/codelets/codelet_zher2k.c index 1f9585e58edb3385f8451d87d7585ff049798669..9fa3a1f782aa51f49a542d9d7da2bda3bf3aede9 100644 --- a/runtime/starpu/codelets/codelet_zher2k.c +++ b/runtime/starpu/codelets/codelet_zher2k.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zher2k StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge @@ -19,7 +19,7 @@ * @author Cedric Castagnede * @author Lucas Barros de Assis * @author Florent Pruvost - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/starpu/codelets/codelet_zherfb.c b/runtime/starpu/codelets/codelet_zherfb.c index af9b2a256eda483f66e5e2504ff581767fd1e3f6..428f5340400c061b12997f4d9876ee1fbdf027b3 100644 --- a/runtime/starpu/codelets/codelet_zherfb.c +++ b/runtime/starpu/codelets/codelet_zherfb.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zherfb StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zherk.c b/runtime/starpu/codelets/codelet_zherk.c index d877cda36e57b4f7b7cfd01af167448f14ad4056..a83d212a6cb7319f4b14f18c561d5f07aed9bc65 100644 --- a/runtime/starpu/codelets/codelet_zherk.c +++ b/runtime/starpu/codelets/codelet_zherk.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zherk StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge @@ -20,7 +20,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Gwenole Lucas - * @date 2021-03-16 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/starpu/codelets/codelet_zhessq.c b/runtime/starpu/codelets/codelet_zhessq.c index e2d22c5fb48357feb43b9bab73f97a58b2d4a6c3..61ea5d8f0ceeed1e6ccef303698afe1fcc384995 100644 --- a/runtime/starpu/codelets/codelet_zhessq.c +++ b/runtime/starpu/codelets/codelet_zhessq.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zhessq StarPU codelet * - * @version 1.0.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/starpu/codelets/codelet_zlacpy.c b/runtime/starpu/codelets/codelet_zlacpy.c index 29733a6d3832405781262f5328b2c3b52a6a7f33..9453453af38dd61bc1fe2b0b80a04752bac140c7 100644 --- a/runtime/starpu/codelets/codelet_zlacpy.c +++ b/runtime/starpu/codelets/codelet_zlacpy.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlacpy StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Julien Langou * @author Henricus Bouwmeester * @author Mathieu Faverge @@ -20,7 +20,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-03-16 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zlag2c.c b/runtime/starpu/codelets/codelet_zlag2c.c index 421d97afd93d0fa550d6a0bdf5f8d56e4ac0aaca..a259373a2e9b1b2a96af14c1f1829dfad864f4b3 100644 --- a/runtime/starpu/codelets/codelet_zlag2c.c +++ b/runtime/starpu/codelets/codelet_zlag2c.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlag2c StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge @@ -20,7 +20,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions mixed zc -> ds * */ diff --git a/runtime/starpu/codelets/codelet_zlange.c b/runtime/starpu/codelets/codelet_zlange.c index d8f76aa47ac0cb726a252a1baa850bc86df5eb5b..759ee9d89ff0a1922ce0dc94fe798226e2a944bf 100644 --- a/runtime/starpu/codelets/codelet_zlange.c +++ b/runtime/starpu/codelets/codelet_zlange.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlange StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Julien Langou @@ -20,7 +20,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zlanhe.c b/runtime/starpu/codelets/codelet_zlanhe.c index 1f9203fb11c03fc6e421b7a4f9b2f42b077f32a6..e79619eabbdfa61d032880aaa77d9b7ffadac7b0 100644 --- a/runtime/starpu/codelets/codelet_zlanhe.c +++ b/runtime/starpu/codelets/codelet_zlanhe.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlanhe StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Julien Langou @@ -20,7 +20,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/starpu/codelets/codelet_zlansy.c b/runtime/starpu/codelets/codelet_zlansy.c index 5de3b8e93427a7cec37299ebc62a4a7e75876c72..3ed03b399ffef550b131a5f8afaf3906da87da29 100644 --- a/runtime/starpu/codelets/codelet_zlansy.c +++ b/runtime/starpu/codelets/codelet_zlansy.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlansy StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Julien Langou @@ -20,7 +20,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zlantr.c b/runtime/starpu/codelets/codelet_zlantr.c index 237e5da163b3526376935148ce66e0d20f922e3d..2aa75e98fff592870d6a89ecf6dbe66938de0d75 100644 --- a/runtime/starpu/codelets/codelet_zlantr.c +++ b/runtime/starpu/codelets/codelet_zlantr.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlantr StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost * @author Lucas Barros de Assis * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zlascal.c b/runtime/starpu/codelets/codelet_zlascal.c index 26fb42fa8b1eb702997ae3400ce92fb179c383f9..986292de9dcbc550e0d6b22b8553bec1a8e2a661 100644 --- a/runtime/starpu/codelets/codelet_zlascal.c +++ b/runtime/starpu/codelets/codelet_zlascal.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlascal StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Dalal Sukkari * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge * @author Samuel Thibault - * @date 2021-03-16 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zlaset.c b/runtime/starpu/codelets/codelet_zlaset.c index 51eb352afbf9cdffe31e0835c0ef4898261d686c..860d06aba479c78cd8fe71eb4ca09a9d3aaa0967 100644 --- a/runtime/starpu/codelets/codelet_zlaset.c +++ b/runtime/starpu/codelets/codelet_zlaset.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlaset StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Mathieu Faverge * @author Emmanuel Agullo @@ -19,7 +19,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-03-16 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zlaset2.c b/runtime/starpu/codelets/codelet_zlaset2.c index 6d6eeb6be3e1fbc43d7797577c1d913d5c88a858..a8d4a5559aa6a874324932b8fe75992ef6ec24dc 100644 --- a/runtime/starpu/codelets/codelet_zlaset2.c +++ b/runtime/starpu/codelets/codelet_zlaset2.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlaset2 StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -21,7 +21,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zlatro.c b/runtime/starpu/codelets/codelet_zlatro.c index 7d81ae476ec323dcba0385c6d7fde7dc6161e34f..169689ee389980a1162ad5b8358c4f8fa45fbb7b 100644 --- a/runtime/starpu/codelets/codelet_zlatro.c +++ b/runtime/starpu/codelets/codelet_zlatro.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlatro StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Julien Langou @@ -22,7 +22,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zlauum.c b/runtime/starpu/codelets/codelet_zlauum.c index db4ab89abbe50d639cf8dcacdc4f5221b61107c8..8af70ac4e72cc789bb3d3e5f47185221a954808b 100644 --- a/runtime/starpu/codelets/codelet_zlauum.c +++ b/runtime/starpu/codelets/codelet_zlauum.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlauum StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Julien Langou * @author Henricus Bouwmeester * @author Mathieu Faverge @@ -20,7 +20,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-03-16 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zplghe.c b/runtime/starpu/codelets/codelet_zplghe.c index b14c32003de0cc524aea868aad1ff8a7302925ac..bdb6cf44fb9b285360bec9423dbf3bd8c956b9a7 100644 --- a/runtime/starpu/codelets/codelet_zplghe.c +++ b/runtime/starpu/codelets/codelet_zplghe.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplghe StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Piotr Luszczek * @author Pierre Lemarinier * @author Mathieu Faverge @@ -20,7 +20,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-03-16 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/starpu/codelets/codelet_zplgsy.c b/runtime/starpu/codelets/codelet_zplgsy.c index 12f9497131d92719fbbe2367b02a9945e2c534de..8ba6981abc6b53372a040e911b221d5384a6b3f0 100644 --- a/runtime/starpu/codelets/codelet_zplgsy.c +++ b/runtime/starpu/codelets/codelet_zplgsy.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplgsy StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Piotr Luszczek * @author Pierre Lemarinier * @author Mathieu Faverge @@ -20,7 +20,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-03-16 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zplrnt.c b/runtime/starpu/codelets/codelet_zplrnt.c index 588e25a57d24566f359ea66f1d4483dca311c807..b646164620d4a567328b8e96ac71364709787f94 100644 --- a/runtime/starpu/codelets/codelet_zplrnt.c +++ b/runtime/starpu/codelets/codelet_zplrnt.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplrnt StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Piotr Luszczek * @author Pierre Lemarinier * @author Mathieu Faverge @@ -20,7 +20,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-03-16 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zplssq.c b/runtime/starpu/codelets/codelet_zplssq.c index 1f5af5516999663214c5c85ca9ed51edbb3cd1d4..0fc7b59b3f7c5582137704fbeb6c430162537733 100644 --- a/runtime/starpu/codelets/codelet_zplssq.c +++ b/runtime/starpu/codelets/codelet_zplssq.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplssq StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zpotrf.c b/runtime/starpu/codelets/codelet_zpotrf.c index 24d2fd7e2e9ec571f9e81093f22c55d80c4b0bc1..308b1cd32bc377b8639da882a6e1512567a89802 100644 --- a/runtime/starpu/codelets/codelet_zpotrf.c +++ b/runtime/starpu/codelets/codelet_zpotrf.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zpotrf StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge @@ -20,7 +20,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-03-16 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zssssm.c b/runtime/starpu/codelets/codelet_zssssm.c index 9690730340c8cb50734dae21c7175a19dc14f2a1..b66cc9cb7782c6e0bf3df13d070737202fce1b08 100644 --- a/runtime/starpu/codelets/codelet_zssssm.c +++ b/runtime/starpu/codelets/codelet_zssssm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zssssm StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -22,7 +22,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zsymm.c b/runtime/starpu/codelets/codelet_zsymm.c index 8026b32fe44ead259d0c602249b289e23eb49029..e1507f65791c4fe99dfab487a5f0ae2a2a05e96b 100644 --- a/runtime/starpu/codelets/codelet_zsymm.c +++ b/runtime/starpu/codelets/codelet_zsymm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsymm StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge @@ -19,7 +19,7 @@ * @author Cedric Castagnede * @author Lucas Barros de Assis * @author Florent Pruvost - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zsyr2k.c b/runtime/starpu/codelets/codelet_zsyr2k.c index c020938bf091a75347f871162dd50c9f0521986b..169936ca95ff61153ffc582a73e63d0d21319887 100644 --- a/runtime/starpu/codelets/codelet_zsyr2k.c +++ b/runtime/starpu/codelets/codelet_zsyr2k.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsyr2k StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge @@ -19,7 +19,7 @@ * @author Cedric Castagnede * @author Lucas Barros de Assis * @author Florent Pruvost - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zsyrk.c b/runtime/starpu/codelets/codelet_zsyrk.c index 1d09960c91ead88703d24e01f3d9701d5d7ab0ba..86a95d034f5fab0cf1e12eec399a17b4c4f556e9 100644 --- a/runtime/starpu/codelets/codelet_zsyrk.c +++ b/runtime/starpu/codelets/codelet_zsyrk.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsyrk StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge @@ -20,7 +20,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Gwenole Lucas - * @date 2021-03-16 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zsyssq.c b/runtime/starpu/codelets/codelet_zsyssq.c index 5a0836d0efd00929c92dda8e99632e76d47962e9..bdc1d134767631ab244558670520bde967676391 100644 --- a/runtime/starpu/codelets/codelet_zsyssq.c +++ b/runtime/starpu/codelets/codelet_zsyssq.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsyssq StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zsytrf_nopiv.c b/runtime/starpu/codelets/codelet_zsytrf_nopiv.c index 340d37adae1a9c77951bff673cb4844abc29007b..7ca6f95cf9a935cea3b23faf4520946176238d58 100644 --- a/runtime/starpu/codelets/codelet_zsytrf_nopiv.c +++ b/runtime/starpu/codelets/codelet_zsytrf_nopiv.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsytrf_nopiv StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge @@ -21,7 +21,7 @@ * @author Marc Sergent * @author Lucas Barros de Assis * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/runtime/starpu/codelets/codelet_ztplqt.c b/runtime/starpu/codelets/codelet_ztplqt.c index 90ef69afc2a63352bc50a2148262b0ff5682b2ff..9a183efa36892c1fae0eb767ec76df7d2f4b50e8 100644 --- a/runtime/starpu/codelets/codelet_ztplqt.c +++ b/runtime/starpu/codelets/codelet_ztplqt.c @@ -4,18 +4,18 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztplqt StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Lucas Barros de Assis * @author Florent Pruvost - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/starpu/codelets/codelet_ztpmlqt.c b/runtime/starpu/codelets/codelet_ztpmlqt.c index ce1e70b15fdc1c8161460d389c0373d773025e1b..aa35c75e5e25d907d3ade5e155e8df22b8237297 100644 --- a/runtime/starpu/codelets/codelet_ztpmlqt.c +++ b/runtime/starpu/codelets/codelet_ztpmlqt.c @@ -4,16 +4,16 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @brief Chameleon ztpmlqt StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Lucas Barros de Assis * @author Florent Pruvost - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/starpu/codelets/codelet_ztpmqrt.c b/runtime/starpu/codelets/codelet_ztpmqrt.c index a8870a36f72df20e459142a9821ebfad3d71a2c4..ad70c1801f0ac21dd57627bcc1213f649699688f 100644 --- a/runtime/starpu/codelets/codelet_ztpmqrt.c +++ b/runtime/starpu/codelets/codelet_ztpmqrt.c @@ -4,16 +4,16 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @brief Chameleon ztpmqrt StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Lucas Barros de Assis * @author Florent Pruvost - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/starpu/codelets/codelet_ztpqrt.c b/runtime/starpu/codelets/codelet_ztpqrt.c index aab476553249d2f27ca4fdb9b12abde6c2b2550d..415f187e119d1306a0a680bd1106b08e5fbd87ae 100644 --- a/runtime/starpu/codelets/codelet_ztpqrt.c +++ b/runtime/starpu/codelets/codelet_ztpqrt.c @@ -4,19 +4,19 @@ * * @copyright 2009-2016 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztpqrt StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Florent Pruvost * @author Lucas Barros de Assis * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/starpu/codelets/codelet_ztradd.c b/runtime/starpu/codelets/codelet_ztradd.c index f3c0493a2ddc179e2c5f0728bd10fcc25944a840..f1522ecc06f82b994a50d407a0530b2a7ca4ea29 100644 --- a/runtime/starpu/codelets/codelet_ztradd.c +++ b/runtime/starpu/codelets/codelet_ztradd.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztradd StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-03-16 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_ztrasm.c b/runtime/starpu/codelets/codelet_ztrasm.c index 8a84b7d4bc9bd151ad76890c7ebd91ddea68f883..e5085ca5faf85840f8ad240c91f4327b453100bd 100644 --- a/runtime/starpu/codelets/codelet_ztrasm.c +++ b/runtime/starpu/codelets/codelet_ztrasm.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrasm StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_ztrmm.c b/runtime/starpu/codelets/codelet_ztrmm.c index 0a34ea60ac0c6646b57b50da8d7af071b23712a6..41496a815006bcc485c3c0542dfa710cccf5b84c 100644 --- a/runtime/starpu/codelets/codelet_ztrmm.c +++ b/runtime/starpu/codelets/codelet_ztrmm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrmm StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Julien Langou * @author Henricus Bouwmeester * @author Mathieu Faverge @@ -19,7 +19,7 @@ * @author Cedric Castagnede * @author Lucas Barros de Assis * @author Florent Pruvost - * @date 2021-03-16 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_ztrsm.c b/runtime/starpu/codelets/codelet_ztrsm.c index debe56add9e9d872fb34a3b8645cae7e18127d4f..0feac92b8944525f8814fc2cb67be223ec19f33c 100644 --- a/runtime/starpu/codelets/codelet_ztrsm.c +++ b/runtime/starpu/codelets/codelet_ztrsm.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrsm StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Jakub Kurzak * @author Mathieu Faverge @@ -20,7 +20,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Gwenole Lucas - * @date 2021-03-16 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_ztrssq.c b/runtime/starpu/codelets/codelet_ztrssq.c index 5476bc998bec3d6dd43eb511ebd86d9149e570e3..48914271ac0bca8e8903a84daac51066201ed7c4 100644 --- a/runtime/starpu/codelets/codelet_ztrssq.c +++ b/runtime/starpu/codelets/codelet_ztrssq.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrssq StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.6.0 for CHAMELEON 0.9.2 * @author Mathieu Faverge * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_ztrtri.c b/runtime/starpu/codelets/codelet_ztrtri.c index 22b53d92b6adc6dc6bb96435e3da5d486d183528..21d6aecbc4faf574c8433e140601f6709345e94e 100644 --- a/runtime/starpu/codelets/codelet_ztrtri.c +++ b/runtime/starpu/codelets/codelet_ztrtri.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrtri StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Julien Langou * @author Henricus Bouwmeester * @author Mathieu Faverge @@ -20,7 +20,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-03-16 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_ztsmlq_hetra1.c b/runtime/starpu/codelets/codelet_ztsmlq_hetra1.c index a12c11830d81bf33ce8a965e8bb761c2987b139f..85a6a11d03fb8f8d4fd18b76bb452029c0d5247f 100644 --- a/runtime/starpu/codelets/codelet_ztsmlq_hetra1.c +++ b/runtime/starpu/codelets/codelet_ztsmlq_hetra1.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztsmlq_hetra1 StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Mathieu Faverge * @author Azzam Haidar * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_ztsmqr_hetra1.c b/runtime/starpu/codelets/codelet_ztsmqr_hetra1.c index b70d4e1285ebc153a03b29e8e470346b29e2a990..7f1fb518ea205908d1a20ea61af30ba6b5028dad 100644 --- a/runtime/starpu/codelets/codelet_ztsmqr_hetra1.c +++ b/runtime/starpu/codelets/codelet_ztsmqr_hetra1.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztsmqr_hetra1 StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @author Hatem Ltaief * @author Mathieu Faverge * @author Azzam Haidar * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_ztstrf.c b/runtime/starpu/codelets/codelet_ztstrf.c index bd6d496299034ee2e5a8a319648b17126c4a64b7..41eb0636aec3278dc1186eb7d8c33c6f35afaf64 100644 --- a/runtime/starpu/codelets/codelet_ztstrf.c +++ b/runtime/starpu/codelets/codelet_ztstrf.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztstrf StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -22,7 +22,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zunmlq.c b/runtime/starpu/codelets/codelet_zunmlq.c index 19efea82b7e55d3326d9bdc05897f0e58f4a2033..44f740505733505c6fa2af232b209f9711218d40 100644 --- a/runtime/starpu/codelets/codelet_zunmlq.c +++ b/runtime/starpu/codelets/codelet_zunmlq.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmlq StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -23,7 +23,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/codelets/codelet_zunmqr.c b/runtime/starpu/codelets/codelet_zunmqr.c index 31489663daed951ce33761abe1f3c391b29d3a33..453ac420730c3466a19fe335444b189811ba14bf 100644 --- a/runtime/starpu/codelets/codelet_zunmqr.c +++ b/runtime/starpu/codelets/codelet_zunmqr.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmqr StarPU codelet * - * @version 1.1.0 + * @version 1.2.0 * @comment This file has been automatically generated * from Plasma 2.5.0 for CHAMELEON 0.9.2 * @author Hatem Ltaief @@ -22,7 +22,7 @@ * @author Lucas Barros de Assis * @author Florent Pruvost * @author Samuel Thibault - * @date 2021-01-11 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/control/runtime_async.c b/runtime/starpu/control/runtime_async.c index cc229cd068585a8c5f8797c2aeb738627c397318..f4602ac8f161c389cbc273c6f322bfc56f9efcfa 100644 --- a/runtime/starpu/control/runtime_async.c +++ b/runtime/starpu/control/runtime_async.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU asynchronous routines * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost * @author Samuel Thibault - * @date 2020-04-22 + * @date 2022-02-22 * */ #include "chameleon_starpu.h" diff --git a/runtime/starpu/control/runtime_context.c b/runtime/starpu/control/runtime_context.c index 176b9cbbb9aa1d82f3c00dc6b0408896d505cf38..d785835ec7b727b789a5fec003d85ad995b8412d 100644 --- a/runtime/starpu/control/runtime_context.c +++ b/runtime/starpu/control/runtime_context.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU context routines * - * @version 1.1.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-12-01 + * @date 2022-02-22 * */ #include "chameleon_starpu.h" diff --git a/runtime/starpu/control/runtime_control.c b/runtime/starpu/control/runtime_control.c index 611634699907dce78695388556b7827a88fb4938..37979d86ef77b0a5f691034b82de609424b11ed2 100644 --- a/runtime/starpu/control/runtime_control.c +++ b/runtime/starpu/control/runtime_control.c @@ -4,21 +4,21 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU control routines * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Augonnet * @author Cedric Castagnede * @author Florent Pruvost * @author Philippe Swartvagher * @author Samuel Thibault - * @date 2020-07-01 + * @date 2022-02-22 * */ #include "chameleon_starpu.h" diff --git a/runtime/starpu/control/runtime_descriptor.c b/runtime/starpu/control/runtime_descriptor.c index fef8c75aa5f99c40c3df9f2b3f55f18366322e55..f8415a75d4af10fbc3085008a6f1a255a23d0162 100644 --- a/runtime/starpu/control/runtime_descriptor.c +++ b/runtime/starpu/control/runtime_descriptor.c @@ -4,14 +4,14 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU descriptor routines * - * @version 1.1.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Mathieu Faverge * @author Cedric Castagnede @@ -19,7 +19,7 @@ * @author Guillaume Sylvand * @author Raphael Boucherie * @author Samuel Thibault - * @date 2020-12-01 + * @date 2022-02-22 * */ #include "chameleon_starpu.h" diff --git a/runtime/starpu/control/runtime_options.c b/runtime/starpu/control/runtime_options.c index d95cbf865413d98ac079fd0ea1e5768739e6b8b4..98c35eaa05079222a86d19462b793aa3d7e94c37 100644 --- a/runtime/starpu/control/runtime_options.c +++ b/runtime/starpu/control/runtime_options.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU options routines * - * @version 1.0.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-01-07 + * @date 2022-02-22 * */ #include "chameleon_starpu.h" diff --git a/runtime/starpu/control/runtime_profiling.c b/runtime/starpu/control/runtime_profiling.c index 317a3210fffdb546f3cf740d9e2cde3bcb33b4a9..b30d1c541cdacf260b703bca4b9259ae5c6d876d 100644 --- a/runtime/starpu/control/runtime_profiling.c +++ b/runtime/starpu/control/runtime_profiling.c @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU profiling routines * - * @version 1.0.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_starpu.h" diff --git a/runtime/starpu/control/runtime_workspace.c b/runtime/starpu/control/runtime_workspace.c index 06923689fbc5a4f1f5bba05fda23b4b58df6b53c..73e8dd94e8fc940ea4a98ae039b1c03ee70ad515 100644 --- a/runtime/starpu/control/runtime_workspace.c +++ b/runtime/starpu/control/runtime_workspace.c @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU workspaces routines * - * @version 1.0.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Mathieu Faverge * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "chameleon_starpu.h" diff --git a/runtime/starpu/control/runtime_zlocality.c b/runtime/starpu/control/runtime_zlocality.c index 74d48bc7823b17f6e0b776a0ae6482b2844b0ea6..0810f8193df54ff63244d40af8fb99e78c939566 100644 --- a/runtime/starpu/control/runtime_zlocality.c +++ b/runtime/starpu/control/runtime_zlocality.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU CHAMELEON_Complex64_t kernel locality management * - * @version 1.0.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/starpu/control/runtime_zprofiling.c b/runtime/starpu/control/runtime_zprofiling.c index c345ed38edd20e0ff378c5a3b7a2f7e189306111..87d139b19c18ba1ebd6688834dfd586e201b8a97 100644 --- a/runtime/starpu/control/runtime_zprofiling.c +++ b/runtime/starpu/control/runtime_zprofiling.c @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU CHAMELEON_Complex64_t kernel progiling * - * @version 1.0.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-03-03 + * @date 2022-02-22 * @precisions normal z -> s d c * */ diff --git a/runtime/starpu/include/cham_tile_interface.h b/runtime/starpu/include/cham_tile_interface.h index c79657b92bf157d4ac3acb8f1c11cbc3c42acc05..54d82d1c41055c11b7e4243246a119fb76b96dd2 100644 --- a/runtime/starpu/include/cham_tile_interface.h +++ b/runtime/starpu/include/cham_tile_interface.h @@ -2,17 +2,17 @@ * * @file starpu/cham_tile_interface.h * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Header to describe the Chameleon tile interface in StarPU * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Gwenole Lucas - * @date 2020-07-01 + * @date 2022-02-22 * */ #ifndef _cham_tile_interface_h_ diff --git a/runtime/starpu/include/chameleon_starpu.h.in b/runtime/starpu/include/chameleon_starpu.h.in index 15391b62d907de4a3be828049f381893717249b1..498e392c7aa36ba7b73964a118e9dd81511bc265 100644 --- a/runtime/starpu/include/chameleon_starpu.h.in +++ b/runtime/starpu/include/chameleon_starpu.h.in @@ -4,20 +4,20 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU runtime header * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost * @author Philippe Swartvagher * @author Samuel Thibault - * @date 2021-03-16 + * @date 2022-02-22 * */ #ifndef _chameleon_starpu_h_ diff --git a/runtime/starpu/include/runtime_codelet_profile.h b/runtime/starpu/include/runtime_codelet_profile.h index 42b99063b8c0799400c688515cc31ebde115a8d9..4f3b7e207e29715cab0564c2521bd4f6ad54ab47 100644 --- a/runtime/starpu/include/runtime_codelet_profile.h +++ b/runtime/starpu/include/runtime_codelet_profile.h @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU codelet profiling header * - * @version 1.1.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-12-01 + * @date 2022-02-22 * */ #ifndef _runtime_codelet_profile_h_ diff --git a/runtime/starpu/include/runtime_codelet_z.h b/runtime/starpu/include/runtime_codelet_z.h index 3b41ad7813d88b1d041b838d772e9f8a94a45ea5..013a6222f66807dbaf947dcfaed016b6f693f342 100644 --- a/runtime/starpu/include/runtime_codelet_z.h +++ b/runtime/starpu/include/runtime_codelet_z.h @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU CHAMELEON_Complex64_t codelets header * - * @version 1.1.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-10-12 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/runtime/starpu/include/runtime_codelets.h b/runtime/starpu/include/runtime_codelets.h index 12982b81940e679c79962933baab35d84af7c779..34370cf8fdf02f8e0cdaf699f96a232543b75dfb 100644 --- a/runtime/starpu/include/runtime_codelets.h +++ b/runtime/starpu/include/runtime_codelets.h @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU codelets main header * - * @version 1.1.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost - * @date 2020-06-29 + * @date 2022-02-22 * */ #ifndef _runtime_codelets_h_ diff --git a/runtime/starpu/include/runtime_profiling.h b/runtime/starpu/include/runtime_profiling.h index 2d899bdc2fcf01d7ce2a6449d9cbf9e2a58acd40..f5de8dd34190d9c5282566b48a569e538f6c59b9 100644 --- a/runtime/starpu/include/runtime_profiling.h +++ b/runtime/starpu/include/runtime_profiling.h @@ -4,19 +4,19 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU profiling and kernel locality header * - * @version 1.0.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cedric Castagnede * @author Florent Pruvost * @author Samuel Thibault - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _runtime_profiling_h_ diff --git a/runtime/starpu/include/runtime_workspace.h b/runtime/starpu/include/runtime_workspace.h index bc45b9337b46aa73ee89d28b57db6d308a5cabca..5546238541ef319ccb7c552e41b9259b1b7f0852 100644 --- a/runtime/starpu/include/runtime_workspace.h +++ b/runtime/starpu/include/runtime_workspace.h @@ -4,18 +4,18 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon StarPU workspace header * - * @version 1.0.0 + * @version 1.2.0 * @author Cedric Augonnet * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #ifndef _runtime_workspace_h_ diff --git a/runtime/starpu/interface/cham_tile_interface.c b/runtime/starpu/interface/cham_tile_interface.c index d9f460b64dfb0e7cfc6b3db2f46d533066e6d094..425ef3e251f53768d40b377c560abcd7d74f8498 100644 --- a/runtime/starpu/interface/cham_tile_interface.c +++ b/runtime/starpu/interface/cham_tile_interface.c @@ -2,18 +2,18 @@ * * @file starpu/cham_tile_interface.c * - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon tile interface for StarPU * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Gwenole Lucas * @author Samuel Thibault - * @date 2021-03-16 + * @date 2022-02-22 * */ #include "chameleon_starpu.h" diff --git a/simucore/CMakeLists.txt b/simucore/CMakeLists.txt index a5f7b750e532a14d92bce40a2494717fc8d318b2..75d62f2ee1b84efdff4a473874e1be114361a53f 100755 --- a/simucore/CMakeLists.txt +++ b/simucore/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,8 +17,9 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.0.0 -# @date 2020-03-03 +# @version 1.2.0 +# @author Florent Pruvost +# @date 2022-02-22 # ### diff --git a/testing/CMakeLists.txt b/testing/CMakeLists.txt index 75450771bb36f65be887d5b50f5ef90a7e8480bd..5187d6f5de6c0a76c9f6d119d2604a8bab7356b3 100644 --- a/testing/CMakeLists.txt +++ b/testing/CMakeLists.txt @@ -4,7 +4,7 @@ # # @copyright 2009-2014 The University of Tennessee and The University of # Tennessee Research Foundation. All rights reserved. -# @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # ### @@ -17,13 +17,14 @@ # Univ. of California Berkeley, # Univ. of Colorado Denver. # -# @version 1.1.0 +# @version 1.2.0 # @author Cedric Castagnede # @author Emmanuel Agullo # @author Mathieu Faverge # @author Lucas Barros de Assis # @author Florent Pruvost -# @date 2021-01-04 +# @author Alycia Lisito +# @date 2022-02-22 # ### diff --git a/testing/chameleon_ztesting.c b/testing/chameleon_ztesting.c index 84c3244e270f057a14d3693d47dcf35b5d568d16..b76f74e637d943b7bf7d4d65cc265139ba3563ff 100644 --- a/testing/chameleon_ztesting.c +++ b/testing/chameleon_ztesting.c @@ -4,19 +4,22 @@ * * @copyright 2009-2014 The University of Tennessee and The University of * Tennessee Research Foundation. All rights reserved. - * @copyright 2012-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon CHAMELEON_Complex64_t auxiliary testings routines * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Cédric Castagnède * @author Lucas Barros de Assis * @author Florent Pruvost - * @date 2020-10-15 + * @author AGULLO Emmanuel + * @author Alycia Lisito + * @author Philippe Swartvagher + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/parameters.c b/testing/parameters.c index bb2d5b5eb823ed0e22c2f073796747c3d5e5fabe..247b5a0431ddd703bf105b4a66052948eee31a1b 100644 --- a/testing/parameters.c +++ b/testing/parameters.c @@ -2,16 +2,16 @@ * * @file parameters.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. *** * * @brief Chameleon auxiliary routines for testing structures * - * @version 1.0.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "testings.h" diff --git a/testing/run_list.c b/testing/run_list.c index 6b55f24410e9c545699c75e36ecf4fbe4c97ab38..f6deec7aa0f52b8ecfec7ed02d3347dad51c4e9f 100644 --- a/testing/run_list.c +++ b/testing/run_list.c @@ -2,17 +2,17 @@ * * @file run_list.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. *** * * @brief Chameleon auxiliary routines for testing structures * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge * @author Philippe Swartvagher - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "testings.h" diff --git a/testing/testing_zcesca.c b/testing/testing_zcesca.c index 7378211a79a43995e8a2c65b785cbc56dad8df07..32476093aa1421d9fa7bd8f94db10b22215f09f9 100644 --- a/testing/testing_zcesca.c +++ b/testing/testing_zcesca.c @@ -2,16 +2,17 @@ * * @file testing_zcesca.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zcesca testing * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost - * @date 2021-05-10 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zcheck.c b/testing/testing_zcheck.c index 69965b76a41635c433abf56b687fe0bccf5d6306..fa92829bb871f6df36d18509d65df224332d7aca 100644 --- a/testing/testing_zcheck.c +++ b/testing/testing_zcheck.c @@ -9,13 +9,13 @@ * * @brief Chameleon CHAMELEON_Complex64_t auxiliary testings routines * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge * @author Nathalie Furmento * @author Alycia Lisito - * @date 2022-02-08 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zcheck.h b/testing/testing_zcheck.h index 877cb3c990880e4d79f8dc7bc2bd6812249aa4fc..3085aaa687b8bd3b5d43886a4b6e11b69ceec388 100644 --- a/testing/testing_zcheck.h +++ b/testing/testing_zcheck.h @@ -9,13 +9,13 @@ * * @brief Chameleon CHAMELEON_Complex64_t auxiliary testings header * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge * @author Nathalie Furmento * @author Alycia Lisito - * @date 2022-02-08 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zgeadd.c b/testing/testing_zgeadd.c index d354c8127f62538ea3e7caaa419a48652a35cc84..d807f54a408967300071f9157e654cd1c24a4213 100644 --- a/testing/testing_zgeadd.c +++ b/testing/testing_zgeadd.c @@ -2,17 +2,18 @@ * * @file testing_zgeadd.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeadd testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zgelqf.c b/testing/testing_zgelqf.c index 59b365657e36a76aa62aedf4531a934a086e8270..8171ee543ac9f5aada28cfa5f6f89c79f49fe50a 100644 --- a/testing/testing_zgelqf.c +++ b/testing/testing_zgelqf.c @@ -2,17 +2,18 @@ * * @file testing_zgelqf.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgelqf testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zgelqf_hqr.c b/testing/testing_zgelqf_hqr.c index 98c3116b8c9db11087a7fe6c0091d4db56541ea3..1851246698cf35b57fffe0909dc4ab5bc28ad410 100644 --- a/testing/testing_zgelqf_hqr.c +++ b/testing/testing_zgelqf_hqr.c @@ -2,17 +2,18 @@ * * @file testing_zgelqf_hqr.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgelqf_param testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zgelqs.c b/testing/testing_zgelqs.c index a9fac5b7899781a40df68d04fc71a19a8e78d646..1248e1c127b88022acf39ab87724a7f505aeed27 100644 --- a/testing/testing_zgelqs.c +++ b/testing/testing_zgelqs.c @@ -2,17 +2,18 @@ * * @file testing_zgelqs.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgelqs testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zgels.c b/testing/testing_zgels.c index 6f8e28f2c538de98d023283b3364ac8670917743..4a58e34aa503ccf758178004a915536dfdf24f47 100644 --- a/testing/testing_zgels.c +++ b/testing/testing_zgels.c @@ -2,18 +2,19 @@ * * @file testing_zgels.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgels testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zgels_hqr.c b/testing/testing_zgels_hqr.c index ca230b1de1a3a2f6ab94bd0451d5dd2160c20b57..ee19283a6a10eeb787cf8aa948f94f85572da486 100644 --- a/testing/testing_zgels_hqr.c +++ b/testing/testing_zgels_hqr.c @@ -2,18 +2,19 @@ * * @file testing_zgels_hqr.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgels_hqr testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge * @author Raphael Boucherie - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zgemm.c b/testing/testing_zgemm.c index 6aa09100189939e4da43d848c4b2abafc1f13070..9c63dab977e677fa2628b5b2d8358a3e921055a4 100644 --- a/testing/testing_zgemm.c +++ b/testing/testing_zgemm.c @@ -9,12 +9,12 @@ * * @brief Chameleon zgemm testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge * @author Alycia Lisito - * @date 2022-02-04 + * @date 2022-02-11 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zgenm2.c b/testing/testing_zgenm2.c index 44bf4730f44e6f788b960732c020946521b3a6fd..33997db0226941561f2afde769d3ad69c04c24f7 100644 --- a/testing/testing_zgenm2.c +++ b/testing/testing_zgenm2.c @@ -2,17 +2,18 @@ * * @file testing_zgenm2.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgenm2 testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-12-01 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zgepdf_qdwh.c b/testing/testing_zgepdf_qdwh.c index 051bff8f69ee0d3feaaab6c6591cb3dbc6864b7b..c1be3ce09239ff3855089e47ac1e5176dc6ecafb 100644 --- a/testing/testing_zgepdf_qdwh.c +++ b/testing/testing_zgepdf_qdwh.c @@ -2,7 +2,7 @@ * * @file testing_zgepdf_qdwh.c * - * @copyright 2020-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2020-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2020-2020 KAUST. All rights reserved. * @@ -10,10 +10,11 @@ * * @brief Chameleon zgepdf_qdwh testing * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Hatem Ltaief - * @date 2020-12-01 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zgepdf_qr.c b/testing/testing_zgepdf_qr.c index 25b85f3c52acd2c08238f4aa107f01bb95e8dafe..762ed4aff90851b2818f992a1f61dc15681f2329 100644 --- a/testing/testing_zgepdf_qr.c +++ b/testing/testing_zgepdf_qr.c @@ -2,7 +2,7 @@ * * @file testing_zgepdf_qr.c * - * @copyright 2020-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2020-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * @copyright 2020-2020 KAUST. All rights reserved. * @@ -10,10 +10,11 @@ * * @brief Chameleon zgepdf_qr testing * - * @version 1.1.0 + * @version 1.2.0 * @author Mathieu Faverge * @author Hatem Ltaief - * @date 2020-12-01 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zgeqrf.c b/testing/testing_zgeqrf.c index 384ff7dc91370d7aca107cc7fbde4e638e3bb8a6..758ca9c2b7daad40d30ec064caf3b2a8f6857da7 100644 --- a/testing/testing_zgeqrf.c +++ b/testing/testing_zgeqrf.c @@ -2,17 +2,18 @@ * * @file testing_zgeqrf.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeqrf testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zgeqrf_hqr.c b/testing/testing_zgeqrf_hqr.c index 6bf39e35a6be5a2def5d99133cd56e9a845f46b8..e7100350e81285119e4f2ec3e847b1c82081d83e 100644 --- a/testing/testing_zgeqrf_hqr.c +++ b/testing/testing_zgeqrf_hqr.c @@ -2,17 +2,18 @@ * * @file testing_zgeqrf_hqr.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeqrf_hqr testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zgeqrs.c b/testing/testing_zgeqrs.c index 732c9d639e0010089d7c1b90714fbfcbdeab8d99..7242df2e8bb516f7f09f24ad77f5954251b059a1 100644 --- a/testing/testing_zgeqrs.c +++ b/testing/testing_zgeqrs.c @@ -2,17 +2,18 @@ * * @file testing_zgeqrs.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgeqrs testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zgesv.c b/testing/testing_zgesv.c index ed64e0893b73df16b44656409e56ad8a9df50b58..9ac90fede0a20a134e81866119933b4040333bf3 100644 --- a/testing/testing_zgesv.c +++ b/testing/testing_zgesv.c @@ -2,17 +2,18 @@ * * @file testing_zgesv.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgesv testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zgetrf.c b/testing/testing_zgetrf.c index 042c695bb57d8890d3de923855c193ab34ef5356..af695a37ad786fb9c0b43258379582ac4d26e376 100644 --- a/testing/testing_zgetrf.c +++ b/testing/testing_zgetrf.c @@ -2,17 +2,18 @@ * * @file testing_zgetrf.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrf testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zgetrs.c b/testing/testing_zgetrs.c index facc3e4759e74f09046597b736cffd9d4c8e2864..cc417bd40be7b12f638243000079d4710c8135f3 100644 --- a/testing/testing_zgetrs.c +++ b/testing/testing_zgetrs.c @@ -2,17 +2,18 @@ * * @file testing_zgetrs.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgetrs testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zgram.c b/testing/testing_zgram.c index 78612bf69c744cea5b158b1e73b0958ecfa0eafd..f1d5dec4bf632a92cad62992fc6265919db7c644 100644 --- a/testing/testing_zgram.c +++ b/testing/testing_zgram.c @@ -2,16 +2,17 @@ * * @file testing_zgram.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zgram testing * - * @version 1.1.0 + * @version 1.2.0 * @author Florent Pruvost - * @date 2021-05-10 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zhemm.c b/testing/testing_zhemm.c index 3fd659ffbf22e87381233e49cbe708678cad02ce..90c61d6bc69326792eee3cce7b644aed6fda2c3a 100644 --- a/testing/testing_zhemm.c +++ b/testing/testing_zhemm.c @@ -9,12 +9,12 @@ * * @brief Chameleon zhemm testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge * @author Alycia Lisito - * @date 2022-02-04 + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/testing/testing_zher2k.c b/testing/testing_zher2k.c index 3cde6694aa05b9fdc93f8ab3d8c26bddcebbeb5f..ab6baa909a5cfd425e7d9e6a9f4da4f22ed72eca 100644 --- a/testing/testing_zher2k.c +++ b/testing/testing_zher2k.c @@ -9,12 +9,12 @@ * * @brief Chameleon zher2k testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge * @author Alycia Lisito - * @date 2022-02-04 + * @date 2022-02-22 * @precisions normal z -> z c * */ diff --git a/testing/testing_zherk.c b/testing/testing_zherk.c index 7cc8dbe298c16c40e599c30940ab389ecad17559..62ad2fc0923c5974265be77ba9e892946441632f 100644 --- a/testing/testing_zherk.c +++ b/testing/testing_zherk.c @@ -9,12 +9,12 @@ * * @brief Chameleon zherk testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge * @author Alycia Lisito - * @date 2022-02-04 + * @date 2022-02-22 * @precisions normal z -> z c * */ diff --git a/testing/testing_zlacpy.c b/testing/testing_zlacpy.c index b6178ef2801dfabab30610ca499bc6cfec0a566e..c4c319cc882e20727687472df1d8fc42d5cc99e9 100644 --- a/testing/testing_zlacpy.c +++ b/testing/testing_zlacpy.c @@ -2,17 +2,18 @@ * * @file testing_zlacpy.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlacpy testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zlange.c b/testing/testing_zlange.c index 16906f8422fbfb89dd9f9763e5529f10e6b8fd82..d1b081ed946520fed46a0420d2a4e0e6d589d73c 100644 --- a/testing/testing_zlange.c +++ b/testing/testing_zlange.c @@ -9,12 +9,12 @@ * * @brief Chameleon zlange testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge * @author Alycia Lisito - * @date 2022-02-07 + * @date 2022-02-14 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zlanhe.c b/testing/testing_zlanhe.c index bc714cb6aae835053ebcc956fe0b23c827216df7..a61bdede4b399f2e5dd707cfab620bc9756689b6 100644 --- a/testing/testing_zlanhe.c +++ b/testing/testing_zlanhe.c @@ -9,11 +9,11 @@ * * @brief Chameleon zlanhe testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge * @author Alycia Lisito - * @date 2022-02-07 + * @date 2022-02-14 * @precisions normal z -> c * */ diff --git a/testing/testing_zlansy.c b/testing/testing_zlansy.c index 572cbdb55ba7f73d5c30fff583925df979561064..b671087617638a93bc1e4a8905d6935f1bcc1c74 100644 --- a/testing/testing_zlansy.c +++ b/testing/testing_zlansy.c @@ -9,11 +9,11 @@ * * @brief Chameleon zlansy testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge * @author Alycia Lisito - * @date 2022-02-07 + * @date 2022-02-14 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zlantr.c b/testing/testing_zlantr.c index a34a841ed2b1461c82dd96e2fc427ff5c6f29ee4..60ad3248daca8e170c7f7c047341c264b13ab22b 100644 --- a/testing/testing_zlantr.c +++ b/testing/testing_zlantr.c @@ -9,11 +9,11 @@ * * @brief Chameleon zlantr testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge * @author Alycia Lisito - * @date 2022-02-07 + * @date 2022-02-14 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zlascal.c b/testing/testing_zlascal.c index 34e3ad13450719da2f842c4bc53fbae5cf7b1fd9..cbd6fcad42bd6d0de598c9d8ea6691db7f379232 100644 --- a/testing/testing_zlascal.c +++ b/testing/testing_zlascal.c @@ -2,17 +2,18 @@ * * @file testing_zlascal.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlascal testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zlauum.c b/testing/testing_zlauum.c index a7e34a9610c282ea1da114d4541b99afd28dda29..5d8f6160f79702e0ea0afa1a182f808842d71935 100644 --- a/testing/testing_zlauum.c +++ b/testing/testing_zlauum.c @@ -2,17 +2,18 @@ * * @file testing_zlauum.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zlauum testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zplrnk.c b/testing/testing_zplrnk.c index 3e80a7a7642cde12fbd31f5a6c7dd7d711b2d727..96d2b9747368cfc163cb5df1c3b7527c9611e700 100644 --- a/testing/testing_zplrnk.c +++ b/testing/testing_zplrnk.c @@ -2,18 +2,19 @@ * * @file testing_zplrnk.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zplrnk testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zpoinv.c b/testing/testing_zpoinv.c index e6fcd3f3ed6e37babcdd0412dc778eadfa26755a..1f6f0eb4bb94f365ea54dea7c5726237778a44cc 100644 --- a/testing/testing_zpoinv.c +++ b/testing/testing_zpoinv.c @@ -9,12 +9,12 @@ * * @brief Chameleon zpoinv testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge * @author Alycia Lisito - * @date 2022-02-07 + * @date 2022-02-14 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zposv.c b/testing/testing_zposv.c index f193f45f28beb96fa278fb0ef6b8b9f6355116de..9392339ab4a602b1499d23df8fe4ed5bb57e6c98 100644 --- a/testing/testing_zposv.c +++ b/testing/testing_zposv.c @@ -9,11 +9,12 @@ * * @brief Chameleon zposv testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge - * @date 2022-02-07 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zpotrf.c b/testing/testing_zpotrf.c index 6e724d958eed9f40c45e4152a9f4d788504f873e..f28b6edcb82413da628014790650b1b24e805c8c 100644 --- a/testing/testing_zpotrf.c +++ b/testing/testing_zpotrf.c @@ -2,17 +2,18 @@ * * @file testing_zpotrf.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zpotrf testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zpotri.c b/testing/testing_zpotri.c index 4488cce07a38cda5a56e8251f8b5fb21594dbbe4..863b290b1bf042e741a2555400dde46f9a85f024 100644 --- a/testing/testing_zpotri.c +++ b/testing/testing_zpotri.c @@ -9,12 +9,12 @@ * * @brief Chameleon zpotri testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge * @author Alycia Lisito - * @date 2022-02-07 + * @date 2022-02-14 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zpotrs.c b/testing/testing_zpotrs.c index 2130c207985dc0dce635574da38c16fba460762f..26cc02419761a46ece0465f3cb7f526bb0746862 100644 --- a/testing/testing_zpotrs.c +++ b/testing/testing_zpotrs.c @@ -9,11 +9,11 @@ * * @brief Chameleon zpotrs testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge * @author Alycia Lisito - * @date 2022-02-07 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zprint.c b/testing/testing_zprint.c index 24c6041adf8275fc1950373d791e7db06421e9a8..46ae4f9838de05fa32c061032e4931863bba6e8d 100644 --- a/testing/testing_zprint.c +++ b/testing/testing_zprint.c @@ -2,17 +2,18 @@ * * @file testing_zprint.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zprint testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zsymm.c b/testing/testing_zsymm.c index 5e2bb66ce1162f28b10c9029d1d607088dacd256..4acb798037c3a2a4ba331a70edddd510f6791f48 100644 --- a/testing/testing_zsymm.c +++ b/testing/testing_zsymm.c @@ -9,12 +9,12 @@ * * @brief Chameleon zsymm testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge * @author Alycia Lisito - * @date 2022-02-04 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zsyr2k.c b/testing/testing_zsyr2k.c index 4a30d91154ccc419c147844ba8e00cb2e8a389ae..fd75192357ffbe20091d51c9871fbaf720bd84cd 100644 --- a/testing/testing_zsyr2k.c +++ b/testing/testing_zsyr2k.c @@ -9,12 +9,12 @@ * * @brief Chameleon zsyr2k testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge * @author Alycia Lisito - * @date 2022-02-04 + * @date 2022-02-22 * @precisions normal z -> z c d s * */ diff --git a/testing/testing_zsyrk.c b/testing/testing_zsyrk.c index ccf584bbe131ccde677fe2f30e2f6d10bf5b3e5d..2b2b4ec151c5b97f6b8d7b837fdcc267a13fedd9 100644 --- a/testing/testing_zsyrk.c +++ b/testing/testing_zsyrk.c @@ -9,12 +9,12 @@ * * @brief Chameleon zsyrk testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge * @author Alycia Lisito - * @date 2022-02-04 + * @date 2022-02-22 * @precisions normal z -> z c d s * */ diff --git a/testing/testing_zsysv.c b/testing/testing_zsysv.c index 8cb8807b869b9fc22c9b7332791dbc3020eba2d2..a56b97de75d56d0a162961fb0ec7453fd4a7fddb 100644 --- a/testing/testing_zsysv.c +++ b/testing/testing_zsysv.c @@ -2,17 +2,18 @@ * * @file testing_zsysv.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsysv testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/testing/testing_zsytrf.c b/testing/testing_zsytrf.c index 0fa93374a88950999f28e5b9adf1cfeb827addfa..a643e4915b219abe9d94b6789271cdd8a8b830ab 100644 --- a/testing/testing_zsytrf.c +++ b/testing/testing_zsytrf.c @@ -2,17 +2,18 @@ * * @file testing_zsytrf.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsytrf testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/testing/testing_zsytrs.c b/testing/testing_zsytrs.c index ffde16d2b14501c23f69df2d0c3c3daef31b9735..eb08f427530646b0eb079e5da03aef71a9011402 100644 --- a/testing/testing_zsytrs.c +++ b/testing/testing_zsytrs.c @@ -2,17 +2,18 @@ * * @file testing_zsytrs.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zsytrs testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c * */ diff --git a/testing/testing_ztradd.c b/testing/testing_ztradd.c index c5fa76cf70a0f90920f65d038ac19ffe338a62e5..084b2530950bd3c76410c481c1f14541bc4378b3 100644 --- a/testing/testing_ztradd.c +++ b/testing/testing_ztradd.c @@ -2,17 +2,18 @@ * * @file testing_ztradd.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztradd testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_ztrmm.c b/testing/testing_ztrmm.c index 3cc1506d6613c3e21507d8fcb8728bd8267b7031..8eeb605c1b472ae8c4acd7c702fc82120c80448e 100644 --- a/testing/testing_ztrmm.c +++ b/testing/testing_ztrmm.c @@ -9,12 +9,12 @@ * * @brief Chameleon ztrmm testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge * @author Alycia Lisito - * @date 2022-02-04 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_ztrsm.c b/testing/testing_ztrsm.c index fb683176a07f0bb56866c133a9f6d8f0ead681fe..62301de4e9727c1e857b0e4ccd4ffdf55ba5f7c4 100644 --- a/testing/testing_ztrsm.c +++ b/testing/testing_ztrsm.c @@ -9,12 +9,12 @@ * * @brief Chameleon ztrsm testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Florent Pruvost * @author Mathieu Faverge * @author Alycia Lisito - * @date 2022-02-04 + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_ztrtri.c b/testing/testing_ztrtri.c index 957ce66f9683bac4bc9511fe58300199f7416d97..6f7c653fdb57cf1f26a6badbfe0bb3ef47f56585 100644 --- a/testing/testing_ztrtri.c +++ b/testing/testing_ztrtri.c @@ -2,17 +2,18 @@ * * @file testing_ztrtri.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon ztrtri testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zunglq.c b/testing/testing_zunglq.c index 124375253fe77d46f9053f0224c54c408dad37b0..2d9ff38eaae00f8bf0ee1f30742b54f46f547cd4 100644 --- a/testing/testing_zunglq.c +++ b/testing/testing_zunglq.c @@ -2,17 +2,18 @@ * * @file testing_zunglq.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunglq testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zunglq_hqr.c b/testing/testing_zunglq_hqr.c index 2f2051cf7df8af29082211325b27864b2832b47b..2bec55f53e33eca4ec8424e3d641101ac240d892 100644 --- a/testing/testing_zunglq_hqr.c +++ b/testing/testing_zunglq_hqr.c @@ -2,17 +2,18 @@ * * @file testing_zunglq_hqr.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunglq_hqr testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zungqr.c b/testing/testing_zungqr.c index c7016a15d883ac7691b361bf9c46c38f6e32133b..f5fb684290c60061d2a5497dbb6bd0ca5f2f2636 100644 --- a/testing/testing_zungqr.c +++ b/testing/testing_zungqr.c @@ -2,17 +2,18 @@ * * @file testing_zungqr.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zungqr testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zungqr_hqr.c b/testing/testing_zungqr_hqr.c index 11da4423a697f533aff47bfe98b39a5c30217f42..02def386337da59c015944e4861ec6925597e35e 100644 --- a/testing/testing_zungqr_hqr.c +++ b/testing/testing_zungqr_hqr.c @@ -2,17 +2,18 @@ * * @file testing_zungqr_hqr.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zungqr_hqr testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zunmlq.c b/testing/testing_zunmlq.c index 8a95cd75b8db0812c566313e993690b2d1a997ef..4854117a850ded7b6785488290f6f535cd9fd169 100644 --- a/testing/testing_zunmlq.c +++ b/testing/testing_zunmlq.c @@ -2,17 +2,18 @@ * * @file testing_zunmlq.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmlq testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zunmlq_hqr.c b/testing/testing_zunmlq_hqr.c index 166cac58ed42b43aea630a7c0aec4680aa5cd75e..5338ce372c8b5fc9ed1534758c5d3c2001d5441c 100644 --- a/testing/testing_zunmlq_hqr.c +++ b/testing/testing_zunmlq_hqr.c @@ -2,17 +2,18 @@ * * @file testing_zunmlq_hqr.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmlq_hqr testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zunmqr.c b/testing/testing_zunmqr.c index d612d8db54cf184a7774f9c19046808f8583abd0..95589af147601ae0acd77e6b79e60fb521580881 100644 --- a/testing/testing_zunmqr.c +++ b/testing/testing_zunmqr.c @@ -2,17 +2,18 @@ * * @file testing_zunmqr.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmqr testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testing_zunmqr_hqr.c b/testing/testing_zunmqr_hqr.c index 236374d03869214297b65980137be00a985a3b7c..b213356d39150445c4903288af4b5068ce95afc3 100644 --- a/testing/testing_zunmqr_hqr.c +++ b/testing/testing_zunmqr_hqr.c @@ -2,17 +2,18 @@ * * @file testing_zunmqr_hqr.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * *** * * @brief Chameleon zunmqr_hqr testing * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-11-19 + * @author Alycia Lisito + * @date 2022-02-22 * @precisions normal z -> c d s * */ diff --git a/testing/testings.h b/testing/testings.h index bbb8991bd2800dfc037b44ba74600139a9606439..06d6cde4e923090c71c05ab9017f881fdd50624a 100644 --- a/testing/testings.h +++ b/testing/testings.h @@ -2,16 +2,17 @@ * * @file testings.h * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. *** * * @brief Chameleon auxiliary routines for testing structures * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-03-11 + * @author Alycia Lisito + * @date 2022-02-22 * */ #ifndef _testings_h_ diff --git a/testing/values.c b/testing/values.c index 203696e8aa496203ac1d0561f704a6e040fd9826..0a1b7db8d142fde1b3bd7a6d96737a81a9921a68 100644 --- a/testing/values.c +++ b/testing/values.c @@ -2,16 +2,16 @@ * * @file values.c * - * @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. *** * * @brief Chameleon testing values toutine to read/print the parameters * - * @version 1.1.0 + * @version 1.2.0 * @author Lucas Barros de Assis * @author Mathieu Faverge - * @date 2020-03-03 + * @date 2022-02-22 * */ #include "testings.h" diff --git a/tools/analysis.sh b/tools/analysis.sh index f2e525f1da1f0238a2b9c75fec4c8dffbdb7a5cf..379a7ac369bcd582c823c16baeb0914e6a29dcb7 100755 --- a/tools/analysis.sh +++ b/tools/analysis.sh @@ -2,13 +2,13 @@ ### # # @file analysis.sh -# @copyright 2013-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2013-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # -# @version 1.1.0 +# @version 1.2.0 # @author Florent Pruvost # @author Mathieu Faverge -# @date 2021-04-20 +# @date 2022-02-22 # ### diff --git a/tools/bench/chameleon_guix.sh b/tools/bench/chameleon_guix.sh index a5847949dd83a2c51ee2829e2ba8d290f36a4bc6..d6332046cae14b7c1d6e45062d39d07171198708 100755 --- a/tools/bench/chameleon_guix.sh +++ b/tools/bench/chameleon_guix.sh @@ -1,5 +1,15 @@ -#!/bin/bash - +#!/usr/bin/env bash +### +# +# @file chameleon_guix.sh +# @copyright 2018-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# Univ. Bordeaux. All rights reserved. +# +# @version 1.2.0 +# @author Florent Pruvost +# @date 2022-02-22 +# +### set -x # Configure and Build Chameleon diff --git a/tools/bench/jube/GenFigures.R b/tools/bench/jube/GenFigures.R index 04fba1aa1c64991139b2eef5a0c3315bfb7ee60e..fc75a71a01b183d04efc87c0d5f231485648a00a 100644 --- a/tools/bench/jube/GenFigures.R +++ b/tools/bench/jube/GenFigures.R @@ -1,3 +1,15 @@ +#### +## +## @file GenFigures.R +## @copyright 2018-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +## Univ. Bordeaux. All rights reserved. +## +## @version 1.2.0 +## @author Mathieu Faverge +## @author Florent Pruvost +## @date 2022-02-22 +## +#### library(ggplot2) library(plyr) library(reshape2) diff --git a/tools/bench/jube/add_result.py b/tools/bench/jube/add_result.py index 4f27dc48364bd777abf4c85c8f7138ead82dd171..7dec0e373beee9bc8fa053cbc35651c5de47b2f3 100755 --- a/tools/bench/jube/add_result.py +++ b/tools/bench/jube/add_result.py @@ -1,5 +1,14 @@ #!/usr/bin/env python3 - +# +# @file add_result.py +# +# @copyright 2020-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# Univ. Bordeaux. All rights reserved. +# +# @version 1.2.0 +# @author Florent Pruvost +# @date 2022-02-22 +# from typing import Any, Dict, List, Union from copy import deepcopy import json diff --git a/tools/bench/jube/get_result.py b/tools/bench/jube/get_result.py index a2bdbcb30256144b9be8ea8096e4b0c967025992..9386fd4b3522c177d92648f394c9d7b0724a3c18 100755 --- a/tools/bench/jube/get_result.py +++ b/tools/bench/jube/get_result.py @@ -1,5 +1,14 @@ #!/usr/bin/env python3 - +# +# @file get_result.py +# +# @copyright 2020-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# Univ. Bordeaux. All rights reserved. +# +# @version 1.2.0 +# @author Florent Pruvost +# @date 2022-02-22 +# import pandas import click import csv diff --git a/tools/bench/plafrim/run.sh b/tools/bench/plafrim/run.sh index 3234c2bb8a8ecf0943f2e8c7d11fcb5bdb8cc2e3..69b2df230f7ba0eaff4cd2275a7a83845991abcd 100755 --- a/tools/bench/plafrim/run.sh +++ b/tools/bench/plafrim/run.sh @@ -1,5 +1,14 @@ -#!/bin/bash - +#!/usr/bin/env bash +# +# @file run.sh +# +# @copyright 2020-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# Univ. Bordeaux. All rights reserved. +# +# @version 1.2.0 +# @author Florent Pruvost +# @date 2022-02-22 +# echo "######################### Chameleon benchmarks #########################" set -x diff --git a/tools/bench/plafrim/slurm.sh b/tools/bench/plafrim/slurm.sh index f64c4ff699e96d3d80b5c1a60db64d793e4dce68..46978abc49805755ea4a87c2faad81b7e6ddcf85 100755 --- a/tools/bench/plafrim/slurm.sh +++ b/tools/bench/plafrim/slurm.sh @@ -1,5 +1,14 @@ -#!/bin/bash - +#!/usr/bin/env bash +# +# @file slurm.sh +# +# @copyright 2020-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# Univ. Bordeaux. All rights reserved. +# +# @version 1.2.0 +# @author Florent Pruvost +# @date 2022-02-22 +# echo "######################### Chameleon benchmarks #########################" # Check the environment diff --git a/tools/build_macosx.sh b/tools/build_macosx.sh index 8787225e02e833a40f306c4c060ed1e91bbe5ab1..82f364866172fda41ef85b6cb989c92f214f1f0d 100755 --- a/tools/build_macosx.sh +++ b/tools/build_macosx.sh @@ -1,4 +1,14 @@ -#!/bin/bash +#!/usr/bin/env bash +# +# @file build_macosx.sh +# +# @copyright 2020-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# Univ. Bordeaux. All rights reserved. +# +# @version 1.2.0 +# @author Florent Pruvost +# @date 2022-02-22 +# # setup openblas . ~/.bash_profile diff --git a/tools/check_header.sh b/tools/check_header.sh index bd09136274a4669b011df2c62b00324d0ee4bf24..f2e56cf7715e7d2f464b352a16042a0317eb28ef 100755 --- a/tools/check_header.sh +++ b/tools/check_header.sh @@ -1,19 +1,20 @@ # # @file check_header.sh # -# @copyright 2016-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2016-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # -# @version 1.1.0 +# @version 1.2.0 # @author Florent Pruvost # @author Mathieu Faverge -# @date 2021-04-20 +# @date 2022-02-22 # # This script check that basic informations is present and correct in # headers of source files. # #!/usr/bin/env sh header=1 +nberr=0 print_header() { @@ -45,6 +46,7 @@ check_header_file() then print_header $filename echo -n "@file line missing or incorrect:"; grep "@file" $filename; echo "" + nberr=$(( nberr + 1 )) fi fi } @@ -74,6 +76,7 @@ check_header_version() then print_header $filename echo -n "@version line missing or incorrect:"; grep "@version" $filename; echo ""; + nberr=$(( nberr + 1 )) fi } @@ -87,6 +90,7 @@ check_header_author() then print_header $filename echo "@author line missing"; + nberr=$(( nberr + 1 )) fi } @@ -100,6 +104,7 @@ check_header_date() then print_header $filename echo -n "@date line missing or incorrect"; grep "@date" $filename; echo ""; + nberr=$(( nberr + 1 )) fi } @@ -137,6 +142,7 @@ check_header_define() grep "#ifndef" $filename grep "#define" $filename grep "#endif" $filename + nberr=$(( nberr + 1 )) fi ;; *) @@ -160,7 +166,10 @@ check_header() check_header_version $1 check_header_author $1 check_header_date $1 - check_header_define $1 + if [ $1 != "include/chameleon/fortran.h" ] + then + check_header_define $1 + fi } # @@ -181,6 +190,8 @@ files=$( git ls-files | grep -v "simucore/perfmodels/\.starpu" | grep -v "\.xml" | grep -v "input/.*\.in" | + grep -v "distrib/debian/.*" | + grep -v "tools/bench/jube/requirements.txt" | grep -v "\.org" ) if [ $# -gt 0 ] then @@ -197,3 +208,11 @@ do check_header $f done + +if [ $nberr -gt 0 ] +then + echo "${nberr} mistakes have been found in the header files." + exit 1 +else + exit 0 +fi diff --git a/tools/coverage.sh b/tools/coverage.sh index 1ff9ba880b15243dd57cbbd95f4a4d6d39d2c6e7..411241f217172e6585e724ea63d27ac5ba95445f 100755 --- a/tools/coverage.sh +++ b/tools/coverage.sh @@ -5,9 +5,9 @@ # @copyright 2013-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # -# @version 1.1.0 +# @version 1.2.0 # @author Mathieu Faverge -# @date 2022-02-08 +# @date 2022-02-09 # ### # diff --git a/tools/find_sources.sh b/tools/find_sources.sh index faa52b728f66d6420ec2068ce67eb8ea1f60bc45..16399025253242f799ae5f3996ceb71f479fd9bf 100755 --- a/tools/find_sources.sh +++ b/tools/find_sources.sh @@ -1,4 +1,15 @@ #!/bin/sh +# +# @file find_sources.sh +# +# @copyright 2020-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# Univ. Bordeaux. All rights reserved. +# +# @version 1.2.0 +# @author Mathieu Faverge +# @author Florent Pruvost +# @date 2022-02-22 +# #set -x SRCDIR_TO_ANALYZE="build-openmp/runtime/openmp build-parsec/runtime/parsec build-quark/runtime/quark build-starpu build compute control coreblas example include runtime testing" diff --git a/tools/fix_doxygen_date.sh b/tools/fix_doxygen_date.sh index 606482496c02d97cdeed6403db75d4c01ec87a97..4092a2f6f2c90b2560bcab6d5ffe2ff19f55f623 100755 --- a/tools/fix_doxygen_date.sh +++ b/tools/fix_doxygen_date.sh @@ -1,12 +1,12 @@ # # @file fix_doxygen_date.sh # -# @copyright 2019-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2019-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # -# @version 1.1.0 +# @version 1.2.0 # @author Florent Pruvost -# @date 2020-03-03 +# @date 2022-02-22 # # This script fix the date doxygen markup. # diff --git a/tools/pages.sh b/tools/pages.sh index 251e472a33ba9c53c0ede3d3bbf2402851d405a7..e16f6a0f12921c80f8f03a535dc31f65ced3a669 100755 --- a/tools/pages.sh +++ b/tools/pages.sh @@ -1,5 +1,14 @@ #!/usr/bin/env bash - +# +# @file pages.sh +# +# @copyright 2020-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# Univ. Bordeaux. All rights reserved. +# +# @version 1.2.0 +# @author Florent Pruvost +# @date 2022-02-22 +# CHAMELEON_SRC_DIR=${CHAMELEON_SRC_DIR:-$PWD} mkdir tmp_fig diff --git a/tools/release.sh b/tools/release.sh index a8ff12ca32d661444749020c694c0c6fff7d0f6c..94dec59aa5d3faee832297c4f29cb2a5184f1b1c 100755 --- a/tools/release.sh +++ b/tools/release.sh @@ -2,15 +2,15 @@ ### # # @file release.sh -# @copyright 2013-2021 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2013-2022 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # # @brief Script to generate the release when pushing a branch and tag of the same name # -# @version 1.1.0 +# @version 1.2.0 # @author Florent Pruvost # @author Mathieu Faverge -# @date 2021-04-20 +# @date 2022-02-22 # ###