From a5dada54279d572cbc1fddb357752f375efbbe43 Mon Sep 17 00:00:00 2001 From: tdelarue <tony.delarue@inria.fr> Date: Wed, 30 Sep 2020 10:37:21 +0200 Subject: [PATCH] Correct version and copyright --- CMakeLists.txt | 2 +- include/spm.h | 2 +- include/spm/config.h.in | 4 ++-- include/spm/const.h | 4 ++-- include/spm/datatypes.h | 4 ++-- src/common.h | 4 ++-- src/drivers/laplacian.c | 4 ++-- src/drivers/laplacian.h | 4 ++-- src/drivers/readhb.c | 4 ++-- src/drivers/readijv.c | 4 ++-- src/drivers/readmm.c | 4 ++-- src/frobeniusupdate.h | 4 ++-- src/integer_sort.c | 4 ++-- src/integer_sort_mtypes.c | 4 ++-- src/spm.c | 2 +- src/spm_dof_extend.c | 2 +- src/spm_drivers.h | 2 +- src/spm_gen_fake_values.c | 2 +- src/spm_integers.c | 2 +- src/spm_io.c | 2 +- src/spm_read_driver.c | 2 +- src/z_spm.c | 2 +- src/z_spm.h | 2 +- src/z_spm_2dense.c | 2 +- src/z_spm_convert_to_csc.c | 2 +- src/z_spm_convert_to_csr.c | 2 +- src/z_spm_convert_to_ijv.c | 2 +- src/z_spm_dof_extend.c | 2 +- src/z_spm_expand.c | 2 +- src/z_spm_genrhs.c | 2 +- src/z_spm_integer.c | 2 +- src/z_spm_laplacian.c | 2 +- src/z_spm_matrixvector.c | 2 +- src/z_spm_norm.c | 2 +- src/z_spm_print.c | 2 +- src/z_spm_scal.c | 2 +- tests/CMakeLists.txt | 2 +- tests/core_zgeadd.c | 4 ++-- tests/core_zplrnt.c | 4 ++-- tests/get_options.c | 4 ++-- tests/p_spm_tests.c | 4 ++-- tests/spm_convert_tests.c | 4 ++-- tests/spm_dist_genrhs_tests.c | 4 ++-- tests/spm_dist_matvec_tests.c | 4 ++-- tests/spm_dist_norm_tests.c | 4 ++-- tests/spm_dof_expand_tests.c | 4 ++-- tests/spm_dof_matvec_tests.c | 4 ++-- tests/spm_dof_norm_tests.c | 4 ++-- tests/spm_matvec_tests.c | 4 ++-- tests/spm_norm_tests.c | 4 ++-- tests/spm_tests.h | 2 +- tests/validate_convert.sh | 4 ++-- tests/validate_expand.sh | 4 ++-- tests/z_spm_tests.c | 4 ++-- tools/gen_wrappers.py | 2 +- tools/spm_env.sh.in | 4 ++-- tools/spmf.pc.in | 2 +- tools/wrappers/__init__.py | 2 +- tools/wrappers/wrap_fortran.py | 4 ++-- tools/wrappers/wrap_julia.py | 4 ++-- tools/wrappers/wrap_python.py | 4 ++-- wrappers/CMakeLists.txt | 2 +- wrappers/fortran90/CMakeLists.txt | 4 ++-- wrappers/fortran90/examples/spm_driver.F90 | 4 ++-- wrappers/fortran90/examples/spm_user.F90 | 4 ++-- wrappers/fortran90/src/spm_enums.F90 | 2 +- wrappers/fortran90/src/spmf.f90 | 2 +- wrappers/julia/CMakeLists.txt | 2 +- wrappers/julia/spm/src/spm.jl | 2 +- wrappers/julia/spm/src/spm_enums.jl.in | 2 +- wrappers/julia/spm_driver.jl | 2 +- wrappers/julia/spm_user.jl | 2 +- wrappers/python/CMakeLists.txt | 2 +- wrappers/python/spm/__init__.py | 4 ++-- wrappers/python/spm/__spm__.py | 2 +- wrappers/python/spm/enum.py.in | 2 +- wrappers/python/spm/spm.py | 4 ++-- wrappers/python/spm_driver.py | 4 ++-- wrappers/python/spm_scipy.py | 4 ++-- 79 files changed, 118 insertions(+), 118 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fd7753a5..8163ead4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ ### # -# @copyright 2013-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2013-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # # @version 1.0.0 diff --git a/include/spm.h b/include/spm.h index ed42fa9f..b53d1db8 100644 --- a/include/spm.h +++ b/include/spm.h @@ -4,7 +4,7 @@ * * SParse Matrix package header. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/include/spm/config.h.in b/include/spm/config.h.in index cd315390..9d83c81b 100644 --- a/include/spm/config.h.in +++ b/include/spm/config.h.in @@ -4,10 +4,10 @@ * * Spm configuration parameters * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Pierre Ramet * @author Mathieu Faverge * @date 2017-09-28 diff --git a/include/spm/const.h b/include/spm/const.h index 16815f39..251f6cd5 100644 --- a/include/spm/const.h +++ b/include/spm/const.h @@ -4,10 +4,10 @@ * * Spm API enums parameters. * - * @copyright 2004-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2004-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Xavier Lacoste * @author Pierre Ramet * @author Mathieu Faverge diff --git a/include/spm/datatypes.h b/include/spm/datatypes.h index 061748f0..f6894619 100644 --- a/include/spm/datatypes.h +++ b/include/spm/datatypes.h @@ -2,12 +2,12 @@ * * @file spm/datatypes.h * - * @copyright 2013-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2013-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * Definitions of the datatypes used in SPM * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Xavier Lacoste * @author Pierre Ramet diff --git a/src/common.h b/src/common.h index bce115b6..ea926e0a 100644 --- a/src/common.h +++ b/src/common.h @@ -2,10 +2,10 @@ * * @file common.h * - * @copyright 2004-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2004-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author David Goudin * @author François Pellegrini * @author Gregoire Pichon diff --git a/src/drivers/laplacian.c b/src/drivers/laplacian.c index 310f18c0..e80e9710 100644 --- a/src/drivers/laplacian.c +++ b/src/drivers/laplacian.c @@ -2,10 +2,10 @@ * * @file laplacian.c * - * @copyright 2011-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2011-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Pierre Ramet * @author Xavier Lacoste diff --git a/src/drivers/laplacian.h b/src/drivers/laplacian.h index cd2ef455..e0eb62f9 100644 --- a/src/drivers/laplacian.h +++ b/src/drivers/laplacian.h @@ -2,10 +2,10 @@ * * @file laplacian.h * - * @copyright 2011-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2011-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Theophile Terraz * @date 2011-11-11 diff --git a/src/drivers/readhb.c b/src/drivers/readhb.c index 232a6dd2..72601a1e 100644 --- a/src/drivers/readhb.c +++ b/src/drivers/readhb.c @@ -2,10 +2,10 @@ * * @file readhb.c * - * @copyright 2014-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2014-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Pierre Ramet * @author Xavier Lacoste diff --git a/src/drivers/readijv.c b/src/drivers/readijv.c index a587788f..670f3845 100644 --- a/src/drivers/readijv.c +++ b/src/drivers/readijv.c @@ -2,10 +2,10 @@ * * @file readijv.c * - * @copyright 2014-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2014-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Pierre Ramet * @author Xavier Lacoste diff --git a/src/drivers/readmm.c b/src/drivers/readmm.c index 90fb4d0d..a5ef0315 100644 --- a/src/drivers/readmm.c +++ b/src/drivers/readmm.c @@ -2,10 +2,10 @@ * * @file readmm.c * - * @copyright 2011-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2011-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Pierre Ramet * @author Xavier Lacoste diff --git a/src/frobeniusupdate.h b/src/frobeniusupdate.h index e232ad26..8da9f075 100644 --- a/src/frobeniusupdate.h +++ b/src/frobeniusupdate.h @@ -4,10 +4,10 @@ * * Formula to update frobenius norm computation in a safe manner. * - * @copyright 2004-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2004-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @date 2017-04-26 * diff --git a/src/integer_sort.c b/src/integer_sort.c index acf887e8..5340c104 100644 --- a/src/integer_sort.c +++ b/src/integer_sort.c @@ -4,10 +4,10 @@ * * File template to generate sort functions using qsort based algorithm. * - * @copyright 2004-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2004-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author François Pellegrini * @author Xavier Lacoste * @date 2011-11-11 diff --git a/src/integer_sort_mtypes.c b/src/integer_sort_mtypes.c index 882974fa..2be533da 100644 --- a/src/integer_sort_mtypes.c +++ b/src/integer_sort_mtypes.c @@ -4,10 +4,10 @@ * * File template to generate sort functions using qsort based algorithm. * - * @copyright 2004-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2004-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author François Pellegrini * @author Xavier Lacoste * @date 2011-11-11 diff --git a/src/spm.c b/src/spm.c index b42538ca..ea58bf8c 100644 --- a/src/spm.c +++ b/src/spm.c @@ -4,7 +4,7 @@ * * SParse Matrix package main routines. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/spm_dof_extend.c b/src/spm_dof_extend.c index 64ddfdaa..3b251a8b 100644 --- a/src/spm_dof_extend.c +++ b/src/spm_dof_extend.c @@ -4,7 +4,7 @@ * * SParse Matrix package random multi-dofs generator. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/spm_drivers.h b/src/spm_drivers.h index c33dfda0..a28beb1b 100644 --- a/src/spm_drivers.h +++ b/src/spm_drivers.h @@ -3,7 +3,7 @@ * * SParse Matrix package driver header. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/spm_gen_fake_values.c b/src/spm_gen_fake_values.c index 2081c6c9..a967466c 100644 --- a/src/spm_gen_fake_values.c +++ b/src/spm_gen_fake_values.c @@ -3,7 +3,7 @@ * * SParse Matrix generic laplacian value generator routines. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/spm_integers.c b/src/spm_integers.c index 6f93e029..a5085941 100644 --- a/src/spm_integers.c +++ b/src/spm_integers.c @@ -4,7 +4,7 @@ * * SParse Matrix package integers array management routines. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/spm_io.c b/src/spm_io.c index 6af80b5d..a50fccd4 100644 --- a/src/spm_io.c +++ b/src/spm_io.c @@ -4,7 +4,7 @@ * * SParse Matrix package I/O routines. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/spm_read_driver.c b/src/spm_read_driver.c index c6b4ac25..264be81b 100644 --- a/src/spm_read_driver.c +++ b/src/spm_read_driver.c @@ -3,7 +3,7 @@ * * SParse Matrix package file driver. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/z_spm.c b/src/z_spm.c index 4192b053..4a789156 100644 --- a/src/z_spm.c +++ b/src/z_spm.c @@ -4,7 +4,7 @@ * * SParse Matrix package precision dependent routines. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/z_spm.h b/src/z_spm.h index cb2089c2..083df73a 100644 --- a/src/z_spm.h +++ b/src/z_spm.h @@ -4,7 +4,7 @@ * * SParse Matrix package precision dependent header. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/z_spm_2dense.c b/src/z_spm_2dense.c index 0910feb8..fe987709 100644 --- a/src/z_spm_2dense.c +++ b/src/z_spm_2dense.c @@ -4,7 +4,7 @@ * * SParse Matrix package conversion to dense routine. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/z_spm_convert_to_csc.c b/src/z_spm_convert_to_csc.c index d4efbc3f..2a3ee2b0 100644 --- a/src/z_spm_convert_to_csc.c +++ b/src/z_spm_convert_to_csc.c @@ -4,7 +4,7 @@ * * SParse Matrix package conversion routines. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/z_spm_convert_to_csr.c b/src/z_spm_convert_to_csr.c index 3d7a247f..97044ba2 100644 --- a/src/z_spm_convert_to_csr.c +++ b/src/z_spm_convert_to_csr.c @@ -4,7 +4,7 @@ * * SParse Matrix package conversion routines. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/z_spm_convert_to_ijv.c b/src/z_spm_convert_to_ijv.c index 4c1efb01..8df58199 100644 --- a/src/z_spm_convert_to_ijv.c +++ b/src/z_spm_convert_to_ijv.c @@ -4,7 +4,7 @@ * * SParse Matrix package conversion routines. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/z_spm_dof_extend.c b/src/z_spm_dof_extend.c index 8e7320fa..0f84c859 100644 --- a/src/z_spm_dof_extend.c +++ b/src/z_spm_dof_extend.c @@ -4,7 +4,7 @@ * * SParse Matrix package multi-dof matrix expanser. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/z_spm_expand.c b/src/z_spm_expand.c index fe0af3a9..af6a005e 100644 --- a/src/z_spm_expand.c +++ b/src/z_spm_expand.c @@ -4,7 +4,7 @@ * * SParse Matrix package random multi-dof spm generator. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/z_spm_genrhs.c b/src/z_spm_genrhs.c index 54f213cb..cd4a1391 100644 --- a/src/z_spm_genrhs.c +++ b/src/z_spm_genrhs.c @@ -4,7 +4,7 @@ * * SParse Matrix package right hand side generators. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/z_spm_integer.c b/src/z_spm_integer.c index f53fe87e..27df740c 100644 --- a/src/z_spm_integer.c +++ b/src/z_spm_integer.c @@ -4,7 +4,7 @@ * * SParse Matrix package integer sorting routines. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/z_spm_laplacian.c b/src/z_spm_laplacian.c index 135e61cd..43441ca6 100644 --- a/src/z_spm_laplacian.c +++ b/src/z_spm_laplacian.c @@ -3,7 +3,7 @@ * * SParse Matrix package laplacian generator routines. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/z_spm_matrixvector.c b/src/z_spm_matrixvector.c index 32c766ea..ca3b409c 100644 --- a/src/z_spm_matrixvector.c +++ b/src/z_spm_matrixvector.c @@ -4,7 +4,7 @@ * * SParse Matrix package matrix-vector multiplication routines. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/z_spm_norm.c b/src/z_spm_norm.c index 9c103514..c94daf14 100644 --- a/src/z_spm_norm.c +++ b/src/z_spm_norm.c @@ -3,7 +3,7 @@ * * SParse Matrix package norm routine. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/z_spm_print.c b/src/z_spm_print.c index a462f0ac..015f0dbc 100644 --- a/src/z_spm_print.c +++ b/src/z_spm_print.c @@ -4,7 +4,7 @@ * * SParse Matrix package printing routines. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/src/z_spm_scal.c b/src/z_spm_scal.c index 3886729b..c61e037b 100644 --- a/src/z_spm_scal.c +++ b/src/z_spm_scal.c @@ -3,7 +3,7 @@ * * SParse Matrix package scaling routine. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index aa2a161b..6be4f392 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,6 +1,6 @@ ### # -# @copyright 2013-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2013-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # # @version 1.0.0 diff --git a/tests/core_zgeadd.c b/tests/core_zgeadd.c index 758224eb..01b3f678 100644 --- a/tests/core_zgeadd.c +++ b/tests/core_zgeadd.c @@ -6,10 +6,10 @@ * * @copyright 2010-2015 Univ. of Tennessee, Univ. of California Berkeley and * Univ. of Colorado Denver. All rights reserved. - * @copyright 2012-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @date 2010-11-15 * @precisions normal z -> c d s diff --git a/tests/core_zplrnt.c b/tests/core_zplrnt.c index e210cab7..21afcb7f 100644 --- a/tests/core_zplrnt.c +++ b/tests/core_zplrnt.c @@ -6,10 +6,10 @@ * * @copyright 2010-2015 Univ. of Tennessee, Univ. of California Berkeley and * Univ. of Colorado Denver. All rights reserved. - * @copyright 2012-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2012-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Piotr Luszczek * @author Pierre Lemarinier * @author Mathieu Faverge diff --git a/tests/get_options.c b/tests/get_options.c index 683d8da0..d6ea7cdc 100644 --- a/tests/get_options.c +++ b/tests/get_options.c @@ -2,10 +2,10 @@ * * @file get_options.c * - * @copyright 2006-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2006-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Pierre Ramet * @author Xavier Lacoste diff --git a/tests/p_spm_tests.c b/tests/p_spm_tests.c index 1f70e500..cbe7aa2e 100644 --- a/tests/p_spm_tests.c +++ b/tests/p_spm_tests.c @@ -2,12 +2,12 @@ * * @file p_spm_tests.c * - * @copyright 2011-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2011-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * Tests and validate the spm_convert routines. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Theophile Terraz * @date 2015-01-01 diff --git a/tests/spm_convert_tests.c b/tests/spm_convert_tests.c index 9d047751..882003bb 100644 --- a/tests/spm_convert_tests.c +++ b/tests/spm_convert_tests.c @@ -2,12 +2,12 @@ * * @file spm_convert_tests.c * - * @copyright 2011-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2011-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * Test and validate the spmConvert routine. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Theophile Terraz * @date 2015-01-01 diff --git a/tests/spm_dist_genrhs_tests.c b/tests/spm_dist_genrhs_tests.c index 26d0c46e..44010a06 100644 --- a/tests/spm_dist_genrhs_tests.c +++ b/tests/spm_dist_genrhs_tests.c @@ -4,10 +4,10 @@ * * Tests and validate the spm_genrhs routines in the case of random distributed vectors. * - * @copyright 2015-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2015-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Theophile Terraz * @author Tony Delarue diff --git a/tests/spm_dist_matvec_tests.c b/tests/spm_dist_matvec_tests.c index 7d2e270b..b2bc29e5 100644 --- a/tests/spm_dist_matvec_tests.c +++ b/tests/spm_dist_matvec_tests.c @@ -4,10 +4,10 @@ * * Tests and validate the spm_matvec routines. * - * @copyright 2015-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2015-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Theophile Terraz * @author Tony Delarue diff --git a/tests/spm_dist_norm_tests.c b/tests/spm_dist_norm_tests.c index 1369f92e..b87312eb 100644 --- a/tests/spm_dist_norm_tests.c +++ b/tests/spm_dist_norm_tests.c @@ -4,10 +4,10 @@ * * Tests and validate the spm_norm routines. * - * @copyright 2015-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2015-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Theophile Terraz * @author Tony Delarue diff --git a/tests/spm_dof_expand_tests.c b/tests/spm_dof_expand_tests.c index d49612e0..a5a20afb 100644 --- a/tests/spm_dof_expand_tests.c +++ b/tests/spm_dof_expand_tests.c @@ -4,10 +4,10 @@ * * Tests and validate the spmNorm routines when the spm_tests.hold constant and/or variadic dofs. * - * @copyright 2015-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2015-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Theophile Terraz * @date 2015-01-01 diff --git a/tests/spm_dof_matvec_tests.c b/tests/spm_dof_matvec_tests.c index 5841ce04..25ef4632 100644 --- a/tests/spm_dof_matvec_tests.c +++ b/tests/spm_dof_matvec_tests.c @@ -4,10 +4,10 @@ * * Tests and validate the spmMatVec routines when the spm_tests.hold constant and/or variadic dofs. * - * @copyright 2015-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2015-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Theophile Terraz * @date 2015-01-01 diff --git a/tests/spm_dof_norm_tests.c b/tests/spm_dof_norm_tests.c index 8383fb32..09aea47c 100644 --- a/tests/spm_dof_norm_tests.c +++ b/tests/spm_dof_norm_tests.c @@ -4,10 +4,10 @@ * * Tests and validate the spm_norm routines when the spm_tests.hold constant and/or variadic dofs. * - * @copyright 2015-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2015-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Theophile Terraz * @date 2015-01-01 diff --git a/tests/spm_matvec_tests.c b/tests/spm_matvec_tests.c index 84108b9b..d9fdcc01 100644 --- a/tests/spm_matvec_tests.c +++ b/tests/spm_matvec_tests.c @@ -4,10 +4,10 @@ * * Tests and validate the spm_matvec routines. * - * @copyright 2015-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2015-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Theophile Terraz * @date 2015-01-01 diff --git a/tests/spm_norm_tests.c b/tests/spm_norm_tests.c index 41523904..0ccebb58 100644 --- a/tests/spm_norm_tests.c +++ b/tests/spm_norm_tests.c @@ -4,10 +4,10 @@ * * Tests and validate the spm_norm routines. * - * @copyright 2015-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2015-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Theophile Terraz * @date 2015-01-01 diff --git a/tests/spm_tests.h b/tests/spm_tests.h index 85dd17ab..6ad13b72 100644 --- a/tests/spm_tests.h +++ b/tests/spm_tests.h @@ -4,7 +4,7 @@ * * SParse Matrix package testings header. * - * @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * * @version 1.0.0 diff --git a/tests/validate_convert.sh b/tests/validate_convert.sh index 45cac3bb..4b331ca0 100755 --- a/tests/validate_convert.sh +++ b/tests/validate_convert.sh @@ -1,10 +1,10 @@ # # @file validate_convert.sh # -# @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # -# @version 6.0.0 +# @version 1.0.0 # @author Mathieu Faverge # @date 2017-06-24 # diff --git a/tests/validate_expand.sh b/tests/validate_expand.sh index b00e6141..6ae61965 100755 --- a/tests/validate_expand.sh +++ b/tests/validate_expand.sh @@ -1,10 +1,10 @@ # # @file validate_expand.sh # -# @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # -# @version 6.0.0 +# @version 1.0.0 # @author Mathieu Faverge # @date 2017-06-24 # diff --git a/tests/z_spm_tests.c b/tests/z_spm_tests.c index c53a0900..2d4abfef 100644 --- a/tests/z_spm_tests.c +++ b/tests/z_spm_tests.c @@ -4,10 +4,10 @@ * * Tests and validate the spm_convert routines. * - * @copyright 2015-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + * @copyright 2015-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, * Univ. Bordeaux. All rights reserved. * - * @version 6.0.0 + * @version 1.0.0 * @author Mathieu Faverge * @author Theophile Terraz * @author Tony Delarue diff --git a/tools/gen_wrappers.py b/tools/gen_wrappers.py index 89b9c458..7bb3d797 100755 --- a/tools/gen_wrappers.py +++ b/tools/gen_wrappers.py @@ -10,7 +10,7 @@ @copyright 2017-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. - @version 6.1.0 + @version 1.0.0 @author Pierre Ramet @author Mathieu Faverge @date 2020-01-21 diff --git a/tools/spm_env.sh.in b/tools/spm_env.sh.in index 1ae1a381..33d71c17 100644 --- a/tools/spm_env.sh.in +++ b/tools/spm_env.sh.in @@ -1,10 +1,10 @@ # # @file spm_env.sh # -# @copyright 2016-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # -# @version 6.0.0 +# @version 1.0.0 # @author Mathieu Faverge # @date 2017-06-24 # diff --git a/tools/spmf.pc.in b/tools/spmf.pc.in index c368a6d7..4901745f 100644 --- a/tools/spmf.pc.in +++ b/tools/spmf.pc.in @@ -1,7 +1,7 @@ # # @file spmf.pc # -# @copyright 2016-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2016-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # # @version 1.0.0 diff --git a/tools/wrappers/__init__.py b/tools/wrappers/__init__.py index 9b577363..ffc3d1ba 100644 --- a/tools/wrappers/__init__.py +++ b/tools/wrappers/__init__.py @@ -9,7 +9,7 @@ Wrappers @copyright 2017-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. - @version 6.1.0 + @version 1.0.0 @author Mathieu Faverge @date 2019-11-12 diff --git a/tools/wrappers/wrap_fortran.py b/tools/wrappers/wrap_fortran.py index 805b33ae..68859f99 100644 --- a/tools/wrappers/wrap_fortran.py +++ b/tools/wrappers/wrap_fortran.py @@ -10,7 +10,7 @@ Wrapper Fortran 90 @copyright 2017-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. - @version 6.0.3 + @version 1.0.0 @author Mathieu Faverge @date 2019-12-05 @@ -141,7 +141,7 @@ class wrap_fortran: ! @copyright 2017-''' + time.strftime( "%Y" ) + ''' Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, ! Univ. Bordeaux. All rights reserved. ! -! @version 6.0.3 +! @version 1.0.0 ! @author Mathieu Faverge ! @date ''' + time.strftime( "%Y-%m-%d" ) + ''' ! diff --git a/tools/wrappers/wrap_julia.py b/tools/wrappers/wrap_julia.py index b4dc3423..5f531acb 100644 --- a/tools/wrappers/wrap_julia.py +++ b/tools/wrappers/wrap_julia.py @@ -10,7 +10,7 @@ Wrapper Julia @copyright 2019-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. - @version 6.0.0 + @version 1.0.0 @author Mathieu Faverge @author Selmane LEBDAOUI @date 2020-06-18 @@ -102,7 +102,7 @@ class wrap_julia: @copyright 2020-''' + time.strftime( "%Y" ) + ''' Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. - @version 6.0.0 + @version 1.0.0 @author Mathieu Faverge @author Lebdaoui selmane @date ''' + time.strftime( "%Y-%m-%d" ) + ''' diff --git a/tools/wrappers/wrap_python.py b/tools/wrappers/wrap_python.py index b1656ef7..944437e4 100644 --- a/tools/wrappers/wrap_python.py +++ b/tools/wrappers/wrap_python.py @@ -10,7 +10,7 @@ Wrapper Python @copyright 2017-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. - @version 6.0.3 + @version 1.0.0 @author Mathieu Faverge @date 2019-12-05 @@ -138,7 +138,7 @@ class wrap_python: @copyright 2017-''' + time.strftime( "%Y" ) + ''' Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. - @version 6.0.3 + @version 1.0.0 @author Pierre Ramet @author Mathieu Faverge @author Louis Poirel diff --git a/wrappers/CMakeLists.txt b/wrappers/CMakeLists.txt index 4e4dc393..a6ad3187 100644 --- a/wrappers/CMakeLists.txt +++ b/wrappers/CMakeLists.txt @@ -3,7 +3,7 @@ # @copyright 2017-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # -# @version 6.1.0 +# @version 1.0.0 # @author Mathieu Faverge # @date 2020-01-29 # diff --git a/wrappers/fortran90/CMakeLists.txt b/wrappers/fortran90/CMakeLists.txt index f968fa90..92fcec09 100644 --- a/wrappers/fortran90/CMakeLists.txt +++ b/wrappers/fortran90/CMakeLists.txt @@ -1,9 +1,9 @@ ### # -# @copyright 2017-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2017-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # -# @version 6.0.0 +# @version 1.0.0 # @author Mathieu Faverge # @date 2017-05-22 # diff --git a/wrappers/fortran90/examples/spm_driver.F90 b/wrappers/fortran90/examples/spm_driver.F90 index a6f8a36d..63e61dd0 100644 --- a/wrappers/fortran90/examples/spm_driver.F90 +++ b/wrappers/fortran90/examples/spm_driver.F90 @@ -3,10 +3,10 @@ ! ! Fortran 90 example using a matrix read with the spm driver. ! -! @copyright 2017-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +! @copyright 2017-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, ! Univ. Bordeaux. All rights reserved. ! -! @version 6.0.0 +! @version 1.0.0 ! @author Mathieu Faverge ! @date 2017-01-01 ! diff --git a/wrappers/fortran90/examples/spm_user.F90 b/wrappers/fortran90/examples/spm_user.F90 index c035108d..cb01cfa1 100644 --- a/wrappers/fortran90/examples/spm_user.F90 +++ b/wrappers/fortran90/examples/spm_user.F90 @@ -3,10 +3,10 @@ ! ! Fortran 90 example using a laplacian matrix. ! -! @copyright 2015-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +! @copyright 2015-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, ! Univ. Bordeaux. All rights reserved. ! -! @version 6.0.0 +! @version 1.0.0 ! @author Mathieu Faverge ! @date 2017-01-01 ! diff --git a/wrappers/fortran90/src/spm_enums.F90 b/wrappers/fortran90/src/spm_enums.F90 index 03a480db..82d526f5 100644 --- a/wrappers/fortran90/src/spm_enums.F90 +++ b/wrappers/fortran90/src/spm_enums.F90 @@ -7,7 +7,7 @@ ! @copyright 2017-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, ! Univ. Bordeaux. All rights reserved. ! -! @version 6.0.3 +! @version 1.0.0 ! @author Mathieu Faverge ! @date 2020-07-15 ! diff --git a/wrappers/fortran90/src/spmf.f90 b/wrappers/fortran90/src/spmf.f90 index 44c3677e..9782f3f4 100644 --- a/wrappers/fortran90/src/spmf.f90 +++ b/wrappers/fortran90/src/spmf.f90 @@ -7,7 +7,7 @@ ! @copyright 2017-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, ! Univ. Bordeaux. All rights reserved. ! -! @version 6.0.3 +! @version 1.0.0 ! @author Mathieu Faverge ! @date 2020-07-15 ! diff --git a/wrappers/julia/CMakeLists.txt b/wrappers/julia/CMakeLists.txt index 8b9720f2..7e7e6f0a 100644 --- a/wrappers/julia/CMakeLists.txt +++ b/wrappers/julia/CMakeLists.txt @@ -3,7 +3,7 @@ # @copyright 2019-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # -# @version 6.0.0 +# @version 1.0.0 # @author Mathieu Faverge # @author Selmane Lebdaoui # @date 2020-07-15 diff --git a/wrappers/julia/spm/src/spm.jl b/wrappers/julia/spm/src/spm.jl index 8a2f1676..acb5d144 100644 --- a/wrappers/julia/spm/src/spm.jl +++ b/wrappers/julia/spm/src/spm.jl @@ -7,7 +7,7 @@ @copyright 2020-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. - @version 6.0.0 + @version 1.0.0 @author Mathieu Faverge @author Lebdaoui selmane @date 2020-07-15 diff --git a/wrappers/julia/spm/src/spm_enums.jl.in b/wrappers/julia/spm/src/spm_enums.jl.in index 71e5bca1..dc066d7f 100644 --- a/wrappers/julia/spm/src/spm_enums.jl.in +++ b/wrappers/julia/spm/src/spm_enums.jl.in @@ -7,7 +7,7 @@ @copyright 2020-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. - @version 6.0.0 + @version 1.0.0 @author Mathieu Faverge @author Lebdaoui selmane @date 2020-07-15 diff --git a/wrappers/julia/spm_driver.jl b/wrappers/julia/spm_driver.jl index 71b64fde..491c621a 100755 --- a/wrappers/julia/spm_driver.jl +++ b/wrappers/julia/spm_driver.jl @@ -7,7 +7,7 @@ @copyright 2019-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. - @version 6.0.0 + @version 1.0.0 @author Mathieu Faverge @author Selmane Lebdaoui @date 2020-06-15 diff --git a/wrappers/julia/spm_user.jl b/wrappers/julia/spm_user.jl index 98282a87..c5d4d756 100755 --- a/wrappers/julia/spm_user.jl +++ b/wrappers/julia/spm_user.jl @@ -7,7 +7,7 @@ @copyright 2019-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. - @version 6.0.0 + @version 1.0.0 @author Mathieu Faverge @author Selmane Lebdaoui @date 2020-06-27 diff --git a/wrappers/python/CMakeLists.txt b/wrappers/python/CMakeLists.txt index c5853782..7c6b2995 100644 --- a/wrappers/python/CMakeLists.txt +++ b/wrappers/python/CMakeLists.txt @@ -3,7 +3,7 @@ # @copyright 2017-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # -# @version 6.0.3 +# @version 1.0.0 # @author Mathieu Faverge # @date 2019-12-04 # diff --git a/wrappers/python/spm/__init__.py b/wrappers/python/spm/__init__.py index d235bf94..c115630b 100644 --- a/wrappers/python/spm/__init__.py +++ b/wrappers/python/spm/__init__.py @@ -3,10 +3,10 @@ # # SParse Matrix package python module intialization # -# @copyright 2017-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, +# @copyright 2017-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, # Univ. Bordeaux. All rights reserved. # -# @version 6.0.0 +# @version 1.0.0 # @author Pierre Ramet # @author Mathieu Faverge # @author Louis Poirel diff --git a/wrappers/python/spm/__spm__.py b/wrappers/python/spm/__spm__.py index 421aee43..3da7cc76 100644 --- a/wrappers/python/spm/__spm__.py +++ b/wrappers/python/spm/__spm__.py @@ -7,7 +7,7 @@ @copyright 2017-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. - @version 6.0.3 + @version 1.0.0 @author Pierre Ramet @author Mathieu Faverge @author Louis Poirel diff --git a/wrappers/python/spm/enum.py.in b/wrappers/python/spm/enum.py.in index 988699d4..eee1f1fe 100644 --- a/wrappers/python/spm/enum.py.in +++ b/wrappers/python/spm/enum.py.in @@ -7,7 +7,7 @@ @copyright 2017-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. - @version 6.0.3 + @version 1.0.0 @author Pierre Ramet @author Mathieu Faverge @author Louis Poirel diff --git a/wrappers/python/spm/spm.py b/wrappers/python/spm/spm.py index fb502da6..0f76de00 100644 --- a/wrappers/python/spm/spm.py +++ b/wrappers/python/spm/spm.py @@ -3,10 +3,10 @@ SPM python wrapper - @copyright 2017-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + @copyright 2017-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. - @version 6.0.0 + @version 1.0.0 @author Pierre Ramet @author Mathieu Faverge @date 2017-05-04 diff --git a/wrappers/python/spm_driver.py b/wrappers/python/spm_driver.py index eb06c781..c973c4cc 100755 --- a/wrappers/python/spm_driver.py +++ b/wrappers/python/spm_driver.py @@ -4,10 +4,10 @@ SPM example to generate a sparse matrix from the spm drivers - @copyright 2017-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + @copyright 2017-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. - @version 6.0.0 + @version 1.0.0 @author Pierre Ramet @author Mathieu Faverge @author Louis Poirel diff --git a/wrappers/python/spm_scipy.py b/wrappers/python/spm_scipy.py index d2167238..6d735ab0 100755 --- a/wrappers/python/spm_scipy.py +++ b/wrappers/python/spm_scipy.py @@ -4,10 +4,10 @@ SPM example to geneate a sparse matrix from Scipy to SPM - @copyright 2017-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, + @copyright 2017-2020 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. - @version 6.0.0 + @version 1.0.0 @author Pierre Ramet @author Mathieu Faverge @author Louis Poirel -- GitLab