diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f2badb5fd4a1590b74e386f26cfb3617a888bdcb..465f8e2776c3093c7321954e4d3550ab66ffa86c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -9,7 +9,7 @@ stages:
 before_script:
   - git submodule update --init --recursive
   - source .gitlab-ci-env.sh $SIMU
-  - mkdir -p build
+  - mkdir -p build-$VERSION
 
 .build_script_template: &build_script
   stage: build
@@ -17,15 +17,15 @@ before_script:
   script:
     - echo BUILD_OPTIONS $BUILD_OPTIONS
     - echo VERSION $VERSION
-    - (cd build &&
-       scan-build -plist --intercept-first --analyze-headers -o analyzer_reports
+    - (cd build-$VERSION &&
+       scan-build -plist --intercept-first --exclude CMakeFiles --analyze-headers -o analyzer_reports
        cmake -C ../cmake_modules/gitlab-ci-initial-cache.cmake .. $BUILD_OPTIONS &&
-       scan-build -plist --intercept-first --analyze-headers -o analyzer_reports
+       scan-build -plist --intercept-first --exclude CMakeFiles --analyze-headers -o analyzer_reports
        ctest --no-compress-output -V -j 5
              -D ExperimentalBuild
              -D ExperimentalSubmit
              | tee ../chameleon_${VERSION}.log)
-    - (cd build &&
+    - (cd build-$VERSION &&
        make install | tee -a ../chameleon_${VERSION}.log &&
        rm install/ -r)
 
@@ -35,39 +35,38 @@ before_script:
   script:
     - echo TESTS_RESTRICTION $TESTS_RESTRICTION
     - echo VERSION $VERSION
-    - (cd build &&
+    - (cd build-$VERSION &&
        eval "ctest --no-compress-output -V
              $TESTS_RESTRICTION
              -D ExperimentalTest
              -D ExperimentalCoverage
              -D ExperimentalSubmit
              | tee -a ../chameleon_${VERSION}.log")
-    - lcov --directory build --capture --output-file ./chameleon_${VERSION}.lcov
+    - lcov --directory build-$VERSION --capture --output-file ./chameleon_${VERSION}.lcov
 
-build_starpu:
+build_openmp:
   <<: *build_script
   artifacts:
-    name: build_starpu
+    name: build_openmp
     expire_in: 48 hours
     paths:
-      - build
-      - chameleon_starpu.log
+      - build-$VERSION
+      - chameleon_openmp.log
   variables:
-    BUILD_OPTIONS: "-DCHAMELEON_USE_CUDA=ON -DCHAMELEON_USE_MPI=ON"
-    VERSION: starpu
+    BUILD_OPTIONS: "-DCHAMELEON_SCHED=OPENMP"
+    VERSION: openmp
 
-build_starpu_simgrid:
+build_parsec:
   <<: *build_script
   artifacts:
-    name: build_starpu_simgrid
+    name: build_parsec
     expire_in: 48 hours
     paths:
-      - build
-      - chameleon_starpu_simgrid.log
+      - build-$VERSION
+      - chameleon_parsec.log
   variables:
-    SIMU: simu
-    BUILD_OPTIONS: "-DCHAMELEON_SIMULATION=ON -DCHAMELEON_USE_CUDA=ON -DCHAMELEON_USE_MPI=OFF"
-    VERSION: starpu_simgrid
+    BUILD_OPTIONS: "-DCHAMELEON_SCHED=PARSEC"
+    VERSION: parsec
 
 build_quark:
   <<: *build_script
@@ -75,109 +74,112 @@ build_quark:
     name: build_quark
     expire_in: 48 hours
     paths:
-      - build
+      - build-$VERSION
       - chameleon_quark.log
   variables:
     BUILD_OPTIONS: "-DCHAMELEON_SCHED=QUARK"
     VERSION: quark
 
-build_parsec:
+build_starpu:
   <<: *build_script
   artifacts:
-    name: build_parsec
+    name: build_starpu
     expire_in: 48 hours
     paths:
-      - build
-      - chameleon_parsec.log
+      - build-$VERSION
+      - chameleon_starpu.log
   variables:
-    BUILD_OPTIONS: "-DCHAMELEON_SCHED=PARSEC"
-    VERSION: parsec
+    BUILD_OPTIONS: "-DCHAMELEON_USE_CUDA=ON -DCHAMELEON_USE_MPI=ON"
+    VERSION: starpu
 
-build_openmp:
+build_starpu_simgrid:
   <<: *build_script
   artifacts:
-    name: build_openmp
+    name: build_starpu_simgrid
     expire_in: 48 hours
     paths:
-      - build
-      - chameleon_openmp.log
+      - build-$VERSION
+      - chameleon_starpu_simgrid.log
   variables:
-    BUILD_OPTIONS: "-DCHAMELEON_SCHED=OPENMP"
-    VERSION: openmp
+    SIMU: simu
+    BUILD_OPTIONS: "-DCHAMELEON_SIMULATION=ON -DCHAMELEON_USE_CUDA=ON -DCHAMELEON_USE_MPI=OFF"
+    VERSION: starpu_simgrid
 
-test_starpu_branches:
+test_openmp_branches:
   <<: *test_script
   variables:
-    TESTS_RESTRICTION: "-R \"test_shm_s|test_mpi_s|time_ooc_shm_s|time_ooc_mpi_s\""
-    VERSION: starpu
+    TESTS_RESTRICTION: "-R \"test_shm_s|test_mpi_s\""
+    VERSION: openmp
   dependencies:
-    - build_starpu
+    - build_openmp
   artifacts:
-    name: test_starpu
+    name: test_openmp
     expire_in: 48 hours
     paths:
-      - build
-      - chameleon_starpu.log
-      - chameleon_starpu.lcov
+      - build-$VERSION
+      - chameleon_openmp.log
+      - chameleon_openmp.lcov
   only:
     - branches
   except:
     - master
+    - /^ci-.*$/
 
-test_starpu_master:
+test_openmp_master:
   <<: *test_script
   variables:
     TESTS_RESTRICTION: "-R \"_shm_|_mpi_\""
-    VERSION: starpu
+    VERSION: openmp
   dependencies:
-    - build_starpu
+    - build_openmp
   artifacts:
-    name: test_starpu
+    name: test_openmp
     expire_in: 48 hours
     paths:
-      - build
-      - chameleon_starpu.log
-      - chameleon_starpu.lcov
+      - build-$VERSION
+      - chameleon_openmp.log
+      - chameleon_openmp.lcov
   only:
     - master@solverstack/chameleon
+    - /^ci-.*$/
 
-test_starpu_simgrid_branches:
+test_parsec_branches:
   <<: *test_script
   variables:
-    SIMU: simu
-    TESTS_RESTRICTION: "-R simu"
-    VERSION: starpu_simgrid
+    TESTS_RESTRICTION: "-R \"test_shm_s|test_mpi_s\""
+    VERSION: parsec
   dependencies:
-    - build_starpu_simgrid
+    - build_parsec
   artifacts:
-    name: test_starpu_simgrid
+    name: test_parsec
     expire_in: 48 hours
     paths:
-      - build
-      - chameleon_starpu_simgrid.log
-      - chameleon_starpu_simgrid.lcov
+      - build-$VERSION
+      - chameleon_parsec.log
+      - chameleon_parsec.lcov
   only:
     - branches
   except:
     - master
+    - /^ci-.*$/
 
-test_starpu_simgrid_master:
+test_parsec_master:
   <<: *test_script
   variables:
-    SIMU: simu
-    TESTS_RESTRICTION: "-R simu"
-    VERSION: starpu_simgrid
+    TESTS_RESTRICTION: "-R \"_shm_|_mpi_\""
+    VERSION: parsec
   dependencies:
-    - build_starpu_simgrid
+    - build_parsec
   artifacts:
-    name: test_starpu_simgrid
+    name: test_parsec
     expire_in: 48 hours
     paths:
-      - build
-      - chameleon_starpu_simgrid.log
-      - chameleon_starpu_simgrid.lcov
+      - build-$VERSION
+      - chameleon_parsec.log
+      - chameleon_parsec.lcov
   only:
     - master@solverstack/chameleon
+    - /^ci-.*$/
 
 test_quark_branches:
   <<: *test_script
@@ -190,13 +192,14 @@ test_quark_branches:
     name: test_quark
     expire_in: 48 hours
     paths:
-      - build
+      - build-$VERSION
       - chameleon_quark.log
       - chameleon_quark.lcov
   only:
     - branches
   except:
     - master
+    - /^ci-.*$/
 
 test_quark_master:
   <<: *test_script
@@ -209,83 +212,90 @@ test_quark_master:
     name: test_quark
     expire_in: 48 hours
     paths:
-      - build
+      - build-$VERSION
       - chameleon_quark.log
       - chameleon_quark.lcov
   only:
     - master@solverstack/chameleon
+    - /^ci-.*$/
 
-test_parsec_branches:
+test_starpu_branches:
   <<: *test_script
   variables:
-    TESTS_RESTRICTION: "-R \"test_shm_s|test_mpi_s\""
-    VERSION: parsec
+    TESTS_RESTRICTION: "-R \"test_shm_s|test_mpi_s|time_ooc_shm_s|time_ooc_mpi_s\""
+    VERSION: starpu
   dependencies:
-    - build_parsec
+    - build_starpu
   artifacts:
-    name: test_parsec
+    name: test_starpu
     expire_in: 48 hours
     paths:
-      - build
-      - chameleon_parsec.log
-      - chameleon_parsec.lcov
+      - build-$VERSION
+      - chameleon_starpu.log
+      - chameleon_starpu.lcov
   only:
     - branches
   except:
     - master
+    - /^ci-.*$/
 
-test_parsec_master:
+test_starpu_master:
   <<: *test_script
   variables:
     TESTS_RESTRICTION: "-R \"_shm_|_mpi_\""
-    VERSION: parsec
+    VERSION: starpu
   dependencies:
-    - build_parsec
+    - build_starpu
   artifacts:
-    name: test_parsec
+    name: test_starpu
     expire_in: 48 hours
     paths:
-      - build
-      - chameleon_parsec.log
-      - chameleon_parsec.lcov
+      - build-$VERSION
+      - chameleon_starpu.log
+      - chameleon_starpu.lcov
   only:
     - master@solverstack/chameleon
+    - /^ci-.*$/
 
-test_openmp_branches:
+test_starpu_simgrid_branches:
   <<: *test_script
   variables:
-    TESTS_RESTRICTION: "-R \"test_shm_s|test_mpi_s\""
-    VERSION: openmp
+    SIMU: simu
+    TESTS_RESTRICTION: "-R simu"
+    VERSION: starpu_simgrid
   dependencies:
-    - build_openmp
+    - build_starpu_simgrid
   artifacts:
-    name: test_openmp
+    name: test_starpu_simgrid
     expire_in: 48 hours
     paths:
-      - build
-      - chameleon_openmp.log
-      - chameleon_openmp.lcov
+      - build-$VERSION
+      - chameleon_starpu_simgrid.log
+      - chameleon_starpu_simgrid.lcov
   only:
     - branches
   except:
     - master
+    - /^ci-.*$/
 
-test_openmp_master:
+test_starpu_simgrid_master:
   <<: *test_script
   variables:
-    TESTS_RESTRICTION: "-R \"_shm_|_mpi_\""
-    VERSION: openmp
+    SIMU: simu
+    TESTS_RESTRICTION: "-R simu"
+    VERSION: starpu_simgrid
   dependencies:
-    - build_openmp
+    - build_starpu_simgrid
   artifacts:
-    name: test_openmp
+    name: test_starpu_simgrid
     expire_in: 48 hours
     paths:
-      - build
-      - chameleon_openmp.log
-      - chameleon_openmp.lcov
+      - build-$VERSION
+      - chameleon_starpu_simgrid.log
+      - chameleon_starpu_simgrid.lcov
   only:
     - master@solverstack/chameleon
+    - /^ci-.*$/
 
 coverage:
   stage: analyse
@@ -307,8 +317,9 @@ coverage:
     - branches
   except:
     - master
+    - /^ci-.*$/
 
-coverity:
+.coverity:
   stage: analyse
   tags: ["large"]
   dependencies: []
@@ -317,8 +328,10 @@ coverity:
     expire_in: 1 week
     paths:
       - chameleon.tgz
+  variables:
+    VERSION: coverity
   script:
-    - (cd build &&
+    - (cd build-$VERSION &&
        cmake -C ../cmake_modules/gitlab-ci-initial-cache.cmake .. -DCHAMELEON_USE_CUDA=ON -DCHAMELEON_USE_MPI=ON &&
        cov-build --dir ../cov-int make -j 4)
     - tar czvf chameleon.tgz cov-int
@@ -349,11 +362,14 @@ sonarqube:
       - chameleon_cppcheck.xml
       - chameleon_rats.xml
       - sonar.log
+  variables:
+    VERSION: sonarqube
   script:
     - cat *.log > chameleon_build.log
     - ./tools/analysis.sh
   only:
     - master@solverstack/chameleon
+    - /^ci-.*$/
 
 pages:
   stage: deploy
@@ -363,8 +379,10 @@ pages:
     expire_in: 1 week
     paths:
       - public
+  variables:
+    VERSION: pages
   script:
-    - cd build
+    - cd build-$VERSION
     - cmake .. -DCHAMELEON_ENABLE_DOC=ON
     - make doc -j5
     - mv doc/orgmode/ ../public/
@@ -372,3 +390,19 @@ pages:
     - mv doc/doxygen/out/html/ ../public/doxygen/
   only:
     - master@solverstack/chameleon
+    - /^ci-.*$/
+
+release:
+  stage: deploy
+  dependencies: []
+  artifacts:
+    name: chameleon_release
+    expire_in: 1 week
+    paths:
+      - build-$VERSION/*.tar.gz
+  variables:
+    VERSION: release
+  only:
+    - /^release-.*$/
+  script:
+    - ./tools/release.sh
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 13dcda02f286402e85ec14ed587297c0069dc090..4d3309fee032134a2a1dfb8f74847200261c3adc 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
 #  @author Florent Pruvost
-#  @date 2012-07-13
+#  @date 2014-11-16
 #
 ###
 cmake_minimum_required(VERSION 3.3)
@@ -36,9 +36,9 @@ if("${PROJECT_SOURCE_DIR}" STREQUAL "${PROJECT_BINARY_DIR}")
 endif()
 
 # set project version number
-set(CHAMELEON_VERSION_MAJOR 1)
-set(CHAMELEON_VERSION_MINOR 0)
-set(CHAMELEON_VERSION_MICRO 0)
+set(CHAMELEON_VERSION_MAJOR 0)
+set(CHAMELEON_VERSION_MINOR 9)
+set(CHAMELEON_VERSION_MICRO 2)
 
 set(CHAMELEON_CMAKE_DIR "" CACHE PATH "Directory of CHAMELEON CMake modules, can be external to the project")
 
@@ -916,6 +916,7 @@ if( CHAMELEON_SCHED_OPENMP )
 endif( CHAMELEON_SCHED_OPENMP )
 
 # getopt
+unset(CMAKE_REQUIRED_LIBRARIES)
 check_include_files(getopt.h CHAMELEON_HAVE_GETOPT_H)
 if (CHAMELEON_HAVE_GETOPT_H)
   check_function_exists(getopt_long CHAMELEON_HAVE_GETOPT_LONG)
@@ -1019,7 +1020,7 @@ include(CTest)
 if(${CMAKE_Fortran_COMPILER_ID} STREQUAL "Intel")
     message(STATUS "Add -nofor_main to the Fortran linker (Intel compiler)")
     set(CMAKE_Fortran_FLAGS  "${CMAKE_Fortran_FLAGS} -nofor_main")
-endif(_match_ifort)
+endif()
 
 # Testing executables
 if(CHAMELEON_ENABLE_EXAMPLE AND NOT CHAMELEON_SIMULATION)
@@ -1091,7 +1092,7 @@ set(CPACK_PACKAGE_VENDOR "Inria")
 set(CPACK_PACKAGE_CONTACT "morse-devel@lists.gforge.inria.fr")
 set(CPACK_RESOURCE_FILE_README ${CMAKE_CURRENT_SOURCE_DIR}/README.org)
 set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_SOURCE_DIR}/LICENCE.txt)
-set(CPACK_SOURCE_IGNORE_FILES "plasma-conversion;build;.cproject;.settings;.dir-locals.el;.project;.pydevproject;.svn;.git;.gitmodules;.gitlab-ci.yml")
+set(CPACK_SOURCE_IGNORE_FILES "/plasma-conversion/;/build*;.cproject;.settings;.dir-locals.el;.project;.pydevproject;/.git*")
 include(CPack)
 
 ###############################################################################
diff --git a/CTestConfig.cmake b/CTestConfig.cmake
index d6cfd23c6fec57ebb4aa5578539520b5b1227826..f317cd0db5e362c0632d3380c2310b5d73787c88 100644
--- a/CTestConfig.cmake
+++ b/CTestConfig.cmake
@@ -7,9 +7,9 @@
 set(CTEST_PROJECT_NAME "Chameleon")
 set(CTEST_NIGHTLY_START_TIME "00:00:00 GMT")
 
-set(CTEST_DROP_METHOD "http")
-set(CTEST_DROP_SITE "cdash.inria.fr")
-set(CTEST_DROP_LOCATION "/CDash/submit.php?project=chameleon")
+set(CTEST_DROP_METHOD "https")
+set(CTEST_DROP_SITE "my.cdash.org")
+set(CTEST_DROP_LOCATION "/submit.php?project=Chameleon")
 set(CTEST_DROP_SITE_CDASH TRUE)
 
 #--------------------------------------------------------------------
diff --git a/ChangeLog b/ChangeLog
index de6947271780377090c145ace84cbde9a6f82401..9e0b5b75e297a991b2840cae230017e91bfd50e4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,6 @@
-chameleon-1.0.0
+chameleon-0.9.2
 ------------------------------------------------------------------------
-
+- chameleon is now hosted on gitlab: https://gitlab.inria.fr/solverstack/chameleon
 - MAGMA kernels are no longer supported in Chameleon
 - Add SVD/EVD drivers based on parallel first stage, and sequential LAPACK second stage and solve
 - Add First stage algorithm fo r the SVD/EVD solvers
diff --git a/LICENCE.txt b/LICENCE.txt
index 3b00840c5ebca4c4b541b89023bf815c5a3bf248..074ad18ca9dd5e73b9e034acb2a0a246735472d3 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
 #                      Univ. Bordeaux. All rights reserved.
 # @copyright 2016-2018 KAUST. All rights reserved.
 #
diff --git a/README.org b/README.org
index 7463d62c11591794b59d249dc0c689a965c9b5b3..4511c23791d6842368ca4d907d2a2dcabbcabc49 100644
--- a/README.org
+++ b/README.org
@@ -6,8 +6,8 @@
 # gitlab-ci pipeline badge
 #+HTML:<a href="https://gitlab.inria.fr/solverstack/chameleon/commits/master"><img alt="pipeline status"src="https://gitlab.inria.fr/solverstack/chameleon/badges/master/pipeline.svg"/></a>
 
-# Coverity badge
-#+HTML:<a href="https://scan.coverity.com/projects/chameleon"><img alt="Coverity Scan Build Status"src="https://scan.coverity.com/projects/10590/badge.svg"/></a>
+# # Coverity badge
+# #+HTML:<a href="https://scan.coverity.com/projects/chameleon"><img alt="Coverity Scan Build Status"src="https://scan.coverity.com/projects/10590/badge.svg"/></a>
 
 Chameleon is a C library providing parallel algorithms to perform
 BLAS/LAPACK operations exploiting fully modern architectures.
diff --git a/READMEDEV.org b/READMEDEV.org
index 7c7866be45d4b1bb6ba95f32b5083d2ba352e3c6..82173c5e2d77cad6223ca5d7f71c243f8240e1c5 100644
--- a/READMEDEV.org
+++ b/READMEDEV.org
@@ -60,14 +60,14 @@ developers must follow and that should be read by contributors.
   Chameleon library started as an extension of the PLASMA library so
   that code naming and writting conventions should follow [[https://bitbucket.org/icl/plasma][PLASMA]] ones.
 
-* Packaging
+* Releasing
 
    A Chameleon's release is a source package, of the form
    chameleon-major.minor.patch.tar.gz, which:
    1) has been properly tested,
-   2) contains a generated documentation corresponding to the released version,
-   3) has an up-to-date ChangeLog file,
-   4) is published on internet.
+   2) has an up-to-date ChangeLog file,
+   3) is published on internet as a GitLab release plus an associated
+      git tag.
 
 ** Test Chameleon before packaging
 
@@ -76,29 +76,29 @@ developers must follow and that should be read by contributors.
    org-mode file) to be used on PlaFRIM plus some specific ctest
    tests.
 
-** Source tarball generation
-
-   This step requires to generate the [[sec:doc][documentation]].
-
-   #+begin_src sh
-   export CHAMELEON_ROOT=/path/to/chameleon/sources/to/be/released
-   cmake $CHAMELEON_ROOT -DCHAMELEON_ENABLE_DOC=ON
-   make doc
-   cp doc/orgmode/users_guide.pdf $CHAMELEON_ROOT
-   make package_source
-   #+end_src
-
-   A tarball chameleon-major.minor.patch.tar.gz should be generated
-   and contains the users_guide documentation.
-
-** Publish the release on internet
-
-   A git tag must be first created, for example
-   #+begin_src sh
-   git tag -a v1.0.0 -m 'Version 1.0.0'
-   git push --tags
-   #+end_src
-
-   Then in the Chameleon *Tags* tab,
-   https://gitlab.inria.fr/solverstack/chameleon/tags, edit the
-   release notes and attach the tarball previously generated.
+** Release generation and publication
+
+   Releases are published on GitLab automatically through the gitlab-ci
+   job /release/.
+
+   To create a release the workflow is:
+   1) ensure chameleon is ready for this release, /i.e./
+      - all required features are well integrated
+      - all tests succeed
+      - the ChangeLog file is up-to-date
+      - the version number is up-to-date in all source files
+   2) create and push a branch /release-major.minor.patch/,
+      major.minor.patch being the version number for the release
+   3) the gitlab-ci job should produce a new release and tag according
+      to the version number
+      - releases: https://gitlab.inria.fr/solverstack/chameleon/releases
+      - tags: https://gitlab.inria.fr/solverstack/chameleon/tags
+   4) delete the branch
+
+* CDash tests dashboard
+  To see details about the tests performed during the [[https://gitlab.inria.fr/solverstack/chameleon/pipelines][pipelines]] visit
+  [[https://my.cdash.org/index.php?project=Chameleon][CDash]].
+
+* Static and dynamic analysis
+  To see details about the analysis job performed during the
+  [[https://gitlab.inria.fr/solverstack/chameleon/pipelines][pipelines]] visit [[https://sonarqube.bordeaux.inria.fr/sonarqube/dashboard?id=hiepacs%3Achameleon%3Agitlab%3Asolverstack%3Amaster][Sonarqube]].
diff --git a/cmake_modules/GenPkgConfig.cmake b/cmake_modules/GenPkgConfig.cmake
index 98f1340840bb998c03a44f6be0d92b191a034cc5..1583761b0fba0eeae8ad8863a240902e8f5a786e 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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.0.0
+# @version 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
diff --git a/cmake_modules/PrintOpts.cmake b/cmake_modules/PrintOpts.cmake
index e5bf00c1178fe4248901da54726938858f2c199d..7d34be2185396897aff3d6fc092689a36d6064f5 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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.0.0
+# @version 0.9.2
 #  @author Florent Pruvost
 #  @date 2014-11-10
 #
diff --git a/cmake_modules/morse_cmake b/cmake_modules/morse_cmake
index 376ef84365284898e734d4d8e17359981cae8b7f..33a182878f9049c47af1fce3e86e72b9a10e7f7a 160000
--- a/cmake_modules/morse_cmake
+++ b/cmake_modules/morse_cmake
@@ -1 +1 @@
-Subproject commit 376ef84365284898e734d4d8e17359981cae8b7f
+Subproject commit 33a182878f9049c47af1fce3e86e72b9a10e7f7a
diff --git a/compute/CMakeLists.txt b/compute/CMakeLists.txt
index 11e057fe1d72b2739abb3e2a7e5862bb4bc2c22a..96493134cf99cb919e819f4c7543e4dff94b2370 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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.0.0
+# @version 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
-#  @date 2012-07-13
+#  @date 2014-11-16
 #
 ###
 
diff --git a/compute/map.c b/compute/map.c
index 1a2d44bbf5770ce32c7b92caf1b449ea465be236..83922dd4a53ff593d268451060ae9c389092cbbe 100644
--- a/compute/map.c
+++ b/compute/map.c
@@ -2,14 +2,14 @@
  *
  * @file map.c
  *
- * @copyright 2018-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2018-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon map wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @date 2018-09-24
  *
diff --git a/compute/pmap.c b/compute/pmap.c
index 7e0e5b51487f8cd8e944c6b50206188292e788e0..08187925b384c8cc9e076b5879ca3e79dc3d6e2e 100644
--- a/compute/pmap.c
+++ b/compute/pmap.c
@@ -2,14 +2,14 @@
  *
  * @file pmap.c
  *
- * @copyright 2018-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2018-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon map parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @date 2018-09-24
  *
diff --git a/compute/pzbuild.c b/compute/pzbuild.c
index b3ae556fa30b11c350b9792ef90a1a64254c00f5..c8f4f536fe22fabef4722dbbbd00a85bf9a0a772 100644
--- a/compute/pzbuild.c
+++ b/compute/pzbuild.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zbuild parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Guillaume Sylvand
- * @date 2016-09-05
+ * @date 2016-09-08
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzgebrd_ge2gb.c b/compute/pzgebrd_ge2gb.c
index 04c6adf7e5518d48b1fbc93ed9378af2c8bfbb39..30b2a55ffba239741ef384b5fc27f39051e98738 100644
--- a/compute/pzgebrd_ge2gb.c
+++ b/compute/pzgebrd_ge2gb.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgebrd_ge2gb parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
  * @author Azzam Haidar
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzgelqf.c b/compute/pzgelqf.c
index 313b83eebd7e3815e2a35dcea4f7d9c8ab2f4727..64a962bba64bab38841b77d7fae1e65ada3f172c 100644
--- a/compute/pzgelqf.c
+++ b/compute/pzgelqf.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgelqf parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2018-11-08
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzgelqf_param.c b/compute/pzgelqf_param.c
index 7cc655e6deef5bd566445956ecf19886095816f4..a5284b7c9e677de7c67a3a2c66a33bd5095ba378 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgelqf_param parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Raphael Boucherie
- * @date 2018-11-09
+ * @date 2017-05-12
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzgelqfrh.c b/compute/pzgelqfrh.c
index 7cec545bbf0318e47fe5920993876608e8c50cb7..e4c50ca6aa8d2fe91da0d87e5ac668823111a246 100644
--- a/compute/pzgelqfrh.c
+++ b/compute/pzgelqfrh.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgelqfrh parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Hatem Ltaief
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2018-11-09
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzgemm.c b/compute/pzgemm.c
index eaf3243976a7e312711d4faeeb1dac87c1ef57c7..e0d51ac963a5078363f6b7386dc06c5e2e221bec 100644
--- a/compute/pzgemm.c
+++ b/compute/pzgemm.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgemm parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzgeqrf.c b/compute/pzgeqrf.c
index 4ee0c4dabb4d13afdb94ea51bdce23f6b64d9fe8..6d6d3c60b9a502af41e821e84b47727895a95d6c 100644
--- a/compute/pzgeqrf.c
+++ b/compute/pzgeqrf.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeqrf parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2018-11-08
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzgeqrf_param.c b/compute/pzgeqrf_param.c
index 72dcc8e5775b315a2e22f383f57e153fd1ee186e..bb7955797c179d0593459d419a0f42ce559115fb 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeqrf_param parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Raphael Boucherie
- * @date 2018-11-09
+ * @date 2017-05-03
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzgeqrfrh.c b/compute/pzgeqrfrh.c
index 74d153ae80f99c8f19bc0913470c69759a9d45f6..7f235365d99b23954af4b126aa55f15c8177973c 100644
--- a/compute/pzgeqrfrh.c
+++ b/compute/pzgeqrfrh.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeqrfrh parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Hatem Ltaief
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2018-11-09
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzgetrf_incpiv.c b/compute/pzgetrf_incpiv.c
index 99fd7b50878986752ea1a435bbb67f73aea51bf5..e4a494c685ff65c45aec93b54353667f243ed8bc 100644
--- a/compute/pzgetrf_incpiv.c
+++ b/compute/pzgetrf_incpiv.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrf_incpiv parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzgetrf_nopiv.c b/compute/pzgetrf_nopiv.c
index 6377ce6be3c2ee0bd72db2180443d73d3a9a15d2..d67dec3b604860bd39703515806dd26073501a72 100644
--- a/compute/pzgetrf_nopiv.c
+++ b/compute/pzgetrf_nopiv.c
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrf_nopiv parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Omar Zenati
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2013-02-01
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzhemm.c b/compute/pzhemm.c
index 59ab097613a1bb91ea1523c2d26dea4d155f058f..9fcaf6c3797659380fb06ec012db95b618bb4248 100644
--- a/compute/pzhemm.c
+++ b/compute/pzhemm.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zhemm parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/compute/pzher2k.c b/compute/pzher2k.c
index 2eaf407a654fd783ca0cb2059c0ec4e10e7a9d83..70cdd6b7b7fa3a2dc1e717c34e48ebaec75c1bb5 100644
--- a/compute/pzher2k.c
+++ b/compute/pzher2k.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zher2k parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/compute/pzherk.c b/compute/pzherk.c
index b5262e62190f766c2ed156345480a248de7b0992..29635ccdd50a8a21775ed39f62a3efa981ee11fa 100644
--- a/compute/pzherk.c
+++ b/compute/pzherk.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zherk parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/compute/pzhetrd_he2hb.c b/compute/pzhetrd_he2hb.c
index 602f7f4e6cb923454d2381961ac7c89ff3f8af11..1ef361ea7566b4e04a6f02c5e1a3ed8d23328f34 100644
--- a/compute/pzhetrd_he2hb.c
+++ b/compute/pzhetrd_he2hb.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zhetrd_he2hb parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
  * @author Azzam Haidar
- * @date 2018-11-09
+ * @date 2016-12-09
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzlacpy.c b/compute/pzlacpy.c
index 7d33b89b0aca8d1546c651fef977638bb4c79a8d..d526cbe4d145be47b5f5f2dc2c0abc3f4c8b0eb4 100644
--- a/compute/pzlacpy.c
+++ b/compute/pzlacpy.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlacpy parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzlag2c.c b/compute/pzlag2c.c
index 211f477208c0b5fbd370494b9af7fc4dd50fbcd8..7704fffdd254e5571cf0064f02b84d0b8855b459 100644
--- a/compute/pzlag2c.c
+++ b/compute/pzlag2c.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlag2c parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions mixed zc -> ds
  *
  */
diff --git a/compute/pzlange.c b/compute/pzlange.c
index bb7d6b17636ad02787dd7094f45d8b5bda32054a..b5f58e47d25fc1c231faefa374e85b9b8e250b79 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlange parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Emmanuel Agullo
  * @author Mathieu Faverge
  * @author Florent Pruvost
- * @date 2014-07-21
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzlansy.c b/compute/pzlansy.c
index 6a9f56fb1ec6ef894b8f08fdad3854bd3edb69ad..71189ef578ffa2fd5f5b3d3feac28508d7bb86c5 100644
--- a/compute/pzlansy.c
+++ b/compute/pzlansy.c
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlansy parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Emmanuel Agullo
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/compute/pzlascal.c b/compute/pzlascal.c
index 29e167216f02cc1627c69284342f4d58f744a4fa..93119debc461d8bf2f69062e176f5df409ee2004 100644
--- a/compute/pzlascal.c
+++ b/compute/pzlascal.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlascal parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Dalal Sukkari
- * @date 2010-11-15
+ * @date 2016-11-30
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzlaset.c b/compute/pzlaset.c
index 49c57561834266f32d3129902b425db867f201ba..4bac0246c985f492a613f79c97cff75c4e2bb48e 100644
--- a/compute/pzlaset.c
+++ b/compute/pzlaset.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlaset parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzlaset2.c b/compute/pzlaset2.c
index 5f5e129c32c959c2d8f3da4614abcdf98a9019cf..b982ed47e9df7d2638a64ca169567d851e6d8b29 100644
--- a/compute/pzlaset2.c
+++ b/compute/pzlaset2.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlaset2 parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzlauum.c b/compute/pzlauum.c
index 34ac615b09d002e5ae99af0899340e44acb3c94b..660ab4e80e8e86fd79bb3115cae265940909ff53 100644
--- a/compute/pzlauum.c
+++ b/compute/pzlauum.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlauum parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzplghe.c b/compute/pzplghe.c
index 08c6eef535e3f2417d636be3aa58e592b511708c..f2896cf94fcb49b83acbf5bf9d87c4a1798884c6 100644
--- a/compute/pzplghe.c
+++ b/compute/pzplghe.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplghe parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file is a copy from pzplghe.c
  *          wich has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Rade Mathis
  * @author Florent Pruvost
- * @date 2016-08-01
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/compute/pzplgsy.c b/compute/pzplgsy.c
index 8b96e86c3b18c768e5ae46f94dca6fab3d45aa01..e9877e76610d88494098fc3cbfeadd263af1df59 100644
--- a/compute/pzplgsy.c
+++ b/compute/pzplgsy.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplgsy parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file is a copy of pzplgsy.c,
             wich has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Rade Mathis
  * @author Florent Pruvost
- * @date 2016-08-01
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/compute/pzplrnt.c b/compute/pzplrnt.c
index d7ef9fa5d88584fe4d28a2fa0cd6061ab97ba6fb..d7b18ae25d80ed549a343d98edb102c259722bf0 100644
--- a/compute/pzplrnt.c
+++ b/compute/pzplrnt.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplrnt parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzpotrf.c b/compute/pzpotrf.c
index 8f5a9b50b5668113aee65f02341a381c45d5b2c1..68b0e926887d73c3ef7847c50d4cf667ae6c8d31 100644
--- a/compute/pzpotrf.c
+++ b/compute/pzpotrf.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zpotrf parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Florent Pruvost
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzpotrimm.c b/compute/pzpotrimm.c
index c8dee6ece7680cd6216734d35949e94b436804ce..8982ad9ced319b0ce12105a7c0510d315dd2ee12 100644
--- a/compute/pzpotrimm.c
+++ b/compute/pzpotrimm.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zpotrimm parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Ali M Charara
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzsymm.c b/compute/pzsymm.c
index bd67ce978793e5e9936f387b496234ffe2518cc5..f7df025e27e6814f9fe11d2fd96b158d1714ff02 100644
--- a/compute/pzsymm.c
+++ b/compute/pzsymm.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsymm parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzsyr2k.c b/compute/pzsyr2k.c
index 642379497843b84efde974f438847c7e9ec12fe1..17ae3ee8bbaad7f560b9f80d2d0bb0b53789a7a5 100644
--- a/compute/pzsyr2k.c
+++ b/compute/pzsyr2k.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyr2k parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/compute/pzsyrk.c b/compute/pzsyrk.c
index f3c87edb0a5150dfd7927fdbc5924481d3635817..8f6b3013ac6f6bd8632e225c502d5296ab1b7567 100644
--- a/compute/pzsyrk.c
+++ b/compute/pzsyrk.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyrk parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzsytrf.c b/compute/pzsytrf.c
index bd00164198b3c8e5a18a17c2fbc42a7dda510961..381f7e4a1f7533919f5877a3362a8427893db552 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsytrf parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Jakub Kurzak
  * @author Hatem Ltaief
  * @author Mathieu Faverge
@@ -19,7 +19,7 @@
  * @author Cedric Castagnede
  * @author Florent Pruvost
  * @author Marc Sergent
- * @date 2014-10-09
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/compute/pztile2band.c b/compute/pztile2band.c
index 0a73e48d8a9b941f10aba3860f32a52f01b66cff..45766f7a028926ae61909d1168fd5e10124d8acb 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztile2band parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Azzam Haidar
  * @author Gregoire Pichon
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pztpgqrt.c b/compute/pztpgqrt.c
index 52d99f42850f531dc8177d30f73c12169040272b..c49cb0452008910b14135bf2f9b34ccb9a9e1b0a 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 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 computational routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2018-11-09
+ * @date 2016-12-21
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pztpqrt.c b/compute/pztpqrt.c
index 0783d14da4e55f294f3b784349039485952da66d..88800dd26eb6efd3606327516afa24d968a2c75d 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 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 computational routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2018-11-09
+ * @date 2016-12-15
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pztradd.c b/compute/pztradd.c
index 991da89398e87515b58bde7309cbcc9628b9aaea..3a29fa4f1e8a9e5ad311febf4d039c43edd98e92 100644
--- a/compute/pztradd.c
+++ b/compute/pztradd.c
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztradd parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Emmanuel Agullo
  * @author Mathieu Faverge
- * @date 2011-11-03
+ * @date 2015-11-03
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pztrmm.c b/compute/pztrmm.c
index 3a99f8eb1da17ce736f6f84933cb4b1e27b2e5f4..3f6376274307a8f140a88f1482b82d0aaa3bb015 100644
--- a/compute/pztrmm.c
+++ b/compute/pztrmm.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrmm parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pztrsm.c b/compute/pztrsm.c
index 6655aaf51ff91a29b4e5a6b9e2e6785a076eb510..38b3cedcab0f041bc1081264bf93b1f47aaad41e 100644
--- a/compute/pztrsm.c
+++ b/compute/pztrsm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrsm parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pztrsmpl.c b/compute/pztrsmpl.c
index 6dc01c95c9e76d8729dfcd6c2345fb3ffa58c761..aa861daf180cc5e08a29a94af96e8ea31e2bc50c 100644
--- a/compute/pztrsmpl.c
+++ b/compute/pztrsmpl.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrsmpl parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pztrtri.c b/compute/pztrtri.c
index 399fa5864852dd7a6c09dfd75f7d9fabd25492a5..925ec975bf6ce7506a913b93869feac78004f5fd 100644
--- a/compute/pztrtri.c
+++ b/compute/pztrtri.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrtri parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzunglq.c b/compute/pzunglq.c
index 492843fc3710220d31abda8728dfbaf0903555b7..4ab201e7f6ba71444aebfcf104d38f2b5ea5ba60 100644
--- a/compute/pzunglq.c
+++ b/compute/pzunglq.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunglq parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2018-11-09
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzunglq_param.c b/compute/pzunglq_param.c
index b70080358fb49e66f3176097d98ecb9422ec44f2..fbc1646249befd3066fbad0a8892818e775e6ad0 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunglq_param parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Raphael Boucherie
- * @date 2018-11-09
+ * @date 2017-05-19
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzunglqrh.c b/compute/pzunglqrh.c
index d31203a9eec0ad3c51fe633a2469eb065fad568e..f38171b7f5447f2b4d64d94ab5b6af1d27ba22f0 100644
--- a/compute/pzunglqrh.c
+++ b/compute/pzunglqrh.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunglqrh parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2018-11-09
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzungqr.c b/compute/pzungqr.c
index a190027288631727f1a08a2e4b1bcbe2fb69af19..4964cbb0ba4506a0cfba6ad38822176d04a3292d 100644
--- a/compute/pzungqr.c
+++ b/compute/pzungqr.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zungqr parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2018-11-09
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzungqr_param.c b/compute/pzungqr_param.c
index 8bcb901c13a962a4e199a8e0c2d64966e81ca3ea..e70c16deb6f134e21aba9a8c0b816985e9685c77 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zungqr_param parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Raphael Boucherie
- * @date 2018-11-09
+ * @date 2017-05-05
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzungqrrh.c b/compute/pzungqrrh.c
index 23d5e29db53f570516eee7231e4b326fde04e140..efec2caddd36679d247e7b0ae6c7983a89f7e598 100644
--- a/compute/pzungqrrh.c
+++ b/compute/pzungqrrh.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zungqrrh parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2018-11-09
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzunmlq.c b/compute/pzunmlq.c
index a5d23bf2b1db09789830af95372ffd67d46d76da..1df5d42b11dd84bf5931a508366753e00c249e2c 100644
--- a/compute/pzunmlq.c
+++ b/compute/pzunmlq.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmlq parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Azzam Haidar
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2018-11-09
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzunmlq_param.c b/compute/pzunmlq_param.c
index 02b740b3b397ec8ce8f8ffc4c372a4984c51dd0c..087cc0f5c8541d7a7160981c8e9d4c815e1528b0 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmlq_param parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Raphael Boucherie
- * @date 2018-11-09
+ * @date 2017-05-17
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzunmlqrh.c b/compute/pzunmlqrh.c
index 26130cb69a7071245bc341f2310b01067e35f5de..243469fcf3be3c8ad6ece4d5851f5ad57485da01 100644
--- a/compute/pzunmlqrh.c
+++ b/compute/pzunmlqrh.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmlqrh parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2018-11-09
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzunmqr.c b/compute/pzunmqr.c
index 4c15ba7fd0ac6ec475583f73c190c34caae6f1bb..0da2a1fd3d5afefd25aaf9ae6478ad933687fdf3 100644
--- a/compute/pzunmqr.c
+++ b/compute/pzunmqr.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmqr parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Azzam Haidar
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2018-11-09
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzunmqr_param.c b/compute/pzunmqr_param.c
index a11c5f247a6ac17d0602a0f985e707d78bc43c71..a771077fa37670bf7ef1fc809da54729919f57be 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmqr_param parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Raphael Boucherie
- * @date 2018-11-09
+ * @date 2017-05-05
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/pzunmqrrh.c b/compute/pzunmqrrh.c
index e8429f8cfeb7ae92709228dd8fab734364149944..02a0f2b8ef7efee5e03e9aadf0387e9c64f34782 100644
--- a/compute/pzunmqrrh.c
+++ b/compute/pzunmqrrh.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmqrrh parallel algorithm
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2018-11-09
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zbuild.c b/compute/zbuild.c
index 6ec2419ca0e1fb3ed94cb1e5b0ab5b25200e5c1a..d50b97104eb5d1d5f648b24d593a710b7dc5d8f9 100644
--- a/compute/zbuild.c
+++ b/compute/zbuild.c
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  * @brief Chameleon zbuild wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Guillaume Sylvand
- * @date 2016-09-05
+ * @date 2016-09-08
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgeadd.c b/compute/zgeadd.c
index e2674316ab921ebe05ecc4911d9af42b1b5f573a..c98f82c73b2d4e6a95886677af0f9e8214dc13ec 100644
--- a/compute/zgeadd.c
+++ b/compute/zgeadd.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeadd wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2011-11-03
+ * @date 2015-11-03
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgelqf.c b/compute/zgelqf.c
index 9752503348ad2496623502c68ccf73b1983ba9be..0b2ee5b69e80ef6d1ea054ef976637cf4b224a42 100644
--- a/compute/zgelqf.c
+++ b/compute/zgelqf.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgelqf wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgelqf_param.c b/compute/zgelqf_param.c
index c507463efd24bc87eca387424338611b14abe8a0..6d8c125a518b5593d9e415909afe8675633e41cc 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgelqf_param wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Raphael Boucherie
- * @date 2017-05-17
+ * @date 2017-05-12
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgelqs.c b/compute/zgelqs.c
index cc9b89fef023c319bcffa3d960776f0b804f7e4f..703650460f4881ee64633fe939179c3359ce628a 100644
--- a/compute/zgelqs.c
+++ b/compute/zgelqs.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgelqs wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgelqs_param.c b/compute/zgelqs_param.c
index 720ab5d4d8ffb1708a5cb35a05be2032ff1b6eba..eedb2dacd145743702424b164760495ba2803ce5 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgelqs_param wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Raphael Boucherie
  * @author Mathieu Faverge
- * @date 2017-05-17
+ * @date 2017-05-19
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgels.c b/compute/zgels.c
index 276c4e3a6dd67569b5347bd3178f7a5b8a87d439..444021e55f728511c83b9e8564faa97d3786ed9d 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgels wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgels_param.c b/compute/zgels_param.c
index 34ab5c6098db2a5c176d70b6ff8b0607a9117b25..fd5a99ddbddcf5bae6e46f6a1dcbb48c0a55ee09 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgels_param wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Raphael Boucherie
  * @author Mathieu Faverge
- * @date 2017-05-17
+ * @date 2017-05-12
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgemm.c b/compute/zgemm.c
index e266039adbb24d049cae77f1d426c3015283ae6b..6de4045679e8b636e61cc2d0d229eff334f95ad3 100644
--- a/compute/zgemm.c
+++ b/compute/zgemm.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgemm wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgeqrf.c b/compute/zgeqrf.c
index 9ccd619c9fd7e6672f9f412a1c6974f81d4a436c..98675a46764601d76a38b731866ec83d32380c4e 100644
--- a/compute/zgeqrf.c
+++ b/compute/zgeqrf.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeqrf wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgeqrf_param.c b/compute/zgeqrf_param.c
index d83e3f447bde001a9c2286087179cfc0555a8f8e..c406b9207f2072b983e6a7b3948f4392297f77cb 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeqrf_param wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Raphael Boucherie
- * @date 2017-05-17
+ * @date 2017-05-03
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgeqrs.c b/compute/zgeqrs.c
index 7af82e43f8b38bc7ea5ae41db9b15aaf99b1e31f..a6b41d0b1e257355c73121871d61b16a6023493f 100644
--- a/compute/zgeqrs.c
+++ b/compute/zgeqrs.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeqrs wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgeqrs_param.c b/compute/zgeqrs_param.c
index 7fe000a501eb4af3283bf31ea6d8827fccabda9b..84aa1af688d62c989aa28ce83b84326f10a0c46c 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeqrs_param wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Raphael Boucherie
- * @date 2017-05-17
+ * @date 2017-05-12
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgesv_incpiv.c b/compute/zgesv_incpiv.c
index 275b6dc6a0c7a20ebda02dcb1e1efd37d79e0e5c..89cc15107a81ba8487352119261fe559f1bf2dd1 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
@@ -12,14 +12,14 @@
  * @brief Chameleon zgesv_incpiv wrappers
  *  Release Date: November, 15th 2009
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgesv_nopiv.c b/compute/zgesv_nopiv.c
index f7dfbb88070893e20d28f90e6c43ac0d71b79131..eceafa04967ed6f931e216a39d208e01a5ce978d 100644
--- a/compute/zgesv_nopiv.c
+++ b/compute/zgesv_nopiv.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgesv_nopiv wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgesvd.c b/compute/zgesvd.c
index 5b3cf9bd6f58c122ec99132e04d46a9f42d0d808..c52fa59b3787343fc941b0fccd244c6ff85e770d 100644
--- a/compute/zgesvd.c
+++ b/compute/zgesvd.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgesvd wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Gregoire Pichon
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgetrf_incpiv.c b/compute/zgetrf_incpiv.c
index 273b247f3fc0131d4193b72a483059dbd283d2ec..f1f2e795a3bca4e6d8fe4d2626f179f97cb94828 100644
--- a/compute/zgetrf_incpiv.c
+++ b/compute/zgetrf_incpiv.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrf_incpiv wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgetrf_nopiv.c b/compute/zgetrf_nopiv.c
index 0e1004c432ccb7dd8b1692bdad1098438b2e4703..bbb688dec95a5cd22bc1c0c687f352b9b084a5e9 100644
--- a/compute/zgetrf_nopiv.c
+++ b/compute/zgetrf_nopiv.c
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrf_nopiv wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Omar Zenati
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2013-02-01
+ * @date 2014-11-16
  *
  * @precisions normal z -> s d c
  *
diff --git a/compute/zgetrs_incpiv.c b/compute/zgetrs_incpiv.c
index 8d9aa36302f170407efaa5fccc21902c27448520..d3e6324f7c539a62e4224bd6abf71038f175d5a7 100644
--- a/compute/zgetrs_incpiv.c
+++ b/compute/zgetrs_incpiv.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrs_incpiv wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zgetrs_nopiv.c b/compute/zgetrs_nopiv.c
index 33b3cf70b835d2fa212016ef6c662282c3659d1f..bb0de9875eba50273e6b71c45a8590c5fc8bb363 100644
--- a/compute/zgetrs_nopiv.c
+++ b/compute/zgetrs_nopiv.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrs_nopiv wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Florent Pruvost
- * @date 2014-11-08
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zheevd.c b/compute/zheevd.c
index 1291e43a80216b90109c21eeb83e346e5c3acdcf..f794669c146c5cdbcd8768d5cb5b4bf9c7457be7 100644
--- a/compute/zheevd.c
+++ b/compute/zheevd.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zheevd wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Azzam Haidar
  * @author Hatem Ltaief
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zhemm.c b/compute/zhemm.c
index 43f123975694bd2edc2be179c9e958d23b816f2b..0d0c96563e9d9d10a3a52c413f05c809e0f00ed1 100644
--- a/compute/zhemm.c
+++ b/compute/zhemm.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zhemm wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/compute/zher2k.c b/compute/zher2k.c
index fc8a746a376d15afaf21cdc045316bcc4f355a05..be55713b9f92ab9fdf4da08c87f77396cb82d22d 100644
--- a/compute/zher2k.c
+++ b/compute/zher2k.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zher2k wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/compute/zherk.c b/compute/zherk.c
index ff3b21ddc6932f6e277d5d5b738d7c0480278a69..9b894f7ff17630c44ff8713fb19eb57da5fcec16 100644
--- a/compute/zherk.c
+++ b/compute/zherk.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zherk wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/compute/zhetrd.c b/compute/zhetrd.c
index f0686a16cdbf90f06c084cd75225b3fdf921c3c5..0c7e3c66bf69f1719edf7892b8e13b77a49ba7cc 100644
--- a/compute/zhetrd.c
+++ b/compute/zhetrd.c
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zhetrd wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Azzam Haidar
  * @author Hatem Ltaief
  * @author Gregoire Pichon
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zlacpy.c b/compute/zlacpy.c
index 73ad779e636e58cb542c07635388783e609d29c1..d21b3fd09ef1a9c4612195c52ed8159419b4efef 100644
--- a/compute/zlacpy.c
+++ b/compute/zlacpy.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlacpy wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zlange.c b/compute/zlange.c
index b1e9269d2a95b1543fb5a4e13876dcaeb6e5e7ef..6155abf4e4c338091cf78054f5a41a3dd3280f76 100644
--- a/compute/zlange.c
+++ b/compute/zlange.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlange wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zlanhe.c b/compute/zlanhe.c
index 50f3d1f921accf201cea42a8ee2844fd7e0a6ed5..3eff195d3c8e9528ac5ae7c2a31c3f0687d45c85 100644
--- a/compute/zlanhe.c
+++ b/compute/zlanhe.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlanhe wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/compute/zlansy.c b/compute/zlansy.c
index c7e39a45357ba69b1119368df1955988887c29bc..bd1916bf8a898aef2e69e0ac499e76dc74ccddee 100644
--- a/compute/zlansy.c
+++ b/compute/zlansy.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlansy wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zlantr.c b/compute/zlantr.c
index 005fea133c568a2ab996587efccd6a60f281ec38..73ef52c50edf43aaf357bff5635369d50c697e84 100644
--- a/compute/zlantr.c
+++ b/compute/zlantr.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlantr wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zlascal.c b/compute/zlascal.c
index 0d0ff18b6c932510fc00752cc10438fdd852d443..be031b90a78a97303d6ec98b06f16bd55737b277 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 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 zlascal wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Dalal Sukkari
- * @date 2010-11-15
+ * @date 2016-11-30
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zlaset.c b/compute/zlaset.c
index 0ab77a34e5d420f76400e57667f3ac7eb7926416..b7782a7a4b5f47e70c77b1e51049e291f527790b 100644
--- a/compute/zlaset.c
+++ b/compute/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlaset wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zlauum.c b/compute/zlauum.c
index 254eb2b18c531218a96dff303b4e98ecfe5c5c5d..67951ec88af2fe06718ee624a8c524ebffcab46d 100644
--- a/compute/zlauum.c
+++ b/compute/zlauum.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlauum wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zplghe.c b/compute/zplghe.c
index ceb0a138bd2ea9895e133a76657a65d2a3ff5750..3ed478a6145e2ad4531e54c30cfe0df8b07960c8 100644
--- a/compute/zplghe.c
+++ b/compute/zplghe.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplghe wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file is a copy of zplghe.c
  *          wich has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Rade Mathis
  * @author Florent Pruvost
- * @date 2016-08-01
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/compute/zplgsy.c b/compute/zplgsy.c
index ff033d819c0d41ba443b941afdeef091fb8152be..ddce51f686995f731e40b3c89fde311231d92bc0 100644
--- a/compute/zplgsy.c
+++ b/compute/zplgsy.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplgsy wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file is a copy of zplgsy.c,
  *          wich has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Rade Mathis
  * @author Florent Pruvost
- * @date 2016-08-01
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/compute/zplrnt.c b/compute/zplrnt.c
index 56a3cedaff0d5af567215579cfb88f2a1d4485c3..0e1a0e20f8068fbac3acf1c454a6a76298b62568 100644
--- a/compute/zplrnt.c
+++ b/compute/zplrnt.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplrnt wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zposv.c b/compute/zposv.c
index 668fec3c5d9c5dfd0a2ba1211204364b6d9dda77..27ab796eb9014480608ebd11e86e4ca63fc22b0b 100644
--- a/compute/zposv.c
+++ b/compute/zposv.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zposv wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zpotrf.c b/compute/zpotrf.c
index d7054e42d3b2d31854a6b09351dda7ff268df65b..c898ca1453f7e6c88b0c6eb0d0598e4ceeb6c645 100644
--- a/compute/zpotrf.c
+++ b/compute/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zpotrf wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zpotri.c b/compute/zpotri.c
index 2de905c8d664c2814c121a58f3385c9182e24399..eb1e95d616dd34368bef9326724ea9c361ce2860 100644
--- a/compute/zpotri.c
+++ b/compute/zpotri.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zpotri wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zpotrimm.c b/compute/zpotrimm.c
index ca57f496200bb6ac750c79d2ec45c87283b18cc0..f903d52e9a79a3dfac7629d0c6082a28fefb4aad 100644
--- a/compute/zpotrimm.c
+++ b/compute/zpotrimm.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zpotrimm wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zpotrs.c b/compute/zpotrs.c
index 7cce83910f3f4373b2399bcc0b0aa3c27c261ce1..72bd62a7fa7b8013b0275da0e5a8e8b851b4da26 100644
--- a/compute/zpotrs.c
+++ b/compute/zpotrs.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zpotrs wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zsymm.c b/compute/zsymm.c
index 13221e335beb7e5f6a33024501cb139a0fa02d05..6adfb945aeaeede508dc110928ef7cbc7ec0e26e 100644
--- a/compute/zsymm.c
+++ b/compute/zsymm.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsymm wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zsyr2k.c b/compute/zsyr2k.c
index 0fe3e6f9e7e06c833b80c8bff071ab04066e1195..73c79dd1800100d24bdbb7277d5e6e413b9f581e 100644
--- a/compute/zsyr2k.c
+++ b/compute/zsyr2k.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyr2k wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/compute/zsyrk.c b/compute/zsyrk.c
index 91f4627b8eee038f2770768a258f06d6aa79cf0d..85963b6a91442a4d135a6b54802b2bb42149ccfd 100644
--- a/compute/zsyrk.c
+++ b/compute/zsyrk.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyrk wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zsysv.c b/compute/zsysv.c
index baf78e90ecda60750ffa178d8e1481d810972f54..256e27de9f7a61b92ee0243b50d792aa7eabb8c0 100644
--- a/compute/zsysv.c
+++ b/compute/zsysv.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsysv wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Florent Pruvost
  * @author Marc Sergent
- * @date 2014-10-09
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/compute/zsytrf.c b/compute/zsytrf.c
index 44ea078c64fa69630a5b1d894e81c589c71bfe26..e32b1f8f467e1656fba12bba9dbb0360e7688926 100644
--- a/compute/zsytrf.c
+++ b/compute/zsytrf.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsytrf wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @author Marc Sergent
- * @date 2014-10-09
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/compute/zsytrs.c b/compute/zsytrs.c
index 4eeb3d7d307756cdad813137b96e16947b892c6e..b50289edd64b7960d93b50f7dae3a14b97480b89 100644
--- a/compute/zsytrs.c
+++ b/compute/zsytrs.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsytrs wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Florent Pruvost
  * @author Marc Sergent
- * @date 2014-10-09
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/compute/ztile.c b/compute/ztile.c
index 3cafc9b7b3eec2522daf4c8f54cbd021fa85f0d0..00c63cc16fdfdfc2b02a34170eb65b6c70e685d8 100644
--- a/compute/ztile.c
+++ b/compute/ztile.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon auxiliary routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/ztpgqrt.c b/compute/ztpgqrt.c
index b9d07b870a69e6c3c1aa19b4cd89d7fbfad77399..98db159afb8e089b7b696401d48bb1e1974edbe1 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 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 ztpgqrt wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2016-12-15
+ * @date 2016-12-21
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/ztpqrt.c b/compute/ztpqrt.c
index 04e7ddfa6d575afd06920ecad135650ded12f045..742960d20599d44efdbd78e8aa339a0791e9b2d9 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  * @copyright 2016-2018 KAUST. All rights reserved.
  *
@@ -12,7 +12,7 @@
  *
  * @brief Chameleon ztpqrt wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @date 2016-12-15
  * @precisions normal z -> s d c
diff --git a/compute/ztradd.c b/compute/ztradd.c
index b5e85ec81d06231a65b0a53e681c172bdedb76c0..02cd629f32cc02e4d5899b4b5ca80923ad470a98 100644
--- a/compute/ztradd.c
+++ b/compute/ztradd.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztradd wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2011-11-03
+ * @date 2015-11-03
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/ztrmm.c b/compute/ztrmm.c
index 3380900f601a27ba11d54afa31da69a86c1b4ca3..87b19b1ae033d0ba3530d7a079466ef410dbf146 100644
--- a/compute/ztrmm.c
+++ b/compute/ztrmm.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrmm wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/ztrsm.c b/compute/ztrsm.c
index cc76ab7bd91ca283c3eebeea5528b1d3e0a4b69e..32fa777f8b6ea8ef2d0a8afbd8a78aa0df6a556b 100644
--- a/compute/ztrsm.c
+++ b/compute/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrsm wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/ztrsmpl.c b/compute/ztrsmpl.c
index 2cac2da6252e50183a4770655e6ebd419dd63910..8ed5145a90c4b2c4e6cbe4887cd3f952844bcf35 100644
--- a/compute/ztrsmpl.c
+++ b/compute/ztrsmpl.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrsmpl wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/ztrtri.c b/compute/ztrtri.c
index 6a2f8f3210b028f87b1231cd23078e22e70445ac..56a0c948507a4dbc3861041e9d555cac0743f62e 100644
--- a/compute/ztrtri.c
+++ b/compute/ztrtri.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrtri wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zunglq.c b/compute/zunglq.c
index ef284b8619fea77d6fc180752f6601f515fe027f..3d3ce3062eff4f92e911ab4850526eda11ebb5ec 100644
--- a/compute/zunglq.c
+++ b/compute/zunglq.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunglq wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zunglq_param.c b/compute/zunglq_param.c
index 09f40a29fe07d4cd5d6a1b2f5db697b3004b95d9..aec224f967b56e19904e253dd6871d8fadffbd07 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunglq_param wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Raphael Boucherie
- * @date 2017-05-17
+ * @date 2017-05-19
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zungqr.c b/compute/zungqr.c
index 6ae056b2d64175bc6b890652f73184d7b135ac98..69f8be30e599d076837fe3a4bd8f413487e59722 100644
--- a/compute/zungqr.c
+++ b/compute/zungqr.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zungqr wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zungqr_param.c b/compute/zungqr_param.c
index 9ed032da7ee145eed609138f24acd5a42c902ae6..36bacc08921fda83e45bf14b8a41194cae68f6f2 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zungqr_param wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Raphael Boucherie
- * @date 2017-05-17
+ * @date 2017-05-05
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zunmlq.c b/compute/zunmlq.c
index f3948bf3992c474a41095820a1e388a8d8826c2c..51506cdaa4bb38a7d232994b2d4e28510975e23e 100644
--- a/compute/zunmlq.c
+++ b/compute/zunmlq.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmlq wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zunmlq_param.c b/compute/zunmlq_param.c
index 46372cef9aeb0fcd0fe41d70558f503a9ce55378..7199aed916a5fc7edaed413c23aa376ac26ca7c4 100644
--- a/compute/zunmlq_param.c
+++ b/compute/zunmlq_param.c
@@ -4,14 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmlq_param wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Raphael Boucherie
  * @date 2017-05-17
diff --git a/compute/zunmqr.c b/compute/zunmqr.c
index 78be51f52c3054b5a2aa6b7703e580f8a425adbe..c7adba16638aff3ecdef0e11e0cb34a43bddc0eb 100644
--- a/compute/zunmqr.c
+++ b/compute/zunmqr.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmqr wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/compute/zunmqr_param.c b/compute/zunmqr_param.c
index 434c16a049a445988a238130ed15dc1e5dd5944b..152257e7772d555b3b36833efa89cf3f46116b8c 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmqr_param wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Raphael Boucherie
- * @date 2017-05-17
+ * @date 2017-05-05
  * @precisions normal z -> s d c
  *
  */
diff --git a/control/CMakeLists.txt b/control/CMakeLists.txt
index afd170cdc7ec4895f9ac80ab949326a551ef8928..377ddb77f0798d5af74324a99e655ffc0118d21d 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
 #  @author Florent Pruvost
-#  @date 2012-07-13
+#  @date 2014-11-16
 #
 ###
 
diff --git a/control/async.c b/control/async.c
index 55351f6b61fa207817377075de94b67c0fc1a6d8..47685fbb785c9fa9f125cd61df809dc180e3be66 100644
--- a/control/async.c
+++ b/control/async.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon asynchronous management routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2012-09-15
+ * @date 2014-11-16
  *
  ***
  *
diff --git a/control/async.h b/control/async.h
index 4b866c2e8fbef65b6efb373fdbd568f262f88dcc..f900ff4e5daf5c1bfd2ddf48413f91f89138b9ed 100644
--- a/control/async.h
+++ b/control/async.h
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon asynchronous management header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Jakub Kurzak
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  *
  */
 #ifndef _chameleon_async_h_
diff --git a/control/auxiliary.c b/control/auxiliary.c
index 86f081b0399a0f67eafb49436f4c579cd6bbfdb0..5f741fff12adf0aafe7ab9ad1b0486eabe84c863 100644
--- a/control/auxiliary.c
+++ b/control/auxiliary.c
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon auxiliary routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Jakub Kurzak
  * @author Piotr Luszczek
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2012-09-15
+ * @date 2014-11-16
  *
  ***
  *
diff --git a/control/auxiliary.h b/control/auxiliary.h
index 057a34688c2ec5546f75a506fe5872ee261bdae3..50d329e3d511b98cad25b131c17a913918c78c92 100644
--- a/control/auxiliary.h
+++ b/control/auxiliary.h
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon auxiliary header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Jakub Kurzak
  * @author Piotr Luszczek
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  *
  */
 #ifndef _chameleon_auxiliary_h_
diff --git a/control/chameleon_f77.c b/control/chameleon_f77.c
index 6ae0feedf53c5b489f4512fdeedd16a3ef283d4f..eb70cf98f018c8be612b4d57711607b0ef86e969 100644
--- a/control/chameleon_f77.c
+++ b/control/chameleon_f77.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon Fortran77 interface
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Bilel Hadri
  * @author Cedric Castagnede
  * @author Florent Pruvost
- * @date 2010-11-15
+ * @date 2018-07-12
  *
  */
 #include <stdlib.h>
diff --git a/control/chameleon_f77.h b/control/chameleon_f77.h
index c70c63270b835c58b4ae85923487ccb697a5e9f2..e4bace01e0e341863ce22c126420e319fb033eb0 100644
--- a/control/chameleon_f77.h
+++ b/control/chameleon_f77.h
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon Fortran77 naming macros
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2017-05-03
+ * @date 2018-07-12
  *
  */
 #ifndef _chameleon_f77_h_
diff --git a/control/chameleon_f90.f90 b/control/chameleon_f90.f90
index cc4c76cab1db06e5f77730f83713fd33d5ffffdf..152e00431ada6ccdac8285fe994e4f294d6fac20 100644
--- a/control/chameleon_f90.f90
+++ b/control/chameleon_f90.f90
@@ -6,12 +6,12 @@
 !  CHAMELEON is a software package provided by Univ. of Tennessee,
 !  Univ. of California Berkeley and Univ. of Colorado Denver
 !
-! @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+! @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
 !                      Univ. Bordeaux. All rights reserved.
 !
-! @version 1.0.0
+! @version 0.9.2
 ! @author Numerical Algorithm Group
-! @date 2011-09-15
+! @date 2018-07-12
 !
 ! -- Inria
 ! -- (C) Copyright 2012
diff --git a/control/chameleon_mf77.c b/control/chameleon_mf77.c
index ccff4701b500e832f5de7b570c131c3d04d94f0c..359eb1be7ce8538d492be9831216078344e1e37e 100644
--- a/control/chameleon_mf77.c
+++ b/control/chameleon_mf77.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 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 0.9.2
  * @author Bilel Hadri
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2018-07-12
  *
  */
 #include <stdlib.h>
diff --git a/control/chameleon_zcf90.F90 b/control/chameleon_zcf90.F90
index 7ae88ff1592e0ff84d155788b917191b64c4c620..7bde298455e336f1338db1614f6a3a553c8786f8 100644
--- a/control/chameleon_zcf90.F90
+++ b/control/chameleon_zcf90.F90
@@ -6,15 +6,15 @@
 !  CHAMELEON is a software package provided by Univ. of Tennessee,
 !  Univ. of California Berkeley and Univ. of Colorado Denver
 !
-! @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+! @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
 !                      Univ. Bordeaux. All rights reserved.
 !
-! @version 1.0.0
+! @version 0.9.2
 ! @author Numerical Algorithm Group
 ! @author Mathieu Faverge
 ! @author Emmanuel Agullo
 ! @author Cedric Castagnede
-! @date 2011-09-15
+! @date 2018-07-12
 ! @precisions mixed zc -> ds
 !
 ! -- Inria
diff --git a/control/chameleon_zf77.c b/control/chameleon_zf77.c
index 1b6366307054caaf0430092e2d4ed425a7f4c37e..a6ad73c881943b618e31834ce9bcf9152ae79947 100644
--- a/control/chameleon_zf77.c
+++ b/control/chameleon_zf77.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon Fortran77 computational routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @comment This file is automatically generated by tools/genf77interface.pl
  * @author Bilel Hadri
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Florent Pruvost
- * @date 2010-11-15
+ * @date 2018-07-12
  * @precisions normal z -> c d s
  *
  */
diff --git a/control/chameleon_zf90.F90 b/control/chameleon_zf90.F90
index a02c51d766f5195064c9182121f1225524f25b84..60380e94f0d30de2a26d853f3e57ca70f278c2e3 100644
--- a/control/chameleon_zf90.F90
+++ b/control/chameleon_zf90.F90
@@ -6,15 +6,15 @@
 !  CHAMELEON is a software package provided by Univ. of Tennessee,
 !  Univ. of California Berkeley and Univ. of Colorado Denver
 !
-! @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+! @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
 !                      Univ. Bordeaux. All rights reserved.
 !
-! @version 1.0.0
+! @version 0.9.2
 ! @author Numerical Algorithm Group
 ! @author Mathieu Faverge
 ! @author Emmanuel Agullo
 ! @author Cedric Castagnede
-! @date 2011-09-15
+! @date 2018-07-12
 ! @precisions normal z -> c d s
 !
 ! -- Inria
diff --git a/control/chameleon_zf90_wrappers.F90 b/control/chameleon_zf90_wrappers.F90
index bb99becc1622d50a741fe78350685d5ae0bebe74..56928b3b9a5ff8cbeeaaa6462d6a46ca95620aa3 100644
--- a/control/chameleon_zf90_wrappers.F90
+++ b/control/chameleon_zf90_wrappers.F90
@@ -6,15 +6,15 @@
 !  CHAMELEON is a software package provided by Univ. of Tennessee,
 !  Univ. of California Berkeley and Univ. of Colorado Denver
 !
-! @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+! @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
 !                      Univ. Bordeaux. All rights reserved.
 !
-! @version 1.0.0
+! @version 0.9.2
 ! @author Numerical Algorithm Group
 ! @author Mathieu Faverge
 ! @author Emmanuel Agullo
 ! @author Cedric Castagnede
-! @date 2011-09-15
+! @date 2018-07-12
 ! @precisions normal z -> c d s
 !
 !
diff --git a/control/common.h b/control/common.h
index a9731f9607c70c0444adef343645a16d946831ed..cfa3208d03c254aa104894bdb7090f582b536640 100644
--- a/control/common.h
+++ b/control/common.h
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon common header file
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2012-09-15
+ * @date 2014-11-16
  *
  */
 /**
diff --git a/control/compute_z.h b/control/compute_z.h
index 3bacf06a19dff7c57d2f315634e9040034c1763b..6a78fe620bcb6d2b0d20228c9c4298fa9c4df022 100644
--- a/control/compute_z.h
+++ b/control/compute_z.h
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon computational functions header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/control/context.c b/control/context.c
index 6698189e803d29dcbcfac7400615dc38d8f74652..306e42215cf7e96f0d7b8755e27b307363dcbdc0 100644
--- a/control/context.c
+++ b/control/context.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon context management routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2012-09-15
+ * @date 2014-11-16
  *
  ***
  *
diff --git a/control/context.h b/control/context.h
index 8abaa3e9993a85f7aacadb182eb2ef3dba5124e2..379d953c0c7d665547019d120c8c1283bd3539f9 100644
--- a/control/context.h
+++ b/control/context.h
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon context header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Jakub Kurzak
  * @author Cedric Augonnet
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2012-09-15
+ * @date 2014-11-16
  *
  */
 #ifndef _chameleon_context_h_
diff --git a/control/control.c b/control/control.c
index aafb2d268dbb042ab8a07927482a44ccc5fffb2b..b093c255ef16ba1c16ce77ee489a43ae756ee309 100644
--- a/control/control.c
+++ b/control/control.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon control routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2012-09-15
+ * @date 2014-11-16
  *
  ***
  *
diff --git a/control/descriptor.c b/control/descriptor.c
index f32800a2847a943f18c70ea6546c1bc125d3e9bb..de4bd65c032d661372453d319e9659a58bb1faab 100644
--- a/control/descriptor.c
+++ b/control/descriptor.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon descriptors routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  *
  ***
  *
diff --git a/control/descriptor.h b/control/descriptor.h
index c3548c966ccb254287dc524dab723b12a705ad6d..2be4cafe9c59f7a13042b54e6a99bf0b265bd00c 100644
--- a/control/descriptor.h
+++ b/control/descriptor.h
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon descriptor header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2012-09-15
+ * @date 2014-11-16
  *
  */
 #ifndef _chameleon_descriptor_h_
diff --git a/control/gkkleader.h b/control/gkkleader.h
index 650d0111f8de189730b1efe3f5286c112a6e9799..3171cdb275a86ca47887dc142732e2fd4a5944e1 100644
--- a/control/gkkleader.h
+++ b/control/gkkleader.h
@@ -4,15 +4,15 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon InPlaceTransformation main module header
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  *
  * 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 6cc15c981433e9eb0a10ba5ec983bfe897318399..d00a71fd06a5fcfd8db16384ee1be1c63624a7ec 100644
--- a/control/global.h
+++ b/control/global.h
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon global variables header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Jakub Kurzak
  * @author Piotr Luszczek
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  *
  */
 /**
diff --git a/control/primes.h b/control/primes.h
index 37426628815366794e1f0b35f69b2e9fe4f0496f..c1f71ab7dfffd65b21ce46d3ed3201ca012b203f 100644
--- a/control/primes.h
+++ b/control/primes.h
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon InPlaceTransformation prime numbers module header
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  *
  * 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 560f5dd7d88ab0fe034a68a62be1f704e7b1a119..74c498cb35a0157bc062b46c926f4981f033ed7a 100644
--- a/control/tile.c
+++ b/control/tile.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon layout conversion wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Jakub Kurzak
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  *
  ***
  *
diff --git a/control/workspace.c b/control/workspace.c
index 4a8b078e37fc12e95a4e3fd100490534c107f5d1..c7b010c3e604689fd1547a0917cf8ac1e3645f45 100644
--- a/control/workspace.c
+++ b/control/workspace.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon workspace routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2012-09-15
+ * @date 2014-11-16
  *
  ***
  *
diff --git a/control/workspace.h b/control/workspace.h
index 83b1c69473625a70189fe930475605adc6e1b655..a98a8a7524888a861821ee7fbe5167e1862cdf37 100644
--- a/control/workspace.h
+++ b/control/workspace.h
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon workspace header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Jakub Kurzak
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  *
  */
 #ifndef _chameleon_workspace_h_
diff --git a/control/workspace_z.c b/control/workspace_z.c
index 732d86fe0ba2054fb08ffcaaabd0ded9cd711cc0..9f23af6d2d49de93c8aab417da08644e81a8c266 100644
--- a/control/workspace_z.c
+++ b/control/workspace_z.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon precision dependent workspace routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Hatem Ltaief
  * @author Azzam Haidar
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/CMakeLists.txt b/coreblas/CMakeLists.txt
index a85472b3e368de4a6cd8e2e22c2cffbd9a0c70cd..63d59d009c5d50f84c127c65105d57222400b44f 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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.0.0
+# @version 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
-#  @date 2012-07-13
+#  @date 2014-11-16
 #
 ###
 
diff --git a/coreblas/compute/CMakeLists.txt b/coreblas/compute/CMakeLists.txt
index c251739b4ee73b0a845228ae18ba7e9f56b4faae..009cd37dbb5112325e7622b5eef71715d661fde1 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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.0.0
+# @version 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
-#  @date 2012-07-13
+#  @date 2014-11-16
 #
 ###
 
diff --git a/coreblas/compute/core_dzasum.c b/coreblas/compute/core_dzasum.c
index 07cce2c8ea36ddb7744a1d21b965d45622858bd1..74b6f870509cea81d70b15b9591d368275a98b46 100644
--- a/coreblas/compute/core_dzasum.c
+++ b/coreblas/compute/core_dzasum.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_dzasum CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zaxpy.c b/coreblas/compute/core_zaxpy.c
index a982aaafe5b017f84f650dda4f138f3559e0d2e4..b2b48780299c76952f7dca1c7285643b5fec3d03 100644
--- a/coreblas/compute/core_zaxpy.c
+++ b/coreblas/compute/core_zaxpy.c
@@ -4,12 +4,12 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @date 2015-09-15
  * @precisions normal z -> c d s
diff --git a/coreblas/compute/core_zgeadd.c b/coreblas/compute/core_zgeadd.c
index 5afb5a770667100d1a96e0fc53c346686d9b39c5..2707f0fc8201591a0587d2420dfb4609069e6731 100644
--- a/coreblas/compute/core_zgeadd.c
+++ b/coreblas/compute/core_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zgeadd CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
- * @date 2015-11-03
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zgelqt.c b/coreblas/compute/core_zgelqt.c
index 7793a76dfe48317139724030174871e59c7a64d9..dd1595de17006c71a8ddd14fc1e2a826a17addd0 100644
--- a/coreblas/compute/core_zgelqt.c
+++ b/coreblas/compute/core_zgelqt.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zgelqt CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zgemm.c b/coreblas/compute/core_zgemm.c
index 4272703b7246c8d010baf6dc934d612253a5b8c2..ac225182cac1593bf4e00c2d2db115753f9a3096 100644
--- a/coreblas/compute/core_zgemm.c
+++ b/coreblas/compute/core_zgemm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zgemm CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zgeqrt.c b/coreblas/compute/core_zgeqrt.c
index ab568186669fc4080cda78d59012ac33a97d0871..2173815e8c483bc95fcc3d0a39d893a47d586daa 100644
--- a/coreblas/compute/core_zgeqrt.c
+++ b/coreblas/compute/core_zgeqrt.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zgeqrt CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zgesplit.c b/coreblas/compute/core_zgesplit.c
index 0f30ae8161a168e94b1741644cf3c37aa0329178..ad9cd06664484c487317e7f835cb140691fe8bf8 100644
--- a/coreblas/compute/core_zgesplit.c
+++ b/coreblas/compute/core_zgesplit.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zgesplit CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zgessm.c b/coreblas/compute/core_zgessm.c
index c395a30ff5e614c6c88c61c8a914a06f2e748255..418e6b21911bd39303e550ab41ba62130c5f01cf 100644
--- a/coreblas/compute/core_zgessm.c
+++ b/coreblas/compute/core_zgessm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zgessm CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zgessq.c b/coreblas/compute/core_zgessq.c
index e6462f97966c1394983610070496b454f7d8046b..aba33e5f5102baf1632332be7cbbc2d97d2259c5 100644
--- a/coreblas/compute/core_zgessq.c
+++ b/coreblas/compute/core_zgessq.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zgessq CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zgetf2_nopiv.c b/coreblas/compute/core_zgetf2_nopiv.c
index 18836b6e1a0d87d398ef64ddd2cbe80b89b4ccd3..f2235b3d612f0e89d80ca8b39dc30a3fd567d903 100644
--- a/coreblas/compute/core_zgetf2_nopiv.c
+++ b/coreblas/compute/core_zgetf2_nopiv.c
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zgetf2_nopiv CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Omar Zenati
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2013-02-01
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zgetrf.c b/coreblas/compute/core_zgetrf.c
index c20a6b118220215ec06585f0f5a87f5da4fad7a9..59b41ec76fc1d81f21e8276a0a58e65943bd8f0e 100644
--- a/coreblas/compute/core_zgetrf.c
+++ b/coreblas/compute/core_zgetrf.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zgetrf CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zgetrf_incpiv.c b/coreblas/compute/core_zgetrf_incpiv.c
index b1355e645a0a767645327463db1cc7cf5091123f..98dd5c9223592696b1de87871eafa4b3b870f59b 100644
--- a/coreblas/compute/core_zgetrf_incpiv.c
+++ b/coreblas/compute/core_zgetrf_incpiv.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zgetrf_incpiv CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zgetrf_nopiv.c b/coreblas/compute/core_zgetrf_nopiv.c
index fbd34a12877458bcb8308b4c0e3a994444574162..1b8e4f58d0ff78aa7fad14b4ea3bc887ff8551c4 100644
--- a/coreblas/compute/core_zgetrf_nopiv.c
+++ b/coreblas/compute/core_zgetrf_nopiv.c
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zgetrf_nopiv CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Omar Zenati
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2013-02-01
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zhe2ge.c b/coreblas/compute/core_zhe2ge.c
index 5f8fa6c549e29661bf007e757009cd4a9da2170d..d2cf0827a5e6b349cb6bdcaeab1c2fb0a5581c5c 100644
--- a/coreblas/compute/core_zhe2ge.c
+++ b/coreblas/compute/core_zhe2ge.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zhe2ge CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zhemm.c b/coreblas/compute/core_zhemm.c
index 16496339454159ce8ae20b89ca74e119bb479c39..75efaa7182e120754db5e733b2b2158baf79f117 100644
--- a/coreblas/compute/core_zhemm.c
+++ b/coreblas/compute/core_zhemm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zhemm CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/coreblas/compute/core_zher2k.c b/coreblas/compute/core_zher2k.c
index 2e7d799ed67cf1f985270656aa11560106f07509..a8c9c8acc95e65182ea96cc42296eedcac0d5051 100644
--- a/coreblas/compute/core_zher2k.c
+++ b/coreblas/compute/core_zher2k.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zher2k CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/coreblas/compute/core_zherfb.c b/coreblas/compute/core_zherfb.c
index d1f952bf7b42fef74f00c61935bf0f85f4d9c751..d71c18028e8ed0c24c2e3b57e50a9c8a69b15955 100644
--- a/coreblas/compute/core_zherfb.c
+++ b/coreblas/compute/core_zherfb.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zherfb CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zherk.c b/coreblas/compute/core_zherk.c
index 89b2f03055e3475211a476d5c50a4c0d28ce21a1..a53d69e882b22ae4d35246cb3828542f3b9cfd02 100644
--- a/coreblas/compute/core_zherk.c
+++ b/coreblas/compute/core_zherk.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zherk CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/coreblas/compute/core_zhessq.c b/coreblas/compute/core_zhessq.c
index d5b9685156af9af0237d6768f9b6bc1eb5db092f..482cc6fb42d14acf3f945801f645e734001ce317 100644
--- a/coreblas/compute/core_zhessq.c
+++ b/coreblas/compute/core_zhessq.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zhessq CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/coreblas/compute/core_zlacpy.c b/coreblas/compute/core_zlacpy.c
index c81e152831a6084da2ef8dc33bba13681ef3adc8..40ed5423636f9469fb367e1aa78b0c729e213c65 100644
--- a/coreblas/compute/core_zlacpy.c
+++ b/coreblas/compute/core_zlacpy.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zlacpy CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zlag2c.c b/coreblas/compute/core_zlag2c.c
index 8c9fcd20daa4ce0f5230649b310e43f11362df10..b954f888e743bb0b4028c0bd1fd8181c4700976d 100644
--- a/coreblas/compute/core_zlag2c.c
+++ b/coreblas/compute/core_zlag2c.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zlag2c CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions mixed zc -> ds
  *
  */
diff --git a/coreblas/compute/core_zlange.c b/coreblas/compute/core_zlange.c
index c00c1d4765a815bfd3e83daf361f2ba4d04c5607..0baf34546cb61d850baaaf92ba1f3464271b2bd4 100644
--- a/coreblas/compute/core_zlange.c
+++ b/coreblas/compute/core_zlange.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zlange CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zlanhe.c b/coreblas/compute/core_zlanhe.c
index bf7d206c91fe297652ae52e77f83e1b65d555d69..a57b29bc029a46c8312f4d0a4202fbe5d5ba2bc9 100644
--- a/coreblas/compute/core_zlanhe.c
+++ b/coreblas/compute/core_zlanhe.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zlanhe CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/coreblas/compute/core_zlansy.c b/coreblas/compute/core_zlansy.c
index 3657dbf1fe8f82f756b7a3ae1d93de6106161e21..0cac88ba34a4147151c5f51ebe16a82c9f2e0ace 100644
--- a/coreblas/compute/core_zlansy.c
+++ b/coreblas/compute/core_zlansy.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zlansy CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zlantr.c b/coreblas/compute/core_zlantr.c
index d4f24af753c6a8e4738957bd99622d6f4a54a9c6..ffecb0ee9de67a5d3fa645c5dd3c4770e852a770 100644
--- a/coreblas/compute/core_zlantr.c
+++ b/coreblas/compute/core_zlantr.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zlantr CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zlascal.c b/coreblas/compute/core_zlascal.c
index 50654a63b36686a27506209695fc1830f6628f65..7c6d937d01c4457c4350ed4acec5bef0cc8336f7 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 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 core_zlascal CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Dalal Sukkari
- * @date 2015-11-05
+ * @date 2016-11-30
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zlaset.c b/coreblas/compute/core_zlaset.c
index db4e8484791dd469e284a08f311e2b0772a37157..255b111007728a90d4fed2419babf2eed1dbf7a6 100644
--- a/coreblas/compute/core_zlaset.c
+++ b/coreblas/compute/core_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zlaset CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zlaset2.c b/coreblas/compute/core_zlaset2.c
index 95a5e643e817f06c24065faaa1d3e2dc5611c34a..d7eefc8635814bca3a594735c82e6a9f03dbab1b 100644
--- a/coreblas/compute/core_zlaset2.c
+++ b/coreblas/compute/core_zlaset2.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zlaset2 CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zlatro.c b/coreblas/compute/core_zlatro.c
index c22ac72ab946c069e3e9845b4af485f3216f032f..a139fd5d6b5c996aebc5ad9018da3e154e3a21ff 100644
--- a/coreblas/compute/core_zlatro.c
+++ b/coreblas/compute/core_zlatro.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zlatro CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Azzam Haidar
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zlauum.c b/coreblas/compute/core_zlauum.c
index 09fd433151872c512b559314abb3a91c0e0af6f7..4016ca79d2a19b8d1621eb6792c9c428bd048d06 100644
--- a/coreblas/compute/core_zlauum.c
+++ b/coreblas/compute/core_zlauum.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zlauum CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zpamm.c b/coreblas/compute/core_zpamm.c
index 2dd190e9c350ef64723628844e10c1b945f9e6f0..eb995720c32af740b9d38c07ee64de60f3547127 100644
--- a/coreblas/compute/core_zpamm.c
+++ b/coreblas/compute/core_zpamm.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zpamm CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2011-06-14
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zparfb.c b/coreblas/compute/core_zparfb.c
index 05d07f72e7b0aba13efc8efce861aac50426a963..4b22469941f5500db8f1535fc24de45800e7e5eb 100644
--- a/coreblas/compute/core_zparfb.c
+++ b/coreblas/compute/core_zparfb.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zparfb CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2018-11-09
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zpemv.c b/coreblas/compute/core_zpemv.c
index 6b8fc9ed644fa092084b7eeeb85aad7601c9e942..f96ef1e1431bf0d49bf726788730677db1ebdd24 100644
--- a/coreblas/compute/core_zpemv.c
+++ b/coreblas/compute/core_zpemv.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zpemv CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2011-06-29
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zplghe.c b/coreblas/compute/core_zplghe.c
index f8ffd2bb0d30cdc73054aff83e65987ea0c77925..70be1636cb086edf46dd41ea14630d70b92a4146 100644
--- a/coreblas/compute/core_zplghe.c
+++ b/coreblas/compute/core_zplghe.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zplghe CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Piotr Luszczek
  * @author Pierre Lemarinier
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/coreblas/compute/core_zplgsy.c b/coreblas/compute/core_zplgsy.c
index 381a608495ed0ed1c646d1b709d662885c1c1eca..dbd252066e11bf1bf6db69dab951dd56cf5f2cbb 100644
--- a/coreblas/compute/core_zplgsy.c
+++ b/coreblas/compute/core_zplgsy.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zplgsy CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Piotr Luszczek
  * @author Pierre Lemarinier
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zplrnt.c b/coreblas/compute/core_zplrnt.c
index 06a0ba741e88f2c4d99f187c00847c23bf0ca1aa..7bde0cab7cdea80db4353acdeb1f8c2b166d3bc0 100644
--- a/coreblas/compute/core_zplrnt.c
+++ b/coreblas/compute/core_zplrnt.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zplrnt CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Piotr Luszczek
  * @author Pierre Lemarinier
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zpotrf.c b/coreblas/compute/core_zpotrf.c
index 28fd67d39b8065f9e39922a3863336f913f85b57..107cfe5fa95c59064bcfc96359d81c75e8e9e310 100644
--- a/coreblas/compute/core_zpotrf.c
+++ b/coreblas/compute/core_zpotrf.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zpotrf CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zssssm.c b/coreblas/compute/core_zssssm.c
index ef5bd6a1708848be54c7b4c7efd0e744b3b5dbb3..c98e80a7a7ab1f3a53e3de60a4913beffbd49cb9 100644
--- a/coreblas/compute/core_zssssm.c
+++ b/coreblas/compute/core_zssssm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zssssm CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zsymm.c b/coreblas/compute/core_zsymm.c
index 5d9251eb00b7a5af9d020783b4745ab6bffce743..5a286dafe6559b8824582e6753a3ddb73fb7662c 100644
--- a/coreblas/compute/core_zsymm.c
+++ b/coreblas/compute/core_zsymm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zsymm CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zsyr2k.c b/coreblas/compute/core_zsyr2k.c
index 062b001148668dcba90892a08cbb172753dbcf47..3d1771201d67390e79540c17be2201d4601802b3 100644
--- a/coreblas/compute/core_zsyr2k.c
+++ b/coreblas/compute/core_zsyr2k.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zsyr2k CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zsyrk.c b/coreblas/compute/core_zsyrk.c
index e994a577628f5df9004f50e691899a2168cdcc96..4f2667144ce186906bcf2c22c8de8730583141ee 100644
--- a/coreblas/compute/core_zsyrk.c
+++ b/coreblas/compute/core_zsyrk.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zsyrk CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zsyssq.c b/coreblas/compute/core_zsyssq.c
index 8bce64cec2667154c21e464b0cbc0dd3dcc6407a..c7abf5a71d25a37c353d0bcb57409c694d89c63a 100644
--- a/coreblas/compute/core_zsyssq.c
+++ b/coreblas/compute/core_zsyssq.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zsyssq CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zsytf2_nopiv.c b/coreblas/compute/core_zsytf2_nopiv.c
index a98424f446ccba7d832d7095617a94bf681f9c12..72f65a9e9812132f7223cc93f28a459bf83bd31d 100644
--- a/coreblas/compute/core_zsytf2_nopiv.c
+++ b/coreblas/compute/core_zsytf2_nopiv.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zsytf2_nopiv CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
@@ -21,7 +21,7 @@
  * @author Cedric Castagnede
  * @author Florent Pruvost
  * @author Marc Sergent
- * @date 2014-10-10
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/coreblas/compute/core_ztplqt.c b/coreblas/compute/core_ztplqt.c
index e80f80a963ec421613fd16367b6e92a0f274c70e..c0404b076fa0a81126ffe26c6818f0abd1679bca 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_ztplqt CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2016-12-15
+ * @date 2018-01-31
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_ztpmlqt.c b/coreblas/compute/core_ztpmlqt.c
index bfc53b98dba91a9ca56fbf71e2b6b3faf1828c99..7a0ecf7ae3adb974be91b957693238bbbc7220b3 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_ztpmlqt CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2018-11-09
+ * @date 2018-01-31
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_ztpmqrt.c b/coreblas/compute/core_ztpmqrt.c
index 6584e2ba54661d60358ef7d69d00fe8d75f1fd16..f308f638937d6ca8e26f8491148f8b189bcc2a70 100644
--- a/coreblas/compute/core_ztpmqrt.c
+++ b/coreblas/compute/core_ztpmqrt.c
@@ -4,14 +4,14 @@
  *
  * @copyright 2009-2016 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_ztpmqrt CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @date 2016-12-15
  * @precisions normal z -> c d s
diff --git a/coreblas/compute/core_ztpqrt.c b/coreblas/compute/core_ztpqrt.c
index a251bed84768c8ab8830b81d10c84f2cde64b36a..94de0268acbf3b20b4b496480f63522760bd08d9 100644
--- a/coreblas/compute/core_ztpqrt.c
+++ b/coreblas/compute/core_ztpqrt.c
@@ -4,14 +4,14 @@
  *
  * @copyright 2009-2016 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_ztpqrt CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @date 2016-12-15
  * @precisions normal z -> c d s
diff --git a/coreblas/compute/core_ztradd.c b/coreblas/compute/core_ztradd.c
index 3242ae53a19b2eced1e97631a74c702a77e054f1..7f18f482a1571eb400d294517a83f8ca3555fff6 100644
--- a/coreblas/compute/core_ztradd.c
+++ b/coreblas/compute/core_ztradd.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_ztradd CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @date 2015-11-03
  * @precisions normal z -> c d s
diff --git a/coreblas/compute/core_ztrasm.c b/coreblas/compute/core_ztrasm.c
index 86357d3fb6f1dc9175fb77ca4fa0aeff1411f2ce..2f6e7e509bd1f5918bd116916764d2cf3c5a0d5f 100644
--- a/coreblas/compute/core_ztrasm.c
+++ b/coreblas/compute/core_ztrasm.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_ztrasm CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_ztrmm.c b/coreblas/compute/core_ztrmm.c
index 8c97863159297b5b0613f301c71b7196f935f039..ffd1410376dde2239264022fa0baf11f6229ba3f 100644
--- a/coreblas/compute/core_ztrmm.c
+++ b/coreblas/compute/core_ztrmm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_ztrmm CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_ztrsm.c b/coreblas/compute/core_ztrsm.c
index 044e4073e34ac814c8d080d167b4fb63171d2df5..66978a5330d49e404536f6814da585854af69688 100644
--- a/coreblas/compute/core_ztrsm.c
+++ b/coreblas/compute/core_ztrsm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_ztrsm CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_ztrssq.c b/coreblas/compute/core_ztrssq.c
index 61cc2994dbb82cdf124d45164c0df56aa784edee..da470442a3ef02062d37ba06eb3d772cd98ef3c9 100644
--- a/coreblas/compute/core_ztrssq.c
+++ b/coreblas/compute/core_ztrssq.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_ztrssq CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_ztrtri.c b/coreblas/compute/core_ztrtri.c
index 391018f028bce05015a193e785281bd8a0fde4c3..99685d722bc8f2bbc515ab89872fa97df084fb58 100644
--- a/coreblas/compute/core_ztrtri.c
+++ b/coreblas/compute/core_ztrtri.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_ztrtri CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_ztslqt.c b/coreblas/compute/core_ztslqt.c
index 156429d2b372243d73d75cbbef92c60cdf7a6d90..8f5efa616180b3d3d82ef6b0071944cfb774b1b3 100644
--- a/coreblas/compute/core_ztslqt.c
+++ b/coreblas/compute/core_ztslqt.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_ztslqt CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_ztsmlq.c b/coreblas/compute/core_ztsmlq.c
index c2238aed6ba9d5555c05331c69171b88967d7f2f..34a3b20168e7914e9b1c9a758728359d287253d4 100644
--- a/coreblas/compute/core_ztsmlq.c
+++ b/coreblas/compute/core_ztsmlq.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_ztsmlq CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Azzam Haidar
@@ -21,7 +21,7 @@
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_ztsmlq_hetra1.c b/coreblas/compute/core_ztsmlq_hetra1.c
index fc0a5abda742d86602cc2da3a8c2ca85ea36d80c..bd3d8dc404e02c02677510b952678d129ff8903d 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_ztsmlq_hetra1 CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Azzam Haidar
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_ztsmqr.c b/coreblas/compute/core_ztsmqr.c
index aeb35c924e887f29309a987d3add5c63270fe4b2..0e48144dc9ba7a670fda85281ae533b85939e15c 100644
--- a/coreblas/compute/core_ztsmqr.c
+++ b/coreblas/compute/core_ztsmqr.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_ztsmqr CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Azzam Haidar
@@ -21,7 +21,7 @@
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_ztsmqr_hetra1.c b/coreblas/compute/core_ztsmqr_hetra1.c
index 40dcf927085d15a332da64e322e3b1992506116b..825fd30c74c5c9187f253311af3cc92f9582daa9 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_ztsmqr_hetra1 CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Jakub Kurzak
  * @author Azzam Haidar
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_ztsqrt.c b/coreblas/compute/core_ztsqrt.c
index 3bbbd8f1b2028ac449a1581d4946d51518e1d93e..10e7cb39d4f70d9af295f0f8556bb8cacdee2708 100644
--- a/coreblas/compute/core_ztsqrt.c
+++ b/coreblas/compute/core_ztsqrt.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_ztsqrt CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_ztstrf.c b/coreblas/compute/core_ztstrf.c
index 6f03a2664bb5c0956668aafddd09ecf23992b03b..fbdbae98651d6fd9801b26c6c3b42f2fa6141ab8 100644
--- a/coreblas/compute/core_ztstrf.c
+++ b/coreblas/compute/core_ztstrf.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_ztstrf CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zttlqt.c b/coreblas/compute/core_zttlqt.c
index b331b28712a74cfe2c641a4094b6679efbf1233c..ddbad65e339f00dcad2f9a1bca561419e47d28e8 100644
--- a/coreblas/compute/core_zttlqt.c
+++ b/coreblas/compute/core_zttlqt.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zttlqt CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zttmlq.c b/coreblas/compute/core_zttmlq.c
index b2fd886918fbaa14379544f51c50b1e127c6d5f5..d28b8057a8a41c88ab641f164d8685bf117291a9 100644
--- a/coreblas/compute/core_zttmlq.c
+++ b/coreblas/compute/core_zttmlq.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zttmlq CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2018-11-09
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zttmqr.c b/coreblas/compute/core_zttmqr.c
index 850f275993cc4f7880c6e0128737bbedef0fa4ee..896b0c898cd8daa49b22756b5ae68bd687a202e3 100644
--- a/coreblas/compute/core_zttmqr.c
+++ b/coreblas/compute/core_zttmqr.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  ***
  *
  * @brief Chameleon core_zttmqr CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zttqrt.c b/coreblas/compute/core_zttqrt.c
index 4f127334a50d46ce5a4ee08e6cddc059cf33fbf6..be14098d1120bf2820620a2f7d59b5f36def630d 100644
--- a/coreblas/compute/core_zttqrt.c
+++ b/coreblas/compute/core_zttqrt.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zttqrt CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zunmlq.c b/coreblas/compute/core_zunmlq.c
index 3f1593883c548b46777c8520e9c4de921c5542a4..3b5d17c06aa58635a9137c00278abd81e352b63b 100644
--- a/coreblas/compute/core_zunmlq.c
+++ b/coreblas/compute/core_zunmlq.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_zunmlq CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/core_zunmqr.c b/coreblas/compute/core_zunmqr.c
index 347512a018f62e0d718671cfabf063371723ccc9..48e75b2817c5dd28208a8a0cad48234cb34f1e42 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  */
@@ -12,15 +12,15 @@
  *
  * @brief Chameleon core_zunmqr CPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/compute/global.c b/coreblas/compute/global.c
index bc953f6955b26007de7bba821cd19488e2790ba0..f08c09c455b6c0c099b1e3db6e6d1bebd81fd54c 100644
--- a/coreblas/compute/global.c
+++ b/coreblas/compute/global.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon global coreblas variables and functions
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Jakub Kurzak
  * @author Piotr Luszczek
- * @date 2010-11-15
+ * @date 2014-11-16
  *
  */
 static int coreblas_gemm3m_enabled = 0;
diff --git a/coreblas/eztrace_module/CMakeLists.txt b/coreblas/eztrace_module/CMakeLists.txt
index f8a5cb4948e36a07fc17dccc4487322cc8daa3c9..810bab667826f3f73fa5f4b1cf69413f21b813e7 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
 #                      Univ. Bordeaux. All rights reserved.
 #
 ###
@@ -17,9 +17,9 @@
 #     Univ. of California Berkeley,
 #     Univ. of Colorado Denver.
 #
-# @version 1.0.0
+# @version 0.9.2
 #  @author Florent Pruvost
-#  @date 2015-09-14
+#  @date 2015-09-15
 #
 ###
 
diff --git a/coreblas/include/CMakeLists.txt b/coreblas/include/CMakeLists.txt
index 7154d279b159850ffa807f34732b1aef79cb4d94..9403541a4874e5e84ff365c73a150cc843f2f6da 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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.0.0
+# @version 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
-#  @date 2012-07-13
+#  @date 2014-11-16
 #
 ###
 
diff --git a/coreblas/include/coreblas.h b/coreblas/include/coreblas.h
index 2779be04bd318a92c8813f5bbc2d4614b569bcae..bf4db17eae59eeb2fcffe012aa05c71b5c1aaf4a 100644
--- a/coreblas/include/coreblas.h
+++ b/coreblas/include/coreblas.h
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon CPU kernels main header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Jakub Kurzak
  * @author Hatem Ltaief
- * @date 2010-11-15
+ * @date 2014-11-16
  *
  */
 #ifndef _coreblas_h_
diff --git a/coreblas/include/coreblas/cblas.h b/coreblas/include/coreblas/cblas.h
index 66648c93637b4619cd5804c78cdd58b76ed9cfa6..fdfd5595ad848f742f74e58903c3332b15a8df74 100644
--- a/coreblas/include/coreblas/cblas.h
+++ b/coreblas/include/coreblas/cblas.h
@@ -4,14 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cblas header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Cedric Castagnede
  * @date 2012-09-15
  *
diff --git a/coreblas/include/coreblas/coreblas_z.h b/coreblas/include/coreblas/coreblas_z.h
index 126ca973184c2d7ea251d1898a824ba605cee0a5..8a755db76eba3513ddc72c4ba48724b008d8fef9 100644
--- a/coreblas/include/coreblas/coreblas_z.h
+++ b/coreblas/include/coreblas/coreblas_z.h
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon CPU CHAMELEON_Complex64_t kernels header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Hatem Ltaief
  * @author Azzam Haidar
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2017-07-29
  * @precisions normal z -> c d s
  *
  */
diff --git a/coreblas/include/coreblas/coreblas_zc.h b/coreblas/include/coreblas/coreblas_zc.h
index 32f929a5e657690282fcb59c038fc02000ad50e1..d6b81491da1bfbbebcf6652e54eac38a86069392 100644
--- a/coreblas/include/coreblas/coreblas_zc.h
+++ b/coreblas/include/coreblas/coreblas_zc.h
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 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 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2017-07-29
  * @precisions mixed zc -> ds
  *
  */
diff --git a/coreblas/include/coreblas/lapacke.h b/coreblas/include/coreblas/lapacke.h
index 98d7ee693ac553b48dbbadcd931e912b83bd77b5..43c52856e9d47a7853c2e7c84dd7c5c13ea19164 100644
--- a/coreblas/include/coreblas/lapacke.h
+++ b/coreblas/include/coreblas/lapacke.h
@@ -4,14 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon lapacke header
  *
- * @version 1.0.0
+ * @version 0.9.2
  *
  */
 /**
diff --git a/coreblas/include/coreblas/lapacke_config.h b/coreblas/include/coreblas/lapacke_config.h
index ccb678939f0175cb45a35d487e1da4aa068b6fa9..4ef15ef7cf253b15eb23c0f6223be079c3c83ce4 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon lapacke configuration header
  *
- * @version 1.0.0
+ * @version 0.9.2
  *
  */
 /**
diff --git a/coreblas/include/coreblas/lapacke_mangling.h b/coreblas/include/coreblas/lapacke_mangling.h
index 00e7bf63595da9aa57d55f5a7870e3f13ca56798..725153cce9b51d992b7ff183c1b1f511f298c03a 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon lapacke mangling header
  *
- * @version 1.0.0
+ * @version 0.9.2
  *
  */
 #ifndef _lapacke_mangling_h_
diff --git a/cudablas/CMakeLists.txt b/cudablas/CMakeLists.txt
index a85472b3e368de4a6cd8e2e22c2cffbd9a0c70cd..d792c223c1eb52d8d532f24670347b428cb09b36 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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.0.0
+# @version 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
-#  @date 2012-07-13
+#  @date 2015-09-17
 #
 ###
 
diff --git a/cudablas/compute/CMakeLists.txt b/cudablas/compute/CMakeLists.txt
index 4a1f8559a9c62bbad84f79c545c89075dd71229d..d322c92370e4c7ebe105db37d98377cbae5fcf85 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
 #                      Univ. Bordeaux. All rights reserved.
 #
 ###
@@ -17,9 +17,9 @@
 #     Univ. of California Berkeley,
 #     Univ. of Colorado Denver.
 #
-# @version 1.0.0
+# @version 0.9.2
 #  @author Florent Pruvost
-#  @date 2018-11-09
+#  @date 2015-09-17
 #
 ###
 
diff --git a/cudablas/compute/cuda_zgeadd.c b/cudablas/compute/cuda_zgeadd.c
index e520dfb0a58c3be1032ff7bdc997e8d569f5bed8..0f22536623f6418a3bdae1d83af51b66b3519152 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zgeadd GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2015-09-17
+ * @date 2017-04-10
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_zgelqt.c b/cudablas/compute/cuda_zgelqt.c
index b2e6d3da4d0eb8c7b1bb6ebef9e29ca5eced73b3..9ad274cc0eb3ec14a1b2a5e04470fae867014412 100644
--- a/cudablas/compute/cuda_zgelqt.c
+++ b/cudablas/compute/cuda_zgelqt.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zgelqt GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2015-09-16
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_zgemerge.c b/cudablas/compute/cuda_zgemerge.c
index 889d6f333909aff6e5827d4b7d46bb64a13f68a3..cfa018d5608e92cd5e52a5d8d8ea3574486c6b42 100644
--- a/cudablas/compute/cuda_zgemerge.c
+++ b/cudablas/compute/cuda_zgemerge.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zgemerge GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2015-09-16
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_zgemm.c b/cudablas/compute/cuda_zgemm.c
index 452b6fbfac5cd7f69fd29b6df3d380f0613e36a0..2c174a9e5d41ef2bab968edbdde485841df28ab8 100644
--- a/cudablas/compute/cuda_zgemm.c
+++ b/cudablas/compute/cuda_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zgemm GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @date 2015-09-17
  * @precisions normal z -> c d s
diff --git a/cudablas/compute/cuda_zgeqrt.c b/cudablas/compute/cuda_zgeqrt.c
index 2ba65a020c6f8caaf4a1fca369fc61a6403c944d..386fa01263ff4ebe4dea5e128d80e618529a83ec 100644
--- a/cudablas/compute/cuda_zgeqrt.c
+++ b/cudablas/compute/cuda_zgeqrt.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zgeqrt GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2015-09-16
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_zgessm.c b/cudablas/compute/cuda_zgessm.c
index 261033b892b46fafafdb953ac5851a0ef7a76677..aeed0dcbd611f4b1c70860e56eb6ed383afd2901 100644
--- a/cudablas/compute/cuda_zgessm.c
+++ b/cudablas/compute/cuda_zgessm.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zgessm GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2015-09-16
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_zgetrf.c b/cudablas/compute/cuda_zgetrf.c
index b236adecf1fe07ec8821ba93f13501878e15087f..a6a46d8a6d15fa11f6f3eb4052514a65a239869a 100644
--- a/cudablas/compute/cuda_zgetrf.c
+++ b/cudablas/compute/cuda_zgetrf.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zgetrf GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2015-09-16
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_zhemm.c b/cudablas/compute/cuda_zhemm.c
index 68a7c5c288f3193c34b856e5bdaa0a4be0f841b9..1338d1e259fc9d01c06bd0dbf61e5feaa42d3d40 100644
--- a/cudablas/compute/cuda_zhemm.c
+++ b/cudablas/compute/cuda_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zhemm GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @date 2015-09-17
  * @precisions normal z -> c
diff --git a/cudablas/compute/cuda_zher2k.c b/cudablas/compute/cuda_zher2k.c
index 063d5476f779375469330489e2a5cff9b4a31e1f..48893e0f590aa435db75b3f3b857dc36ac995742 100644
--- a/cudablas/compute/cuda_zher2k.c
+++ b/cudablas/compute/cuda_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zher2k GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @date 2015-09-17
  * @precisions normal z -> c
diff --git a/cudablas/compute/cuda_zherfb.c b/cudablas/compute/cuda_zherfb.c
index a6e447807f8183a6f3036539d84aa51b9b314d64..ae54c28ac5b13a4b79025fe0bdd60023b0d96ec6 100644
--- a/cudablas/compute/cuda_zherfb.c
+++ b/cudablas/compute/cuda_zherfb.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zherfb GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2015-09-16
+ * @date 2016-12-22
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_zherk.c b/cudablas/compute/cuda_zherk.c
index ecca775e5149a60d8f7965f33a5c62489f3336b1..e78b8316927455334e443bc408398c0911b371ab 100644
--- a/cudablas/compute/cuda_zherk.c
+++ b/cudablas/compute/cuda_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zherk GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @date 2015-09-17
  * @precisions normal z -> c
diff --git a/cudablas/compute/cuda_zlarfb.c b/cudablas/compute/cuda_zlarfb.c
index 51fb0f3c70c33d84ea01d9499f51eeac053a0791..b34b9df87e66c7125cb14e0cd7b7a4542337c316 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
@@ -13,9 +13,9 @@
  *
  * Code originated from MAGMA
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2018-11-09
+ * @date 2016-12-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_zlauum.c b/cudablas/compute/cuda_zlauum.c
index 77f4171811bdef765d12dead4a2daba57c19aad2..f112f39ec6c91039360cd0a26edb78b363968d08 100644
--- a/cudablas/compute/cuda_zlauum.c
+++ b/cudablas/compute/cuda_zlauum.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zlauum GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2015-09-16
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_zparfb.c b/cudablas/compute/cuda_zparfb.c
index bcef47797c5892accf0073aa9e2fd67b2cb6ab1b..95bbe2115db1b12dd1ec9add74cfaa06e3fd13fb 100644
--- a/cudablas/compute/cuda_zparfb.c
+++ b/cudablas/compute/cuda_zparfb.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zparfb GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2018-11-09
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_zpotrf.c b/cudablas/compute/cuda_zpotrf.c
index 6ec760a47e5909e8fbefae3adcec4e648167fbe9..895fda836d115285314e91d192aab809ee2b0a4a 100644
--- a/cudablas/compute/cuda_zpotrf.c
+++ b/cudablas/compute/cuda_zpotrf.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zpotrf GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2015-09-16
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_zssssm.c b/cudablas/compute/cuda_zssssm.c
index 70f48047c7e58ac75b97e1ebc8b5f24c9ff88000..bd7bc2014a6cbb58414a0dd9b2e2dd3f89ff24bf 100644
--- a/cudablas/compute/cuda_zssssm.c
+++ b/cudablas/compute/cuda_zssssm.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zssssm GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2015-09-16
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_zsymm.c b/cudablas/compute/cuda_zsymm.c
index aaad4efca9056d0b934e3d177e98efd82ed309cd..64321a3575d6591e048524aba07fe805c47f4e2e 100644
--- a/cudablas/compute/cuda_zsymm.c
+++ b/cudablas/compute/cuda_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zsymm GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @date 2015-09-17
  * @precisions normal z -> c d s
diff --git a/cudablas/compute/cuda_zsyr2k.c b/cudablas/compute/cuda_zsyr2k.c
index 12083cccd4a9766f686eef0eb9455bb48bc1dc4b..3ccf9262c6dcf0877fe9118d2a79f5c8e319e033 100644
--- a/cudablas/compute/cuda_zsyr2k.c
+++ b/cudablas/compute/cuda_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zsyr2k GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @date 2015-09-17
  * @precisions normal z -> c d s
diff --git a/cudablas/compute/cuda_zsyrk.c b/cudablas/compute/cuda_zsyrk.c
index 427a52fc01fafadbfe3703863b0d19d04d5558dc..a205568bcf511a0c46062c0b392f85f7ab788e6a 100644
--- a/cudablas/compute/cuda_zsyrk.c
+++ b/cudablas/compute/cuda_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zsyrk GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @date 2015-09-17
  * @precisions normal z -> c d s
diff --git a/cudablas/compute/cuda_ztpmlqt.c b/cudablas/compute/cuda_ztpmlqt.c
index 4f01e0e28cf34690cc3e3daa1823c418e9557fac..a8ff6ce5afe3e3761cb5c0e39314302f05c0726f 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_ztpmlqt GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2018-11-09
+ * @date 2018-11-07
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_ztpmqrt.c b/cudablas/compute/cuda_ztpmqrt.c
index c7a19fd76726491b982c0da9be7c0ff444fd829c..22319e42dcb961863af2a06675a0b3944e1b72bc 100644
--- a/cudablas/compute/cuda_ztpmqrt.c
+++ b/cudablas/compute/cuda_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_ztpmqrt GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2018-11-09
+ * @date 2016-12-22
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_ztrmm.c b/cudablas/compute/cuda_ztrmm.c
index b2809c779ce0e00003a3d5b22e26e1fefb63805f..aa95a42f7281c074c8d1b0954e6bdea496373cf0 100644
--- a/cudablas/compute/cuda_ztrmm.c
+++ b/cudablas/compute/cuda_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_ztrmm GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @date 2015-09-17
  * @precisions normal z -> c d s
diff --git a/cudablas/compute/cuda_ztrsm.c b/cudablas/compute/cuda_ztrsm.c
index e189aba628001218d2b32172450574459baa7f9e..2c49aafb1df971cd205e515d19df82095d291d36 100644
--- a/cudablas/compute/cuda_ztrsm.c
+++ b/cudablas/compute/cuda_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_ztrsm GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @date 2015-09-17
  * @precisions normal z -> c d s
diff --git a/cudablas/compute/cuda_ztrtri.c b/cudablas/compute/cuda_ztrtri.c
index 8e5d335c87774f2ce586e6863d74c92988c4a978..849c169e6f0355ed92399e426c17eadbf8f397ba 100644
--- a/cudablas/compute/cuda_ztrtri.c
+++ b/cudablas/compute/cuda_ztrtri.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_ztrtri GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2015-09-16
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_ztslqt.c b/cudablas/compute/cuda_ztslqt.c
index 18d3758bc1a36036243f02ab1359c19797fc3493..1aced8402f879e3aad813f97ae25791f48c1c6b6 100644
--- a/cudablas/compute/cuda_ztslqt.c
+++ b/cudablas/compute/cuda_ztslqt.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_ztslqt GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2015-09-16
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_ztsmlq.c b/cudablas/compute/cuda_ztsmlq.c
index 2dcfc24158a77a0427ed00bd294a72b55a97f238..c0ec9683a549176f8bbb56a5da0963052712d2bc 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_ztsmlq GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @author Mathieu Faverge
- * @date 2018-11-09
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_ztsmqr.c b/cudablas/compute/cuda_ztsmqr.c
index e731dfbf451bb06ab0d9f519292b529c04bfe00a..9d533a121c0337714f159359e48f457001058294 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_ztsmqr GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @author Mathieu Faverge
- * @date 2018-11-09
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_ztsqrt.c b/cudablas/compute/cuda_ztsqrt.c
index c46bae9ef11438e55861885d94c35627eef5a619..50cafaaa13e349d576db5e9b50f1ebeb3d5e40a1 100644
--- a/cudablas/compute/cuda_ztsqrt.c
+++ b/cudablas/compute/cuda_ztsqrt.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_ztsqrt GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2015-09-16
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_ztstrf.c b/cudablas/compute/cuda_ztstrf.c
index d46fd9c5c22859622f51960514ced58a2b415652..054d3bffff655849dac2c65229fb18f10f141756 100644
--- a/cudablas/compute/cuda_ztstrf.c
+++ b/cudablas/compute/cuda_ztstrf.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_ztstrf GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2015-09-16
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_zttmlq.c b/cudablas/compute/cuda_zttmlq.c
index c194adfe7f7c76847a4b64feaa9b0d5b560eb78b..b325aa8f52df0ec353af5c4e7993b809df17271c 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zttmlq GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @author Mathieu Faverge
- * @date 2018-11-09
+ * @date 2018-11-07
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_zttmqr.c b/cudablas/compute/cuda_zttmqr.c
index 8664d0675afdb82b60e92bf054caa45122c7ec89..7f283bc798387fde193e98876e61ace9e507f642 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zttmqr GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @author Mathieu Faverge
- * @date 2018-11-09
+ * @date 2017-04-05
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_zunmlqt.c b/cudablas/compute/cuda_zunmlqt.c
index dbb7e3f134a3738e7895ec1f73968320becc6640..a9def036b16f0733047324f0959fbd7b7079536d 100644
--- a/cudablas/compute/cuda_zunmlqt.c
+++ b/cudablas/compute/cuda_zunmlqt.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zunmlqt GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2015-09-16
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cuda_zunmqrt.c b/cudablas/compute/cuda_zunmqrt.c
index 1160d0009d94cc73a7efb949e04c516a34c1e585..0686a3eb1be9c01822d0a18c464962ea830c3b8b 100644
--- a/cudablas/compute/cuda_zunmqrt.c
+++ b/cudablas/compute/cuda_zunmqrt.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon cuda_zunmqrt GPU kernel
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2015-09-16
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/compute/cudaglobal.c b/cudablas/compute/cudaglobal.c
index edbfa36b2b0016206006e0ddea1a1ceecee8194f..2fe7d583f3b35fbe1a8af3d1d78a689c079b64f9 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon global cudablas variables and functions
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2017-04-06
+ * @date 2017-04-07
  *
  */
 #include "cudablas.h"
diff --git a/cudablas/eztrace_module/CMakeLists.txt b/cudablas/eztrace_module/CMakeLists.txt
index e15982a503468cd088ba5678594d341efa98875b..85ddba60ef1daf378d696118a2070907bacf66ce 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
 #                      Univ. Bordeaux. All rights reserved.
 #
 ###
@@ -17,9 +17,9 @@
 #     Univ. of California Berkeley,
 #     Univ. of Colorado Denver.
 #
-# @version 1.0.0
+# @version 0.9.2
 #  @author Florent Pruvost
-#  @date 2015-09-16
+#  @date 2015-09-17
 #
 ###
 
diff --git a/cudablas/include/CMakeLists.txt b/cudablas/include/CMakeLists.txt
index 273105a1e8feecc007bfb13d06cf58615a9238aa..4fced885aef5f9d3c67154ec5a6f530ab9dbe1b2 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
 #                      Univ. Bordeaux. All rights reserved.
 #
 ###
@@ -17,9 +17,9 @@
 #     Univ. of California Berkeley,
 #     Univ. of Colorado Denver.
 #
-# @version 1.0.0
+# @version 0.9.2
 #  @author Florent Pruvost
-#  @date 2015-09-16
+#  @date 2015-09-17
 #
 ###
 
diff --git a/cudablas/include/cudablas.h b/cudablas/include/cudablas.h
index 22c0d6450c94ef8ead3d6749c1dbeded28fba0a8..95c2bb9b2b994301e4f053758010658613ae5c90 100644
--- a/cudablas/include/cudablas.h
+++ b/cudablas/include/cudablas.h
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon GPU kernels main header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2015-09-16
+ * @date 2015-09-17
  * @precisions normal z -> c d s
  *
  */
diff --git a/cudablas/include/cudablas/cudablas_z.h b/cudablas/include/cudablas/cudablas_z.h
index 8895ff6485b33c423bd80b5b99599883eec58ce7..398637a6c12f8d09999cba981a79dc3abbf9a199 100644
--- a/cudablas/include/cudablas/cudablas_z.h
+++ b/cudablas/include/cudablas/cudablas_z.h
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 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 0.9.2
  * @author Florent Pruvost
- * @date 2018-11-09
+ * @date 2017-07-29
  * @precisions normal z -> c d s
  *
  */
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
index b023032b2e1dd53701f95e74132e25de8498df9f..26f32e1fbcbfddc4847b1144f5ead5fddcef5f8d 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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.0.0
+# @version 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
diff --git a/doc/doxygen/CMakeLists.txt b/doc/doxygen/CMakeLists.txt
index b7bb188c5a164f0864d48ed7bd01cb5fe4a497be..cdc95310eb030308ba8328a54e4b1e26e34c78f3 100644
--- a/doc/doxygen/CMakeLists.txt
+++ b/doc/doxygen/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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.0.0
+# @version 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
diff --git a/doc/doxygen/conf.dox.in b/doc/doxygen/conf.dox.in
index e5a2c512de7125bd77b03355a892eb475dec9458..76f34f393fc38b2f477c1907fa5cb8e92b1422e6 100644
--- a/doc/doxygen/conf.dox.in
+++ b/doc/doxygen/conf.dox.in
@@ -31,7 +31,7 @@ PROJECT_NAME           = CHAMELEON
 # This could be handy for archiving the generated documentation or
 # if some version control system is used.
 
-PROJECT_NUMBER         = @CHAMELEON_VERSION_NUMBER@
+PROJECT_NUMBER         = @CHAMELEON_VERSION_MAJOR@.@CHAMELEON_VERSION_MINOR@.@CHAMELEON_VERSION_MICRO@
 
 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
 # base path where the generated documentation will be put.
@@ -584,9 +584,9 @@ WARN_LOGFILE           =
 INPUT                  =  @CMAKE_CURRENT_SOURCE_DIR@/main.dox                     \
                           @CMAKE_CURRENT_SOURCE_DIR@/../../include                \
                           @CMAKE_CURRENT_SOURCE_DIR@/../../compute                \
-                          @CMAKE_CURRENT_SOURCE_DIR@/../../coreblas               \
-                          @CMAKE_CURRENT_SOURCE_DIR@/../../cudablas               \
                           @CMAKE_CURRENT_SOURCE_DIR@/../../control
+#                          @CMAKE_CURRENT_SOURCE_DIR@/../../coreblas               \
+#                          @CMAKE_CURRENT_SOURCE_DIR@/../../cudablas               \
 #                         @CMAKE_CURRENT_SOURCE_DIR@/../../runtime
 #                          @CMAKE_CURRENT_BINARY_DIR@/../../include                \
 #                          @CMAKE_CURRENT_BINARY_DIR@/../../compute                \
@@ -633,7 +633,7 @@ EXCLUDE_SYMLINKS       = NO
 # against the file with absolute path, so to exclude all test directories
 # for example use the pattern */test/*
 
-EXCLUDE_PATTERNS       = 
+EXCLUDE_PATTERNS       =
 
 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
 # (namespaces, classes, functions, etc.) that should be excluded from the
@@ -888,17 +888,17 @@ DOCSET_FEEDNAME        = "Doxygen generated docs"
 # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen
 # will append .docset to the name.
 
-DOCSET_BUNDLE_ID       = edu.utk.cs.icl.plasma
+DOCSET_BUNDLE_ID       = fr.inria.chameleon
 
 # When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify
 # the documentation publisher. This should be a reverse domain-name style
 # string, e.g. com.mycompany.MyDocSet.documentation.
 
-DOCSET_PUBLISHER_ID    = edu.utk.cs.icl.plasma
+DOCSET_PUBLISHER_ID    = fr.inria.chameleon
 
 # The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher.
 
-DOCSET_PUBLISHER_NAME  = University of Tennesse, Innovative Computing Laboratory 
+DOCSET_PUBLISHER_NAME  = Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux, ICL, KAUST.
 
 # If the GENERATE_HTMLHELP tag is set to YES, additional index files
 # will be generated that can be used as input for tools like the
diff --git a/doc/doxygen/main.dox b/doc/doxygen/main.dox
index caf30f25e1f04468933ce02878faa538af448806..4db1bf4667957e092250e0186c12189693882ef6 100644
--- a/doc/doxygen/main.dox
+++ b/doc/doxygen/main.dox
@@ -1,28 +1,125 @@
 /*!
+
 @mainpage Chameleon, a dense linear algebra library for scalable multi-core architectures and GPGPUs
 
-This document aims at describing Chameleon's API and internal functions.
+This document aims at describing Chameleon's API, internal functions,
+as well as the source code organization.
 
-To get information about the Chameleon project, installation guide and usage examples please refer to the [user's guide](https://solverstack.gitlabpages.inria.fr/chameleon/users_guide.html).
+To get information about the Chameleon project, installation guide and
+usage examples please refer to the [user's
+guide](https://solverstack.gitlabpages.inria.fr/chameleon/users_guide.html).
 
-Chameleon user's API is mostly composed of linear algebra routines of the form **CHAMELEON_name[_Tile[_Async]]**
-where *name* follows the [LAPACK naming scheme](http://www.netlib.org/lapack/lug/node24.html) that can
-be used with the Chameleon library. These routines are described individually in the section \ref sec_linalg.
+Chameleon user's API is mostly composed of linear algebra routines of
+the form **CHAMELEON_name[_Tile[_Async]]** where *name* follows the
+[LAPACK naming scheme](http://www.netlib.org/lapack/lug/node24.html)
+that can be used with the Chameleon library. These routines are
+described individually in the section \ref sec_linalg.
 
-In addition to the algorithmic routines Chameleon provides a set of functions to control the overall process, see \ref sec_auxiliary
+In addition to the algorithmic routines Chameleon provides a set of
+functions to control the overall process, see \ref sec_auxiliary
 
 @section sec_linalg Linear algebra routines
-- @ref CHAMELEON_Complex64_t "LAPACK matrix layout" : the simplest Chameleon interface which is equivalent to CBLAS/LAPACKE
-- @ref CHAMELEON_Complex64_t_Tile "Tile matrix layout" : the interface to be use with **Descriptors**, the Chameleon specific structure to handle the data as a set of tiles, see \ref Descriptor and \ref Tile
-- @ref CHAMELEON_Complex64_t_Tile_Async "Tile matrix layout, asynchronous interface" : same as the tile interface but without waiting for the termination of tasks, see \ref Sequences
+
+- @ref CHAMELEON_Complex64_t "LAPACK matrix layout" : the simplest
+  Chameleon interface which is equivalent to CBLAS/LAPACKE
+
+- @ref CHAMELEON_Complex64_t_Tile "Tile matrix layout" : interface to
+  be used with **Descriptors**, the Chameleon specific structure to
+  handle the data as a set of tiles, see \ref Descriptor and \ref Tile
+
+- @ref CHAMELEON_Complex64_t_Tile_Async "Tile matrix layout, asynchronous interface" :
+  same as the tile interface but without waiting for the termination of
+  tasks, see \ref Sequences
 
 @section sec_auxiliary Auxiliary and control routines
-- @ref Control : to initialize/finalize Chameleon, functions that must be called to use any routines, pause/resume task executions, etc
-- @ref Options : to set/get some parameters such as the number of CPUs and GPUs to use
-- @ref Descriptor : to handle the data structure used with the **Tile** interface
-- @ref Tile : to convert (copy) LAPACK type data into *Descriptor* one and conversely
-- @ref Sequences : to handle asynchronous tasks execution, to be used with the **Tile_Async** interface
-- @ref Workspace : to handle specific workspace to be used with some of the algorithms
-- @ref Auxiliary : to get some extra information such as the version, the data byte size, the mpi rank
+
+- @ref Control : to initialize/finalize Chameleon, functions that must
+  be called to use any routines, pause/resume task executions, etc
+
+- @ref Options : to set/get some parameters such as the number of CPUs
+  and GPUs to use
+
+- @ref Descriptor : to handle the data structure used with the
+  **Tile** interface
+
+- @ref Tile : to convert (copy) LAPACK type data into *Descriptor* one
+  and conversely
+
+- @ref Sequences : to handle asynchronous tasks execution, to be used
+  with the **Tile_Async** interface
+
+- @ref Workspace : to handle specific workspace to be used with some
+  of the algorithms
+
+- @ref Auxiliary : to get some extra information such as the version,
+  the data byte size, the mpi rank
+
+
+@section sec_src_code_structure Libraries and source code organization
+
+Chameleon's project is made of some C libraries and executables whose
+compilation is optional (examples, testing and timing).
+
+The libraries are organized as follows :
+
+- __chameleon__ : user's API and task based algorithms, depends on
+  "chameleon_quark|openmp|parsec|starpu", "coreblas", "hqr"
+
+- __chameleon_quark|openmp|parsec|starpu__ : interface to the
+  different runtimes, depends on "coreblas" and optionally on
+  "cudablas" and on a runtime system library
+
+- __coreblas__ and __cudablas__ : interfaces to the CPU and GPU
+  kernels
+
+- __hqr__ : HQR is a C library providing tools to generate hierachical
+  trees adapted to 2D block-cyclic data distribution and algorithms
+  based on tiled QR/algorithms
+
+Lets have a look to the source code organization in directories.
+
+- __cmake_modules__ : CMakes scripts for setting
+  variables. [morse_cmake](https://gitlab.inria.fr/solverstack/morse_cmake)
+  is used for system introspection.
+
+- __compute__ : the task based algorithms as well as the different
+  interfaces (Lapack, Tile, Async) to call them
+
+- __control__ : some Chameleon general routines to control the library,
+  initialize, finalize, set options, descriptors and sequences handling,
+  etc
+
+- __coreblas__ : the Chameleon interface to CPU linear algebra kernels
+
+- __cudablas__ : the Chameleon interface to GPU linear algebra kernels
+
+- __distrib__ : some hints to install Chameleon's dependencies
+
+- __doc__ : users and developers documentations
+
+- __example__ : couple of C files to show how to use Chameleon
+
+- __hqr__ : [HQR](https://gitlab.inria.fr/solverstack/hqr) is a C
+library providing tools to generate hierachical trees adapted to 2D
+block-cyclic data distribution and algorithms based on tiled
+QR/algorithms
+
+- __include__ : Chameleon's headers file necessary for users
+
+- __lib__ : material related to the distribution
+
+- __plasma-conversion__ : scripts to convert plasma task based
+algorithms into chameleon's ones
+
+- __runtime__ : interfaces to runtime systems
+
+- __simucore__ : data to be able to simulate chameleon executions
+  through StarPU+SimGrid
+
+- __testing__ : source files for testing executables (test features)
+
+- __timing__ : source files for timing executables (test performances)
+
+- __tools__ : other scripts for testing (software development quality)
 
 */
diff --git a/doc/orgmode/CMakeLists.txt b/doc/orgmode/CMakeLists.txt
index aad5ddff9b4eba73a03be6038118485d78dfea38..c733b5cae5b9c73a0e6738a4c588d3ce00822483 100644
--- a/doc/orgmode/CMakeLists.txt
+++ b/doc/orgmode/CMakeLists.txt
@@ -14,7 +14,7 @@
 #     Univ. of California Berkeley,
 #     Univ. of Colorado Denver.
 #
-# @version 1.0.0
+# @version 0.9.2
 #  @author Florent Pruvost
 #  @date 2017-08-25
 #
@@ -62,7 +62,7 @@ FIND_PROGRAM(TEX_COMPILER tex)
 
 if(EMACS_COMPILER)
 
-    # css direcory is required for the html output
+    # css directory is required for the html output
     add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/css
                        COMMAND ${CMAKE_COMMAND} -E copy_directory
                                ${CMAKE_CURRENT_SOURCE_DIR}/css
@@ -80,8 +80,7 @@ if(EMACS_COMPILER)
                                --kill
                        DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/users_guide.org
                                ${CMAKE_CURRENT_BINARY_DIR}/version.org
-                               ${CMAKE_CURRENT_BINARY_DIR}/css
-                      )
+                               ${CMAKE_CURRENT_BINARY_DIR}/css)
     add_custom_command(OUTPUT  users_guide.pdf
                        COMMAND ${EMACS_COMPILER}
                        ARGS    ${CMAKE_CURRENT_BINARY_DIR}/users_guide.org
@@ -90,8 +89,8 @@ if(EMACS_COMPILER)
                                org-latex-export-to-pdf
                                --kill
                        DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/users_guide.org
-                               ${CMAKE_CURRENT_BINARY_DIR}/version.org
-                      )
+                               ${CMAKE_CURRENT_BINARY_DIR}/version.org)
+
     add_custom_target(doc-html-users_guide ALL DEPENDS users_guide.html)
     add_custom_target(doc-pdf-users_guide ALL DEPENDS users_guide.pdf)
 
diff --git a/doc/orgmode/chapters/installing.org b/doc/orgmode/chapters/installing.org
index 18573d68ed92c6b9bd3b012f516fa26f0eb78bfd..0193d3dad35dae37ce151690ddb83532ebda5a0a 100644
--- a/doc/orgmode/chapters/installing.org
+++ b/doc/orgmode/chapters/installing.org
@@ -34,10 +34,10 @@ we encourage users to use [[sec:spack][Spack]].
    - python: to generate files in the different precisions
    - external libraries: this depends on the configuration, by default
      the required libraries are
-     - runtimes:  [[http://runtime.bordeaux.inria.fr/StarPU/][StarPU]] or [[http://icl.utk.edu/parsec/][PaRSEC]] or [[http://icl.cs.utk.edu/quark/][QUARK]]
-     - kernels : CBLAS, LAPACKE. These are C interfaces to Fortran
-       kernels BLAS and LAPACK. There exist several providers that can
-       be used with Chameleon (Intel MKL, Netlib, OpenBlas)
+     - runtimes: [[http://runtime.bordeaux.inria.fr/StarPU/][StarPU]] or [[http://icl.utk.edu/parsec/][PaRSEC]] or [[http://icl.cs.utk.edu/quark/][QUARK]] or [[https://www.openmp.org/][OpenMP]]
+     - kernels : CBLAS, LAPACKE (with TMG). These are C interfaces to
+       Fortran kernels BLAS and LAPACK. There exist several providers
+       that can be used with Chameleon (Intel MKL, Netlib, OpenBlas)
 
    Optional libraries:
    - cuda: [[https://developer.nvidia.com/cuda-downloads][cuda]], [[http://docs.nvidia.com/cuda/cublas/][cublas]] (comes with cuda)
@@ -100,7 +100,16 @@ we encourage users to use [[sec:spack][Spack]].
    sudo make install
 
    #+end_src
-
+*** Known issues
+    1) we need the lapacke interface to tmg routines and symbol like
+       ~LAPACKE_dlatms_work~ should be defined in the lapacke
+       library. The Debian packages /libopenblas-dev/ and /liblapacke-dev/
+       (version 3.7.1) do not provide the tmg interface. Please update
+       your distribution or install the lapacke interface library in
+       another way, by yourself from source or with [[https://gitlab.inria.fr/solverstack/spack-repo][Spack]], ...
+    2) sometimes parallel make with -j can fails due to undefined
+       dependencies between some targets. Try to invoke the make
+       command several times if so.
 *** Some details about dependencies
 **** BLAS implementation
      [[http://www.netlib.org/blas/][BLAS]] (Basic Linear Algebra Subprograms), are a de facto standard
@@ -150,7 +159,10 @@ we encourage users to use [[sec:spack][Spack]].
      convenient.
 
      *Caution about the compatibility:* Chameleon has been mainly tested
-     with the reference LAPACKE from NETLIB, OpenBLAS and Intel MKL.
+     with the reference LAPACKE from NETLIB, OpenBLAS and Intel
+     MKL. In addition the LAPACKE library *must* be configured to
+     provide the interface with the TMG routines and symbols like
+     ~LAPACKE_dlatms_work~ should be defined.
 
 **** libtmg
      [[http://www.netlib.org/lapack/][libtmg]] is a component of the LAPACK library, containing routines
@@ -351,7 +363,7 @@ we encourage users to use [[sec:spack][Spack]].
          *SIMGRID*, *TMG*
 
      Libraries detected with an official cmake module (see module files
-     in CMAKE_ROOT/Modules/): CUDA - MPI - Threads.
+     in CMAKE_ROOT/Modules/): CUDA - MPI - OpenMP - Threads.
 
      Libraries detected with our cmake modules (see module files in
      cmake_modules/morse_cmake/modules/find/ directory of Chameleon
@@ -359,8 +371,9 @@ we encourage users to use [[sec:spack][Spack]].
      LAPACKE - QUARK - SIMGRID - STARPU - TMG.
 
 **** Chameleon specific options
-     * *CHAMELEON_SCHED=STARPU|PARSEC|QUARK* (default STARPU): to link
-       respectively with StarPU, PaRSEC, or Quark library (runtime system)
+     * *CHAMELEON_SCHED=STARPU|PARSEC|QUARK|OPENMP* (default STARPU): to
+       link respectively with StarPU, PaRSEC, Quark, OpenMP library
+       (runtime system)
      * *CHAMELEON_USE_MPI=ON|OFF* (default OFF): to link with MPI
        library (message passing implementation for use of multiple
        nodes with distributed memory), can only be used with StarPU
@@ -394,6 +407,8 @@ we encourage users to use [[sec:spack][Spack]].
        architecture. This feature should be used to make experiments
        on the scheduler behaviors and performances not to produce
        solutions of linear systems.
+     * *CHAMELEON_USE_MIGRATE=ON|OFF* (default OFF): enables the data
+       migration in QR algorithms
 
 *** Dependencies detection
     <<sec:depdet>>
@@ -441,3 +456,110 @@ we encourage users to use [[sec:spack][Spack]].
        - update your *PKG_CONFIG_PATH* to the paths where to find .pc
          files of installed external libraries like hwloc, starpu, some
          blas/lapack, etc
+
+** Linking an external application with Chameleon libraries
+   Compilation and link with Chameleon libraries have been tested with
+   the GNU compiler suite ~gcc/gfortran~ and the Intel compiler suite
+   ~icc/ifort~.
+
+*** Flags required
+    The compiler, linker flags that are necessary to build an
+    application using Chameleon are given through the [[https://www.freedesktop.org/wiki/Software/pkg-config/][pkg-config]]
+    mechanism.
+    #+begin_src
+    export PKG_CONFIG_PATH=/home/jdoe/install/chameleon/lib/pkgconfig:$PKG_CONFIG_PATH
+    pkg-config --cflags chameleon
+    pkg-config --libs chameleon
+    pkg-config --libs --static chameleon
+    #+end_src
+    The .pc files required are located in the sub-directory
+    ~lib/pkgconfig~ of your Chameleon install directory.
+*** Static linking in C
+    Lets imagine you have a file ~main.c~ that you want to link with
+    Chameleon static libraries.  Lets consider
+    ~/home/yourname/install/chameleon~ is the install directory
+    of Chameleon containing sub-directories ~include/~ and
+    ~lib/~.  Here could be your compilation command with gcc
+    compiler:
+    #+begin_src
+    gcc -I/home/yourname/install/chameleon/include -o main.o -c main.c
+    #+end_src
+    Now if you want to link your application with Chameleon static libraries, you
+    could do:
+    #+begin_src
+    gcc main.o -o main                                         \
+    /home/yourname/install/chameleon/lib/libchameleon.a        \
+    /home/yourname/install/chameleon/lib/libchameleon_starpu.a \
+    /home/yourname/install/chameleon/lib/libcoreblas.a         \
+    -lstarpu-1.2 -Wl,--no-as-needed -lmkl_intel_lp64           \
+    -lmkl_sequential -lmkl_core -lpthread -lm -lrt
+    #+end_src
+    As you can see in this example, we also link with some dynamic
+    libraries *starpu-1.2*, *Intel MKL* libraries (for
+    BLAS/LAPACK/CBLAS/LAPACKE), *pthread*, *m* (math) and *rt*. These
+    libraries will depend on the configuration of your Chameleon
+    build.  You can find these dependencies in .pc files we generate
+    during compilation and that are installed in the sub-directory
+    ~lib/pkgconfig~ of your Chameleon install directory.  Note also that
+    you could need to specify where to find these libraries with *-L*
+    option of your compiler/linker.
+
+    Before to run your program, make sure that all shared libraries
+    paths your executable depends on are known.  Enter ~ldd main~
+    to check.  If some shared libraries paths are missing append them
+    in the LD_LIBRARY_PATH (for Linux systems) environment
+    variable (DYLD_LIBRARY_PATH on Mac).
+
+*** Dynamic linking in C
+    For dynamic linking (need to build Chameleon with CMake option
+    BUILD_SHARED_LIBS=ON) it is similar to static compilation/link but
+    instead of specifying path to your static libraries you indicate
+    the path to dynamic libraries with *-L* option and you give
+    the name of libraries with *-l* option like this:
+    #+begin_src
+    gcc main.o -o main \
+    -L/home/yourname/install/chameleon/lib \
+    -lchameleon -lchameleon_starpu -lcoreblas \
+    -lstarpu-1.2 -Wl,--no-as-needed -lmkl_intel_lp64 \
+    -lmkl_sequential -lmkl_core -lpthread -lm -lrt
+    #+end_src
+    Note that an update of your environment variable LD_LIBRARY_PATH
+    (DYLD_LIBRARY_PATH on Mac) with the path of the libraries could be
+    required before executing
+    #+begin_src
+    export LD_LIBRARY_PATH=path/to/libs:path/to/chameleon/lib
+    #+end_src
+
+# # *** Build a Fortran program with Chameleon                         :noexport:
+# #
+# #     Chameleon provides a Fortran interface to user functions. Example:
+# #     #+begin_src
+# #     call chameleon_version(major, minor, patch) !or
+# #     call CHAMELEON_VERSION(major, minor, patch)
+# #     #+end_src
+# #
+# #     Build and link are very similar to the C case.
+# #
+# #     Compilation example:
+# #     #+begin_src
+# #     gfortran -o main.o -c main.f90
+# #     #+end_src
+# #
+# #     Static linking example:
+# #     #+begin_src
+# #     gfortran main.o -o main                                    \
+# #     /home/yourname/install/chameleon/lib/libchameleon.a        \
+# #     /home/yourname/install/chameleon/lib/libchameleon_starpu.a \
+# #     /home/yourname/install/chameleon/lib/libcoreblas.a         \
+# #     -lstarpu-1.2 -Wl,--no-as-needed -lmkl_intel_lp64           \
+# #     -lmkl_sequential -lmkl_core -lpthread -lm -lrt
+# #     #+end_src
+# #
+# #     Dynamic linking example:
+# #     #+begin_src
+# #     gfortran main.o -o main                          \
+# #     -L/home/yourname/install/chameleon/lib           \
+# #     -lchameleon -lchameleon_starpu -lcoreblas        \
+# #     -lstarpu-1.2 -Wl,--no-as-needed -lmkl_intel_lp64 \
+# #     -lmkl_sequential -lmkl_core -lpthread -lm -lrt
+# #     #+end_src
diff --git a/doc/orgmode/chapters/using.org b/doc/orgmode/chapters/using.org
index 26ecd8042e62465fcfea82e5a01623d8b92cf816..fee9697b97c4a15cf3837c4404d4a2ffda459c14 100644
--- a/doc/orgmode/chapters/using.org
+++ b/doc/orgmode/chapters/using.org
@@ -1,114 +1,6 @@
 # This file is part of the Chameleon User's Guide.
 # Copyright (C) 2017 Inria
 # See the file ../users_guide.org for copying conditions.
-
-** Linking an external application with Chameleon libraries
-   Compilation and link with Chameleon libraries have been tested with
-   the GNU compiler suite ~gcc/gfortran~ and the Intel compiler suite
-   ~icc/ifort~.
-
-*** Flags required
-    The compiler, linker flags that are necessary to build an
-    application using Chameleon are given through the [[https://www.freedesktop.org/wiki/Software/pkg-config/][pkg-config]]
-    mechanism.
-    #+begin_src
-    export PKG_CONFIG_PATH=/home/jdoe/install/chameleon/lib/pkgconfig:$PKG_CONFIG_PATH
-    pkg-config --cflags chameleon
-    pkg-config --libs chameleon
-    pkg-config --libs --static chameleon
-    #+end_src
-    The .pc files required are located in the sub-directory
-    ~lib/pkgconfig~ of your Chameleon install directory.
-*** Static linking in C
-    Lets imagine you have a file ~main.c~ that you want to link with
-    Chameleon static libraries.  Lets consider
-    ~/home/yourname/install/chameleon~ is the install directory
-    of Chameleon containing sub-directories ~include/~ and
-    ~lib/~.  Here could be your compilation command with gcc
-    compiler:
-    #+begin_src
-    gcc -I/home/yourname/install/chameleon/include -o main.o -c main.c
-    #+end_src
-    Now if you want to link your application with Chameleon static libraries, you
-    could do:
-    #+begin_src
-    gcc main.o -o main                                         \
-    /home/yourname/install/chameleon/lib/libchameleon.a        \
-    /home/yourname/install/chameleon/lib/libchameleon_starpu.a \
-    /home/yourname/install/chameleon/lib/libcoreblas.a         \
-    -lstarpu-1.2 -Wl,--no-as-needed -lmkl_intel_lp64           \
-    -lmkl_sequential -lmkl_core -lpthread -lm -lrt
-    #+end_src
-    As you can see in this example, we also link with some dynamic
-    libraries *starpu-1.2*, *Intel MKL* libraries (for
-    BLAS/LAPACK/CBLAS/LAPACKE), *pthread*, *m* (math) and *rt*. These
-    libraries will depend on the configuration of your Chameleon
-    build.  You can find these dependencies in .pc files we generate
-    during compilation and that are installed in the sub-directory
-    ~lib/pkgconfig~ of your Chameleon install directory.  Note also that
-    you could need to specify where to find these libraries with *-L*
-    option of your compiler/linker.
-
-    Before to run your program, make sure that all shared libraries
-    paths your executable depends on are known.  Enter ~ldd main~
-    to check.  If some shared libraries paths are missing append them
-    in the LD_LIBRARY_PATH (for Linux systems) environment
-    variable (DYLD_LIBRARY_PATH on Mac).
-
-*** Dynamic linking in C
-    For dynamic linking (need to build Chameleon with CMake option
-    BUILD_SHARED_LIBS=ON) it is similar to static compilation/link but
-    instead of specifying path to your static libraries you indicate
-    the path to dynamic libraries with *-L* option and you give
-    the name of libraries with *-l* option like this:
-    #+begin_src
-    gcc main.o -o main \
-    -L/home/yourname/install/chameleon/lib \
-    -lchameleon -lchameleon_starpu -lcoreblas \
-    -lstarpu-1.2 -Wl,--no-as-needed -lmkl_intel_lp64 \
-    -lmkl_sequential -lmkl_core -lpthread -lm -lrt
-    #+end_src
-    Note that an update of your environment variable LD_LIBRARY_PATH
-    (DYLD_LIBRARY_PATH on Mac) with the path of the libraries could be
-    required before executing
-    #+begin_src
-    export LD_LIBRARY_PATH=path/to/libs:path/to/chameleon/lib
-    #+end_src
-
-# # *** Build a Fortran program with Chameleon                         :noexport:
-# #
-# #     Chameleon provides a Fortran interface to user functions. Example:
-# #     #+begin_src
-# #     call chameleon_version(major, minor, patch) !or
-# #     call CHAMELEON_VERSION(major, minor, patch)
-# #     #+end_src
-# #
-# #     Build and link are very similar to the C case.
-# #
-# #     Compilation example:
-# #     #+begin_src
-# #     gfortran -o main.o -c main.f90
-# #     #+end_src
-# #
-# #     Static linking example:
-# #     #+begin_src
-# #     gfortran main.o -o main                                    \
-# #     /home/yourname/install/chameleon/lib/libchameleon.a        \
-# #     /home/yourname/install/chameleon/lib/libchameleon_starpu.a \
-# #     /home/yourname/install/chameleon/lib/libcoreblas.a         \
-# #     -lstarpu-1.2 -Wl,--no-as-needed -lmkl_intel_lp64           \
-# #     -lmkl_sequential -lmkl_core -lpthread -lm -lrt
-# #     #+end_src
-# #
-# #     Dynamic linking example:
-# #     #+begin_src
-# #     gfortran main.o -o main                          \
-# #     -L/home/yourname/install/chameleon/lib           \
-# #     -lchameleon -lchameleon_starpu -lcoreblas        \
-# #     -lstarpu-1.2 -Wl,--no-as-needed -lmkl_intel_lp64 \
-# #     -lmkl_sequential -lmkl_core -lpthread -lm -lrt
-# #     #+end_src
-
 ** Using Chameleon executables
 
    Chameleon provides several test executables that are compiled and
diff --git a/doc/orgmode/css/VisuGen.css b/doc/orgmode/css/VisuGen.css
deleted file mode 100644
index e446f1f546974e0b7f28d4aab2337c316d91e358..0000000000000000000000000000000000000000
--- a/doc/orgmode/css/VisuGen.css
+++ /dev/null
@@ -1,208 +0,0 @@
-HTML, BODY, A, TABLE, TR, TD, FORM, INPUT, SELECT, TEXTAREA, DIV, P, SPAN, H1, H2, H3, H4, H5, B, UL, LI, DD, DL, DT {
-
-	font-family: sans-serif, Times, "Times New Roman";
-
-}
-
-BODY {
-	margin: auto;
-	border: 0px;
-	padding: 0px;
-	background-color: rgb(250, 250, 250);
-	color: black;
-	font-size: 14px;
-}
-
-/* classe css de la page*/
-#res_script{
-	border:0px solid black;
-	width:99%;
-	font-size:1.2em;
-	text-align:left;
-	color:black;
-	background-color:white;
-}
-
-/* Titre avec le résumé de la requete, le nb de publis, ...*/
-div.ZoneTitreResultat
-{
-	padding-left:10px;
-	width:95%;
-}
-.TitreResultats{
-	color:#363842;
-	font-size: 1.4em;
-	font-weight: bold;
-}
-.SousTitreResultats {
-	margin: 0px 0px 40px;
-	font-size: 1.1em;
-	color:#363842;
-    }
-/* Zone pour afficher un message d'erreur*/
-div.ZoneTitreErreur
-{
-	padding-left:10px;
-	width:95%;
-}
- /*Libelle du nombre de publications affichées*/
-.LibelleNbPubli {
-	margin: 0px 0px 40px;
-	font-size: 1.1em;
-	color:#363842;
-	font-weight: bold;
-}
- /*valeur du nombre de publications affichées*/
-.ValeurNbPubli {
-	margin: 0px 0px 40px;
-	font-size: 1.1em;
-	color:#363842;
- }
-
-/* classes pour les rubriques pour certains type de classement (type de publi, année de publi) */
-.Rubrique{
-	border: 0;
-	color:#58529f;
-	margin-left:0.2em;
-	margin-bottom:0.2em;
-  font-weight:bold;
-	font-size:1.4em;
-}
-.SousRubrique{
-	color:#58529f;
-  font-weight:bold;
-	margin-left:0.4em;
-	font-size:1.2em;
-}
-
-/* Classe le dl qui contient chaque publication */
-.NoticeRes {
-	border: 0;
-	padding-bottom: 0.5em;
-	margin:0 0 1em;
-}
-.NoticeResAvecVignette {
-	border: 0;
-	padding-bottom: 0.5em;
-	min-height:100px;
-}
-
-/*classe dt qui permmettent d'afficher les noms des champs */
-.ChampRes {
-	clear:both;
-	float:left;
-	text-align:left;
-	font-size:0.9em;
-	font-weight:bold;
-	width: 23%;
-	margin-left:1em;
-	margin-bottom: 0em;
-	margin-top: 0em;
-	padding: 0em;
-}
-.ChampResAvecVignette {
-	display:none;
-width: 15%;
-	text-align:left;
-	font-size:0.9em;
-	color:#58529F;
-	font-weight:bold;
-	margin-bottom: 0em;
-	margin-top: 0em;
-	padding: 0em;
-	margin-left:120px;
-}
-
-
-/* classes dd pour l'affichage de la valeur des champs
-/* Nom du champ : titre, auteur, detail, acces au texte integral...
- - pratique pour connaitre le nom du champ et la classe css associée
- - ne fonctionne pas si on affiche les vignettes */
-
-/* Classe commune à  tous les champs affichés */
-.ValeurRes {
-	margin-left:25%;
-	margin-bottom: 0em;
-	margin-top: 0em;
-	padding: 0em;
-	text-align:left;
-	font-size: 0.9em;
-	font-size: 1em;
-}
-.ValeurRes a{
-	color:black;
-	text-decoration:underline;
-	font-size: 1em;
-}
-/* quand il y a affichage de vignette */
-.ValeurResAvecVignette {
-	margin-left:120px;
-	margin-bottom: 0em;
-	margin-top: 0em;
-	padding: 0em;
-	text-align:left;
-	font-size: 0.9em;
-	font-size: 1em;
-}
-.ValeurResAvecVignette a{
-	color:black;
-	text-decoration:underline;
-	font-size: 1em;
-}
-
-
-/* classe pour les auteurs */
-.Auteurs {
-}
-/* classe pour les titres */
-.Titre {
-   font-weight:bold;
-}
-/* classe pour les identifiants */
-.Identifiant {
-}
-/* classe des détails de publication : une classe par type */
-.detail_revue,.detail_conf,.detail_cours,.detail_ouv,.detail_hdr,.detail_these,.detail_autre,.detail_brevet,.detail_rapport,.detail_sans_ref{
-}
-/* classe pour les doi */
-.DOI{
-}
-/* classe pour les résumés */
-.Debut_du_resume{
-}
-/* classe pour le type de document */
-.Type_de_document{
-}
-/* classe pour l'audience */
-.Audience{
-}
-/* affichage des vignettes*/
-.Vignette {
-  float: left;
-  clear:left;
-  padding-right:0em;
-  margin-left:0.5em;
-  }
-.VignetteImg {
-	width: auto;
-	height: auto;
-}
-
-/*affichage des fichiers joints*/
-.Fichier_joint a{
-    text-decoration:none;
-}
-
-/*lien vers le bibtex*/
-.LienBibtex{
-}
-.LienBibtexACoteFulltext{
-margin-left:1em;
-}
-/*mois de la conférence*/
-.MoisConf{
-}
-
-.ref_biblio_hal a{
-	text-decoration:none;
-}
diff --git a/doc/orgmode/css/VisuRubriqueEncadre.css b/doc/orgmode/css/VisuRubriqueEncadre.css
deleted file mode 100644
index 022ce8d7f9958d02f9cfed73e8690e761aeaeec8..0000000000000000000000000000000000000000
--- a/doc/orgmode/css/VisuRubriqueEncadre.css
+++ /dev/null
@@ -1,70 +0,0 @@
-
-/* classe css de la page*/
-#res_script{
-	border:0;
-	background-color:white;
-	color:black;
-}
-
-/*Titre*/
-div.ZoneTitreResultat
-{
-	display:none;
-}
-/* classe pour les rubriques pour certains type de classement (type de publi, année de publi) */ 
-.Rubrique{
-/*	position: relative;*/
-	font-size:x-large;
-	color:#446;
-	letter-spacing:2px;
-	font-weight:bold;
-	background:#CCC;
-	text-align:left;
-	border: solid 1px #558;
-	padding: 3px 0px 2px 10px;
-	margin-top: 5px;
-	margin-bottom: 12px;
-}
-.SousRubrique{
-  font-weight:bold;
-	margin-left:10px;
-	font-size:1.3em;
-}
-
-
-/*nom du champ*/
-.ChampRes {
-	display:none;
-}
-
-/* classe commune à tous les champs affichés */ 
-.ValeurRes {
-	color:black;
-  margin-left:1em;
-}
-/* classe pour les auteurs */ 
-.Auteurs {
-}
-/* classe pour les titres */ 
-.Titre, .Titre a {
-   font-weight:bold;
-	color:#58529F;
-}
-/* classe pour les identifiants */ 
-.Identifiant {
-}
-/* classe des détails de publication : une classe par type */ 
-.detail_revue,.detail_conf,.detail_cours,.detail_ouv,.detail_hdr,.detail_these,.detail_autre,.detail_brevet,.detail_rapport,.detail_sans_ref{
-}
-/* classe pour les doi */ 
-.DOI{
-}
-/* classe pour les résumés */ 
-.Debut_du_resume{
-}
-/* classe pour le type de document */ 
-.Type_de_document{
-}
-/* classe pour l'audience */ 
-.Audience{
-}
diff --git a/doc/orgmode/css/htmlize.css b/doc/orgmode/css/htmlize.css
new file mode 100644
index 0000000000000000000000000000000000000000..0b32a030ab7f1acee1dfcd3952a90ceb070a74b6
--- /dev/null
+++ b/doc/orgmode/css/htmlize.css
@@ -0,0 +1,145 @@
+.org-bold { /* bold */ font-weight: bold; }
+.org-bold-italic { /* bold-italic */ font-weight: bold; font-style: italic; }
+.org-buffer-menu-buffer { /* buffer-menu-buffer */ font-weight: bold; }
+.org-builtin { /* font-lock-builtin-face */ color: #7a378b; }
+.org-button { /* button */ text-decoration: underline; }
+.org-calendar-today { /* calendar-today */ text-decoration: underline; }
+.org-change-log-acknowledgement { /* change-log-acknowledgement */ color: #b22222; }
+.org-change-log-conditionals { /* change-log-conditionals */ color: #a0522d; }
+.org-change-log-date { /* change-log-date */ color: #8b2252; }
+.org-change-log-email { /* change-log-email */ color: #a0522d; }
+.org-change-log-file { /* change-log-file */ color: #0000ff; }
+.org-change-log-function { /* change-log-function */ color: #a0522d; }
+.org-change-log-list { /* change-log-list */ color: #a020f0; }
+.org-change-log-name { /* change-log-name */ color: #008b8b; }
+.org-comint-highlight-input { /* comint-highlight-input */ font-weight: bold; }
+.org-comint-highlight-prompt { /* comint-highlight-prompt */ color: #00008b; }
+.org-comment { /* font-lock-comment-face */ color: #999988; font-style: italic; }
+.org-comment-delimiter { /* font-lock-comment-delimiter-face */ color: #999988; font-style: italic; }
+.org-completions-annotations { /* completions-annotations */ font-style: italic; }
+.org-completions-common-part { /* completions-common-part */ color: #000000; background-color: #ffffff; }
+.org-completions-first-difference { /* completions-first-difference */ font-weight: bold; }
+.org-constant { /* font-lock-constant-face */ color: #008b8b; }
+.org-diary { /* diary */ color: #ff0000; }
+.org-diff-context { /* diff-context */ color: #7f7f7f; }
+.org-diff-file-header { /* diff-file-header */ background-color: #b3b3b3; font-weight: bold; }
+.org-diff-function { /* diff-function */ background-color: #cccccc; }
+.org-diff-header { /* diff-header */ background-color: #cccccc; }
+.org-diff-hunk-header { /* diff-hunk-header */ background-color: #cccccc; }
+.org-diff-index { /* diff-index */ background-color: #b3b3b3; font-weight: bold; }
+.org-diff-nonexistent { /* diff-nonexistent */ background-color: #b3b3b3; font-weight: bold; }
+.org-diff-refine-change { /* diff-refine-change */ background-color: #d9d9d9; }
+.org-dired-directory { /* dired-directory */ color: #0000ff; }
+.org-dired-flagged { /* dired-flagged */ color: #ff0000; font-weight: bold; }
+.org-dired-header { /* dired-header */ color: #228b22; }
+.org-dired-ignored { /* dired-ignored */ color: #7f7f7f; }
+.org-dired-mark { /* dired-mark */ color: #008b8b; }
+.org-dired-marked { /* dired-marked */ color: #ff0000; font-weight: bold; }
+.org-dired-perm-write { /* dired-perm-write */ color: #b22222; }
+.org-dired-symlink { /* dired-symlink */ color: #a020f0; }
+.org-dired-warning { /* dired-warning */ color: #ff0000; font-weight: bold; }
+.org-doc { /* font-lock-doc-face */ color: #8b2252; }
+.org-escape-glyph { /* escape-glyph */ color: #a52a2a; }
+.org-file-name-shadow { /* file-name-shadow */ color: #7f7f7f; }
+.org-flyspell-duplicate { /* flyspell-duplicate */ color: #cdad00; font-weight: bold; text-decoration: underline; }
+.org-flyspell-incorrect { /* flyspell-incorrect */ color: #ff4500; font-weight: bold; text-decoration: underline; }
+.org-fringe { /* fringe */ background-color: #f2f2f2; }
+.org-function-name { /* font-lock-function-name-face */ color: teal; }
+.org-header-line { /* header-line */ color: #333333; background-color: #e5e5e5; }
+.org-help-argument-name { /* help-argument-name */ font-style: italic; }
+.org-highlight { /* highlight */ background-color: #b4eeb4; }
+.org-holiday { /* holiday */ background-color: #ffc0cb; }
+.org-isearch { /* isearch */ color: #b0e2ff; background-color: #cd00cd; }
+.org-isearch-fail { /* isearch-fail */ background-color: #ffc1c1; }
+.org-italic { /* italic */ font-style: italic; }
+.org-keyword { /* font-lock-keyword-face */ color: #0086b3; }
+.org-lazy-highlight { /* lazy-highlight */ background-color: #afeeee; }
+.org-link { /* link */ color: #0000ff; text-decoration: underline; }
+.org-link-visited { /* link-visited */ color: #8b008b; text-decoration: underline; }
+.org-log-edit-header { /* log-edit-header */ color: #a020f0; }
+.org-log-edit-summary { /* log-edit-summary */ color: #0000ff; }
+.org-log-edit-unknown-header { /* log-edit-unknown-header */ color: #b22222; }
+.org-match { /* match */ background-color: #ffff00; }
+.org-next-error { /* next-error */ background-color: #eedc82; }
+.org-nobreak-space { /* nobreak-space */ color: #a52a2a; text-decoration: underline; }
+.org-org-archived { /* org-archived */ color: #7f7f7f; }
+.org-org-block { /* org-block */ color: #7f7f7f; }
+.org-org-block-begin-line { /* org-block-begin-line */ color: #b22222; }
+.org-org-block-end-line { /* org-block-end-line */ color: #b22222; }
+.org-org-checkbox { /* org-checkbox */ font-weight: bold; }
+.org-org-checkbox-statistics-done { /* org-checkbox-statistics-done */ color: #228b22; font-weight: bold; }
+.org-org-checkbox-statistics-todo { /* org-checkbox-statistics-todo */ color: #ff0000; font-weight: bold; }
+.org-org-clock-overlay { /* org-clock-overlay */ background-color: #ffff00; }
+.org-org-code { /* org-code */ color: #7f7f7f; }
+.org-org-column { /* org-column */ background-color: #e5e5e5; }
+.org-org-column-title { /* org-column-title */ background-color: #e5e5e5; font-weight: bold; text-decoration: underline; }
+.org-org-date { /* org-date */ color: #a020f0; text-decoration: underline; }
+.org-org-document-info { /* org-document-info */ color: #191970; }
+.org-org-document-info-keyword { /* org-document-info-keyword */ color: #7f7f7f; }
+.org-org-document-title { /* org-document-title */ color: #191970; font-size: 144%; font-weight: bold; }
+.org-org-done { /* org-done */ color: #228b22; font-weight: bold; }
+.org-org-drawer { /* org-drawer */ color: #0000ff; }
+.org-org-ellipsis { /* org-ellipsis */ color: #b8860b; text-decoration: underline; }
+.org-org-footnote { /* org-footnote */ color: #a020f0; text-decoration: underline; }
+.org-org-formula { /* org-formula */ color: #b22222; }
+.org-org-headline-done { /* org-headline-done */ color: #bc8f8f; }
+.org-org-hide { /* org-hide */ color: #ffffff; }
+.org-org-latex-and-export-specials { /* org-latex-and-export-specials */ color: #8b4513; }
+.org-org-level-1 { /* org-level-1 */ color: #0000ff; }
+.org-org-level-2 { /* org-level-2 */ color: #a0522d; }
+.org-org-level-3 { /* org-level-3 */ color: #a020f0; }
+.org-org-level-4 { /* org-level-4 */ color: #b22222; }
+.org-org-level-5 { /* org-level-5 */ color: #228b22; }
+.org-org-level-6 { /* org-level-6 */ color: #008b8b; }
+.org-org-level-7 { /* org-level-7 */ color: #7a378b; }
+.org-org-level-8 { /* org-level-8 */ color: #8b2252; }
+.org-org-link { /* org-link */ color: #0000ff; text-decoration: underline; }
+.org-org-meta-line { /* org-meta-line */ color: #b22222; }
+.org-org-mode-line-clock { /* org-mode-line-clock */ color: #000000; background-color: #bfbfbf; }
+.org-org-mode-line-clock-overrun { /* org-mode-line-clock-overrun */ color: #000000; background-color: #ff0000; }
+.org-org-quote { /* org-quote */ color: #7f7f7f; }
+.org-org-scheduled { /* org-scheduled */ color: #006400; }
+.org-org-scheduled-previously { /* org-scheduled-previously */ color: #b22222; }
+.org-org-scheduled-today { /* org-scheduled-today */ color: #006400; }
+.org-org-sexp-date { /* org-sexp-date */ color: #a020f0; }
+.org-org-special-keyword { /* org-special-keyword */ color: #a020f0; }
+.org-org-table { /* org-table */ color: #0000ff; }
+.org-org-tag { /* org-tag */ font-weight: bold; }
+.org-org-target { /* org-target */ text-decoration: underline; }
+.org-org-time-grid { /* org-time-grid */ color: #b8860b; }
+.org-org-todo { /* org-todo */ color: #ff0000; font-weight: bold; }
+.org-org-upcoming-deadline { /* org-upcoming-deadline */ color: #b22222; }
+.org-org-verbatim { /* org-verbatim */ color: #7f7f7f; }
+.org-org-verse { /* org-verse */ color: #7f7f7f; }
+.org-org-warning { /* org-warning */ color: #ff0000; font-weight: bold; }
+.org-outline-1 { /* outline-1 */ color: #0000ff; }
+.org-outline-2 { /* outline-2 */ color: #a0522d; }
+.org-outline-3 { /* outline-3 */ color: #a020f0; }
+.org-outline-4 { /* outline-4 */ color: #b22222; }
+.org-outline-5 { /* outline-5 */ color: #228b22; }
+.org-outline-6 { /* outline-6 */ color: #008b8b; }
+.org-outline-7 { /* outline-7 */ color: #7a378b; }
+.org-outline-8 { /* outline-8 */ color: #8b2252; }
+.org-preprocessor { /* font-lock-preprocessor-face */ color: #7a378b; }
+.org-query-replace { /* query-replace */ color: #b0e2ff; background-color: #cd00cd; }
+.org-regexp-grouping-backslash { /* font-lock-regexp-grouping-backslash */ font-weight: bold; }
+.org-regexp-grouping-construct { /* font-lock-regexp-grouping-construct */ font-weight: bold; }
+.org-region { /* region */ background-color: #eedc82; }
+.org-secondary-selection { /* secondary-selection */ background-color: #ffff00; }
+.org-shadow { /* shadow */ color: #7f7f7f; }
+.org-show-paren-match { /* show-paren-match */ background-color: #40e0d0; }
+.org-show-paren-mismatch { /* show-paren-mismatch */ color: #ffffff; background-color: #a020f0; }
+.org-string { /* font-lock-string-face */ color: #dd1144; }
+.org-tool-bar { /* tool-bar */ color: #000000; background-color: #bfbfbf; }
+.org-tooltip { /* tooltip */ color: #000000; background-color: #ffffe0; }
+.org-trailing-whitespace { /* trailing-whitespace */ background-color: #ff0000; }
+.org-type { /* font-lock-type-face */ color: #228b22; }
+.org-underline { /* underline */ text-decoration: underline; }
+.org-variable-name { /* font-lock-variable-name-face */ color: teal; }
+.org-warning { /* font-lock-warning-face */ color: #ff0000; font-weight: bold; }
+.org-widget-button { /* widget-button */ font-weight: bold; }
+.org-widget-button-pressed { /* widget-button-pressed */ color: #ff0000; }
+.org-widget-documentation { /* widget-documentation */ color: #006400; }
+.org-widget-field { /* widget-field */ background-color: #d9d9d9; }
+.org-widget-inactive { /* widget-inactive */ color: #7f7f7f; }
+.org-widget-single-line-field { /* widget-single-line-field */ background-color: #d9d9d9; }
diff --git a/doc/orgmode/css/readtheorg.css b/doc/orgmode/css/readtheorg.css
new file mode 100644
index 0000000000000000000000000000000000000000..a638c488b2dcf27953abfbea1a323cc1e08cf4c8
--- /dev/null
+++ b/doc/orgmode/css/readtheorg.css
@@ -0,0 +1,1092 @@
+
+@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic|Roboto+Slab:400,700|Inconsolata:400,700);
+@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css);
+
+h1,h2,h3,h4,h5,h6,legend{
+    font-family:"Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif;
+    font-weight:700;
+    margin-top:0;
+}
+
+h1{
+    font-size:175%;
+}
+
+.subtitle{
+    font-size:95%; /* of h1 */
+}
+
+h2{
+    font-size:150%;
+}
+
+h3{
+    font-size:125%;
+}
+
+h4{
+    font-size:115%;
+}
+
+h5{
+    font-size:110%;
+}
+
+h6{
+    font-size:100%;
+}
+
+h4,h5,h6{
+    color:#2980B9;
+    font-weight:300;
+}
+
+html{
+    -ms-text-size-adjust:100%;
+    -webkit-text-size-adjust:100%;
+    font-size:100%;
+    height:100%;
+    overflow-x:hidden;
+}
+
+body{
+    background:#edf0f2;
+    color:#404040;
+    font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;
+    font-weight:normal;
+    margin:0;
+    min-height:100%;
+    overflow-x:hidden;
+}
+
+#content{
+    background:#fcfcfc;
+    height:100%;
+    margin-left:300px;
+    /* margin:auto; */
+    max-width:800px;
+    min-height:100%;
+    padding:1.618em 3.236em;
+}
+
+p{
+    font-size:16px;
+    line-height:24px;
+    margin:0px 0px 24px 0px;
+}
+
+b,strong{
+    font-weight:bold}
+
+blockquote{
+    background-color: #F0F0F0;
+    border-left:5px solid #CCCCCC;
+    font-style:italic;
+    line-height:24px;
+    margin:0px 0px 24px 0px;
+    /* margin-left:24px; */
+    padding: 6px 20px;
+}
+
+ul,ol,dl{
+    line-height:24px;
+    list-style-image:none;
+    /* list-style:none; */
+    margin:0px 0px 24px 0px;
+    padding:0;
+}
+
+li{
+    margin-left: 24px;
+}
+
+dd{
+    margin:0;
+}
+
+#content .section ul,#content .toctree-wrapper ul,article ul{
+    list-style:disc;
+    line-height:24px;
+    margin-bottom:24px}
+
+#content .section ul li,#content .toctree-wrapper ul li,article ul li{
+    list-style:disc;
+    margin-left:24px}
+
+#content .section ul li p:last-child,#content .toctree-wrapper ul li p:last-child,article ul li p:last-child{
+                                                                                                                                  margin-bottom:0}
+
+#content .section ul li ul,#content .toctree-wrapper ul li ul,article ul li ul{
+    margin-bottom:0}
+
+#content .section ul li li,#content .toctree-wrapper ul li li,article ul li li{
+    list-style:circle}
+
+#content .section ul li li li,#content .toctree-wrapper ul li li li,article ul li li li{
+    list-style:square}
+
+#content .section ul li ol li,#content .toctree-wrapper ul li ol li,article ul li ol li{
+    list-style:decimal}
+
+#content .section ol,#content ol,article ol{
+    list-style:decimal;
+    line-height:24px;
+    margin-bottom:24px}
+
+#content .section ol li,#content ol li,article ol li{
+    list-style:decimal;
+    margin-left:24px}
+
+#content .section ol li p:last-child,#content ol li p:last-child,article ol li p:last-child{
+                                                                                                                           margin-bottom:0}
+
+#content .section ol li ul,#content ol li ul,article ol li ul{
+    margin-bottom:0}
+
+#content .section ol li ul li,#content ol li ul li,article ol li ul li{
+    list-style:disc}
+
+dl dt{
+    font-weight:bold;
+}
+
+dl p,dl table,dl ul,dl ol{
+    margin-bottom:12px !important;
+}
+
+dl dd{
+    margin:0 0 12px 24px;
+}
+
+@media print{
+    .codeblock,pre.src{
+        white-space:pre.src-wrap}
+}
+
+@media print{
+    html,body,section{
+        background:none !important}
+
+    *{
+        box-shadow:none !important;
+        text-shadow:none !important;
+        filter:none !important;
+        -ms-filter:none !important}
+
+    a,a:visited{
+          text-decoration:underline}
+
+    pre.src,blockquote{
+        page-break-inside:avoid}
+
+    thead{
+        display:table-header-group}
+
+    tr,img{
+        page-break-inside:avoid}
+
+    img{
+        max-width:100% !important}
+
+    @page{
+        margin:0.5cm}
+
+    p,h2,h3{
+        orphans:3;
+        widows:3}
+
+    h2,h3{
+        page-break-after:avoid}
+}
+
+@media print{
+    #postamble{
+        display:none}
+
+    #content{
+        margin-left:0}
+}
+
+@media print{
+    #table-of-contents{
+        display:none}
+
+    @page{
+        size: auto;
+        margin: 25mm 25mm 25mm 25mm;}
+
+    body {
+        margin: 0px;}
+}
+
+@media screen and (max-width: 768px){
+}
+
+@media only screen and (max-width: 480px){
+}
+
+@media screen and (max-width: 768px){
+    .tablet-hide{
+        display:none}
+}
+
+@media screen and (max-width: 480px){
+    .mobile-hide{
+        display:none}
+}
+
+@media screen and (max-width: 480px){
+}
+
+@media screen and (max-width: 768px){
+    #content{
+        margin-left:0}
+
+    #content #content{
+        padding:1.618em}
+
+    #content.shift{
+        position:fixed;
+        min-width:100%;
+        left:85%;
+        top:0;
+        height:100%;
+        overflow:hidden}
+}
+
+@media screen and (min-width: 1400px){
+    #content{
+        background:rgba(0,0,0,0.05)}
+
+    #content{
+        background:#fcfcfc}
+}
+
+@media screen and (max-width: 768px){
+    #copyright{
+        width:85%;
+        display:none}
+
+    #copyright.shift{
+        display:block}
+
+    img{
+        width:100%;
+        height:auto}
+}
+
+@media screen and (max-width: 480px){
+    #content .sidebar{
+        width:100%}
+}
+
+code{
+    background:#fff;
+    border:solid 1px #e1e4e5;
+    /* color:#000;  for clickable code */
+    font-family:Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;
+    font-size:75%;
+    max-width:100%;
+    overflow-x:auto;
+    padding:0 5px;
+    white-space:nowrap;
+}
+
+.codeblock-example{
+    border:1px solid #e1e4e5;
+    border-bottom:none;
+    padding:24px;
+    padding-top:48px;
+    font-weight:500;
+    background:#fff;
+    position:relative}
+
+.codeblock-example:after{
+    content:"Example";
+    position:absolute;
+    top:0px;
+    left:0px;
+    background:#9B59B6;
+    color:#fff;
+    padding:6px 12px}
+
+.codeblock-example.prettyprint-example-only{
+    border:1px solid #e1e4e5;
+    margin-bottom:24px}
+
+.codeblock,pre.src,#content .literal-block{
+    border:1px solid #e1e4e5;
+    padding:12px;
+    overflow-x:auto;
+    background:#fff;
+    margin:1px 0 24px 0}
+
+pre.src{
+    /* color:#404040; */
+    display:block;
+    font-family:Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;
+    font-size:12px;
+    line-height:1.5;
+    margin:1px 0px 24px 0px;
+    overflow:auto;
+    padding:12px;
+    white-space:pre;
+}
+
+.example{
+    background:#f3f6f6;
+    border:1px solid #e1e4e5;
+    color:#404040;
+    font-size: 12px;
+    line-height: 1.5;
+    margin-bottom:24px;
+    padding:12px;
+}
+
+table{
+    border-collapse:collapse;
+    border-spacing:0;
+    empty-cells:show;
+    margin-bottom:24px;
+    border-bottom:1px solid #e1e4e5;
+}
+
+td{
+    vertical-align:top}
+
+table td,table th{
+    font-size:90%;
+    margin:0;
+    overflow:visible;
+    padding:8px 16px;
+    background-color:white;
+    border:1px solid #e1e4e5;
+}
+
+table thead th{
+    font-weight:bold;
+    border-top:3px solid #e1e4e5;
+    border-bottom:1px solid #e1e4e5;
+}
+
+table caption{
+    color:#000;
+    font:italic 85%/1 arial,sans-serif;
+    padding:1em 0;
+}
+
+table tr:nth-child(2n-1) td{
+    background-color:#f3f6f6;
+}
+
+table tr:nth-child(2n) td{
+    background-color:white;
+}
+
+.figure p{
+    color:#000;
+    font:italic 85%/1 arial,sans-serif;
+    padding:1em 0;
+}
+
+.rotate-90{
+    -webkit-transform:rotate(90deg);
+    -moz-transform:rotate(90deg);
+    -ms-transform:rotate(90deg);
+    -o-transform:rotate(90deg);
+    transform:rotate(90deg);
+}
+
+.rotate-270{
+    -webkit-transform:rotate(270deg);
+    -moz-transform:rotate(270deg);
+    -ms-transform:rotate(270deg);
+    -o-transform:rotate(270deg);
+    transform:rotate(270deg);
+}
+
+#toggle-sidebar,
+#table-of-contents .close-sidebar {
+    display: none;
+}
+
+@media screen and (max-width: 768px) {
+    #table-of-contents {
+        display: none;
+        width: 60%;
+    }
+
+    #table-of-contents h2 a {
+        display: block;
+    }
+
+    #table-of-contents:target {
+        display: block;
+    }
+
+    #copyright, #postamble {
+        display: none;
+    }
+
+    #toggle-sidebar {
+        background-color: #2980B9;
+        display: block;
+        margin-bottom: 1.6em;
+        padding: 0.6em;
+        text-align: center;
+    }
+
+    #toggle-sidebar h2 {
+		background-color:#2980B9;
+		width:100%;
+		height:50px;
+		left:0;
+		top:0;
+        color: white;
+        font-size: 100%;
+        line-height: 50px;
+		position:fixed;
+        margin: 0;
+        padding: 0;
+		opacity:0.7;
+    }
+
+    #table-of-contents .close-sidebar {
+       color: rgba(255, 255, 255, 0.3);
+       display: inline-block;
+       margin: 0px 10px 0px 45px;
+       padding: 10px;
+    }
+}
+
+*{
+    -webkit-box-sizing:border-box;
+    -moz-box-sizing:border-box;
+    box-sizing:border-box;
+}
+
+figcaption,figure,footer,header,hgroup,nav{
+    display:block}
+
+ins{
+    background:#ff9;
+    color:#000;
+    text-decoration:none}
+
+mark{
+    background:#ff0;
+    color:#000;
+    font-style:italic;
+    font-weight:bold}
+
+small{
+    font-size:85%}
+
+sub,sup{
+    font-size:75%;
+    line-height:0;
+    position:relative;
+    vertical-align:baseline}
+
+sup{
+    top:-0.5em}
+
+sub{
+    bottom:-0.25em}
+
+img{
+    -ms-interpolation-mode:bicubic;
+    vertical-align:middle;
+    max-width:100%}
+
+svg:not(:root){
+    overflow:hidden}
+
+figure{
+    margin:0}
+
+label{
+    cursor:pointer}
+
+legend{
+    border:0;
+    margin-left:-7px;
+    padding:0;
+    white-space:normal}
+
+.fa:before,#content .admonition-title:before,#content h1 .headerlink:before,#content h2 .headerlink:before,#content h3 .headerlink:before,#content h4 .headerlink:before,#content h5 .headerlink:before,#content h6 .headerlink:before,#content dl dt .headerlink:before,.icon:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-alert,#content .note,#content .attention,#content .caution,#content .danger,#content .error,#content .hint,#content .important,#content .tip,#content .warning,#content .seealso,#content .admonitiontodo,.btn,input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="date"],input[type="month"],input[type="time"],input[type="datetime"],input[type="datetime-local"],input[type="week"],input[type="number"],input[type="search"],input[type="tel"],input[type="color"],select,textarea,#table-of-contents li.on a,#table-of-contents li.current>a,.wy-side-nav-search>a,.wy-side-nav-search .wy-dropdown>a,.wy-nav-top a{
+    -webkit-font-smoothing:antialiased}
+
+/*!
+ *  Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
+ *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */@font-face{
+    font-family:'FontAwesome';
+    src:url("../fonts/fontawesome-webfont.eot?v=4.1.0");
+    src:url("../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0") format("embedded-opentype"),url("../fonts/fontawesome-webfont.woff?v=4.1.0") format("woff"),url("../fonts/fontawesome-webfont.ttf?v=4.1.0") format("truetype"),url("../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular") format("svg");
+    font-weight:normal;
+    font-style:normal}
+
+.fa,#content .admonition-title,.icon{
+    display:inline-block;
+    font-family:FontAwesome;
+    font-style:normal;
+    font-weight:normal;
+    line-height:1;
+    -webkit-font-smoothing:antialiased;
+    -moz-osx-font-smoothing:grayscale}
+
+.fa-ul{
+    padding-left:0;
+    margin-left:2.14286em;
+    list-style-type:none}
+
+.fa-ul>li{
+    position:relative}
+
+.fa-li{
+    position:absolute;
+    left:-2.14286em;
+    width:2.14286em;
+    top:0.14286em;
+    text-align:center}
+
+.fa-li.fa-lg{
+    left:-1.85714em}
+
+.fa-border{
+    padding:.2em .25em .15em;
+    border:solid 0.08em #eee;
+    border-radius:.1em}
+
+.fa,#content .admonition-title{
+    font-family:inherit}
+
+.fa:before,#content .admonition-title:before{
+    font-family:"FontAwesome";
+    display:inline-block;
+    font-style:normal;
+    font-weight:normal;
+    line-height:1;
+    text-decoration:inherit}
+
+a .fa,a #content .admonition-title,#content a .admonition-title{
+    display:inline-block;
+    text-decoration:inherit}
+
+.nav #content .admonition-title,#content .nav .admonition-title,.nav .icon{
+    display:inline}
+
+.wy-alert,#content .note,#content .attention,#content .caution,#content .danger,#content .error,#content .hint,#content .important,#content .tip,#content .warning,#content .seealso,#content .admonitiontodo{
+    padding:12px;
+    line-height:24px;
+    margin-bottom:24px;
+    /* background:#e7f2fa; */
+}
+
+.wy-alert-title,#content .admonition-title{
+    color:#fff;
+    font-weight:bold;
+    display:block;
+    color:#fff;
+    /* background:#6ab0de; */
+    /* margin:-12px; */
+    padding:6px 12px;
+    margin-bottom:0px}
+
+#content .danger,#content .error{
+    background:#fdf3f2}
+
+.wy-alert.wy-alert-warning,#content .wy-alert-warning.note,#content .attention,#content .caution,#content .wy-alert-warning.danger,#content .wy-alert-warning.error,#content .wy-alert-warning.hint,#content .wy-alert-warning.important,#content .wy-alert-warning.tip,#content .warning,#content .wy-alert-warning.seealso,#content .admonitiontodo{
+    background:#ffedcc}
+
+#content .admonition-title.note:before, #content .admonition-title.seealso:before,
+#content .admonition-title.warning:before, #content .admonition-title.caution:before,
+#content .admonition-title.attention:before,
+#content .admonition-title.tip:before, #content .admonition-title.hint:before,
+#content .admonition-title.important:before,
+#content .admonition-title.error:before, #content .admonition-title.danger:before{
+    font-family:FontAwesome;
+    content: "";}
+
+#content .note,#content .seealso{
+    background:#e7f2fa}
+
+.wy-alert p:last-child,#content .note p:last-child,#content .attention p:last-child,#content .caution p:last-child,#content .danger p:last-child,#content .error p:last-child,#content .hint p:last-child,#content .important p:last-child,#content .tip p:last-child,#content .warning p:last-child,#content .seealso p:last-child,#content .admonitiontodo p:last-child{
+    margin-bottom:0}
+
+#content .admonition-title.tip,#content .admonition-title.important,#content .admonition-title.hint{
+    line-height: 1;
+    background:#1abc9c}
+
+#content .important,#content .tip,#content .hint{
+    background:#dbfaf4}
+
+#content .admonition-title.note,#content .admonition-title.seealso{
+    line-height: 1;
+    background:#6ab0de}
+
+#content .admonition-title.warning,#content .admonition-title.caution,#content .admonition-title.attention{
+    line-height: 1;
+    background:#F0B37E}
+
+#content .admonition-title.error,#content .admonition-title.danger{
+    line-height: 1;
+    background:#f29f97}
+
+legend{
+    display:block;
+    width:100%;
+    border:0;
+    padding:0;
+    white-space:normal;
+    margin-bottom:24px;
+    font-size:150%;
+    *margin-left:-7px}
+
+label{
+    display:block;
+    margin:0 0 0.3125em 0;
+    color:#333;
+    font-size:90%}
+
+a{
+    color:#2980B9;
+    text-decoration:none;
+    cursor:pointer}
+
+
+a:hover,a:active{
+    outline:0;
+}
+
+a:hover{
+    color:#3091d1}
+
+a:visited{
+    color:#9B59B6}
+
+.left{
+    text-align:left}
+
+.center{
+    text-align:center}
+
+.right{
+    text-align:right}
+
+hr{
+    display:block;
+    height:1px;
+    border:0;
+    border-top:1px solid #e1e4e5;
+    margin:24px 0;
+    padding:0}
+
+#table-of-contents li{
+    list-style:none;
+    margin-left: 0px;
+}
+
+#table-of-contents header{
+    height:32px;
+    display:inline-block;
+    line-height:32px;
+    padding:0 1.618em;
+    display:block;
+    font-weight:bold;
+    text-transform:uppercase;
+    font-size:80%;
+    color:#2980B9;
+    white-space:nowrap}
+
+#table-of-contents ul{
+    margin-bottom:0}
+
+#table-of-contents li.divide-top{
+    border-top:solid 1px #404040}
+
+#table-of-contents li.divide-bottom{
+    border-bottom:solid 1px #404040}
+
+#table-of-contents li.current{
+    background:#e3e3e3}
+
+#table-of-contents li.current a{
+    color:gray;
+    border-right:solid 1px #c9c9c9;
+    padding:0.4045em 2.427em}
+
+#table-of-contents li.current a:hover{
+    background:#d6d6d6}
+
+#table-of-contents li a{
+    /* color:#404040; */
+    padding:0.4045em 1.618em;
+    position:relative;
+    /* background:#fcfcfc; */
+    border:none;
+    /* border-bottom:solid 1px #c9c9c9; */
+    /* border-top:solid 1px #c9c9c9; */
+    padding-left:1.618em -4px}
+
+#table-of-contents li.on a:hover,#table-of-contents li.current>a:hover{
+    background:#fcfcfc}
+
+#table-of-contents li ul li a{
+    /* background:#c9c9c9; */
+    padding:0.4045em 2.427em}
+
+#table-of-contents li ul li ul li a{
+    padding:0.4045em 3.236em}
+
+#table-of-contents li.current ul{
+    display:block}
+
+/* #table-of-contents li ul{ */
+/*     margin-bottom:0; */
+/*     display:none} */
+
+#table-of-contents .local-toc li ul{
+    display:block}
+
+#table-of-contents li ul li a{
+    margin-bottom:0;
+    color:#b3b3b3;
+    font-weight:normal}
+
+#table-of-contents a{
+    display:inline-block;
+    line-height:18px;
+    padding:0.4045em 1.618em;
+    display:block;
+    position:relative;
+    font-size:90%;
+    color:#b3b3b3;
+    direction: ltr;
+}
+
+#table-of-contents a:hover{
+    background-color:#4e4a4a;
+    cursor:pointer}
+
+/* #text-table-of-contents { */
+/*     overflow:scroll; */
+/* } */
+
+#table-of-contents{
+    position:fixed;
+    top:0;
+    left:0;
+    width:300px;
+    overflow-x:hidden;
+    overflow-y:scroll;
+    height:100%;
+    background:#343131;
+    z-index:200;
+    scrollbar-base-color: #1F1D1D;
+    scrollbar-arrow-color: #b3b3b3;
+    scrollbar-shadow-color: #1F1D1D;
+    scrollbar-track-color : #343131;
+}
+
+#table-of-contents h2{
+    z-index:200;
+    background-color:#2980B9;
+    text-align:center;
+    padding:0.809em;
+    display:block;
+    color:#fcfcfc;
+    font-size: 100%;
+    margin-bottom:0.809em}
+
+ul.nav li ul li {
+    display: none;
+}
+
+ul.nav li ul li ul li {
+    display: none;
+}
+
+ul.nav li.active ul li {
+    display: inline;
+}
+
+ul.nav li.active ul li ul li {
+    display: inline;
+}
+
+ul.nav li.active ul li a {
+    background-color: #E3E3E3;
+    color: #8099B0;
+    border-right:solid 1px #c9c9c9 !important;
+}
+
+ul.nav li.active ul li.active a {
+    background-color: #C9C9C9;
+    color: black !important;
+    font-weight: bold !important;
+}
+
+ul.nav li.active ul li.active ul li.active a {
+    color: black !important;
+    font-weight: bold !important;
+    display: block !important;
+}
+
+ul.nav li.active ul li.active ul li a {
+    color: #808080 !important;
+    font-weight: normal !important;
+    display: block !important;
+}
+
+ul.nav li.active ul li ul li a {
+    display: none !important;
+}
+
+/* ul.nav li ul li ul li { */
+/*     display: none !important; /\* as long as nav is on multiple levels of ul *\/ */
+/*     /\* display: none; /\* as long as nav is on multiple levels of ul *\\/ *\/ */
+/* } */
+
+ul.nav li ul li ul li ul li {
+    display: none !important; /* as long as nav is on multiple levels of ul */
+    /* display: none; /* as long as nav is on multiple levels of ul *\/ */
+}
+
+ul.nav li.active > a {
+    border-bottom:solid 1px #c9c9c9 !important; /* XXX Restrict it to 2nd level */
+    border-right:solid 1px #c9c9c9 !important;
+}
+
+ul.nav li.active a {
+    color: gray !important;
+    font-weight:bold;
+    background-color: white;
+    border-right:solid 0px white !important;
+}
+
+ul.nav > li.active > a {
+    color: black !important;
+}
+
+footer{
+    color:#999}
+
+footer p{
+    margin-bottom:12px}
+
+#copyright, #postamble{
+    position:fixed;
+    bottom:0;
+    left:0;
+    width:300px;
+    color:#fcfcfc;
+    background:#1f1d1d;
+    border-top:solid 10px #343131;
+    font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;
+    font-size: 90%;
+    z-index:400;
+    padding:12px;
+}
+
+#postamble .author {
+    font-size: 100%;
+    margin-bottom: 0px;
+}
+
+#postamble .date {
+    font-size: 90%;
+    margin-bottom: 0px;
+    color: #27AE60;
+}
+
+#postamble .creator,#postamble .validation {
+    display:none;
+}
+
+#copyright a{
+    color:#2980B9;
+    text-decoration:none}
+
+#copyright .rst-current-version{
+    padding:12px;
+    background-color:#272525;
+    display:block;
+    text-align:right;
+    font-size:90%;
+    cursor:pointer;
+    color:#27AE60;
+    *zoom:1}
+
+#content img{
+    max-width:100%;
+}
+
+#content div.figure{
+    margin-bottom:24px}
+
+#content div.figure.align-center{
+    text-align:center}
+
+#content .section>img,#content .section>a>img{
+    margin-bottom:24px}
+
+.verse{
+    border-left:5px solid #6AB0DE;
+    background-color: #E7F2FA;
+    padding: 6px 20px;
+    font-style:italic;
+}
+
+#content .note .last,#content .attention .last,#content .caution .last,#content .danger .last,#content .error .last,#content .hint .last,#content .important .last,#content .tip .last,#content .warning .last,#content .seealso .last,#content .admonitiontodo .last{
+    margin-bottom:0}
+
+#content .admonition-title:before{
+    margin-right:4px}
+
+#content .section ol p,#content .section ul p{
+    margin-bottom:12px}
+
+#content h1 .headerlink,#content h2 .headerlink,#content h3 .headerlink,#content h4 .headerlink,#content h5 .headerlink,#content h6 .headerlink,#content dl dt .headerlink{
+    display:none;
+    visibility:hidden;
+    font-size:14px}
+
+#content h1 .headerlink:after,#content h2 .headerlink:after,#content h3 .headerlink:after,#content h4 .headerlink:after,#content h5 .headerlink:after,#content h6 .headerlink:after,#content dl dt .headerlink:after{
+    visibility:visible;
+    content:"";
+    font-family:FontAwesome;
+    display:inline-block}
+
+#content h1:hover .headerlink,#content h2:hover .headerlink,#content h3:hover .headerlink,#content h4:hover .headerlink,#content h5:hover .headerlink,#content h6:hover .headerlink,#content dl dt:hover .headerlink{
+    display:inline-block}
+
+#content .sidebar{
+    float:right;
+    width:40%;
+    display:block;
+    margin:0 0 24px 24px;
+    padding:24px;
+    background:#f3f6f6;
+    border:solid 1px #e1e4e5}
+
+#content .sidebar p,#content .sidebar ul,#content .sidebar dl{
+    font-size:90%}
+
+#content .sidebar .last{
+    margin-bottom:0}
+
+#content .sidebar .sidebar-title{
+    display:block;
+    font-family:"Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif;
+    font-weight:bold;
+    background:#e1e4e5;
+    padding:6px 12px;
+    margin:-24px;
+    margin-bottom:24px;
+    font-size:100%}
+
+#content .highlighted{
+    background:#F1C40F;
+    display:inline-block;
+    font-weight:bold;
+    padding:0 6px}
+
+#content .footnote-reference,#content .citation-reference{
+    vertical-align:super;
+    font-size:90%}
+
+span[id*='MathJax-Span']{
+    color:#404040}
+
+.math{
+    text-align:center}
+
+#footnotes{
+    border-top:1px solid #e1e4e5;
+    padding-top: 36px;
+}
+
+h2.footnotes{
+    display:none;
+}
+
+.footnum, .footref{
+    color: #2980b9;
+    font-size: 170%;
+    font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;
+}
+
+.footnum:before, .footref:before{
+    content:"[";
+}
+
+.footnum:after, .footref:after{
+    content:"]";
+}
+
+.footpara {
+    color: #999;
+    font-size: 90%;
+    font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;
+    padding-bottom: 8px;
+    padding-left: 16px;
+    padding-right: 16px;
+    padding-top: 8px;
+    line-height: 1.25em;
+    /* display: inline; */
+}
+
+.todo{
+    background-color: #f29f97;
+    padding: 0px 4px;
+    color: #fff;
+}
+
+.WAIT, .nilWAIT{
+    background-color: #6AB097;
+}
+
+.done{
+    background-color: #6ab0de;
+    padding: 0px 4px;
+    color: #fff;
+}
+
+.tag span {
+    background-color: #EDEDED;
+    border: 1px solid #EDEDED;
+    color: #939393;
+    cursor: pointer;
+    display: block;
+    float: right;
+    font-size: 80%;
+    font-weight: normal;
+    margin: 0 3px;
+    padding: 1px 2px;
+    border-radius: 10px;
+}
+
+.tag .FLAGGED {
+    background-color: #DB2D27;
+    border: 1px solid #DB2D27;
+    color: white;
+    font-weight: bold;
+}
+
+.timestamp {
+    font-family: Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;
+    font-size: 90%;
+    color: navy;
+}
+
+.inlinetask {
+    background: #FFF9E3;  /* url(dialog-todo.png) no-repeat 10px 8px; */
+    border: 3px solid #FFEB8E;
+    /* border-right-style: none; */
+    /* border-left-style: none; */
+    /* padding: 10px 20px 10px 60px; */
+    padding: 9px 12px;
+    margin-bottom: 24px;
+    font-family:"Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif}
diff --git a/doc/orgmode/css/rtd-full.css b/doc/orgmode/css/rtd-full.css
new file mode 100644
index 0000000000000000000000000000000000000000..6cb3346942d5225e80c1c719330d9d9f357c50ef
--- /dev/null
+++ b/doc/orgmode/css/rtd-full.css
@@ -0,0 +1,3910 @@
+*{
+    -webkit-box-sizing:border-box;
+    -moz-box-sizing:border-box;
+    box-sizing:border-box}
+
+article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{
+    display:block}
+
+audio,canvas,video{
+    display:inline-block;
+    *display:inline;
+    *zoom:1}
+
+audio:not([controls]){
+    display:none}
+
+[hidden]{
+    display:none}
+
+*{
+    -webkit-box-sizing:border-box;
+    -moz-box-sizing:border-box;
+    box-sizing:border-box}
+
+html{
+    font-size:100%;
+    -webkit-text-size-adjust:100%;
+    -ms-text-size-adjust:100%}
+
+body{
+    margin:0}
+
+a:hover,a:active{
+            outline:0}
+
+abbr[title]{
+    border-bottom:1px dotted}
+
+b,strong{
+    font-weight:bold}
+
+blockquote{
+    margin:0}
+
+dfn{
+    font-style:italic}
+
+ins{
+    background:#ff9;
+    color:#000;
+    text-decoration:none}
+
+mark{
+    background:#ff0;
+    color:#000;
+    font-style:italic;
+    font-weight:bold}
+
+pre,code,.rst-content tt,kbd,samp{
+    font-family:monospace,serif;
+    _font-family:"courier new",monospace;
+    font-size:1em}
+
+pre{
+    white-space:pre}
+
+q{
+    quotes:none}
+
+q:before,q:after{
+             content:"";
+             content:none}
+
+small{
+    font-size:85%}
+
+sub,sup{
+    font-size:75%;
+    line-height:0;
+    position:relative;
+    vertical-align:baseline}
+
+sup{
+    top:-0.5em}
+
+sub{
+    bottom:-0.25em}
+
+ul,ol,dl{
+    margin:0;
+    padding:0;
+    list-style:none;
+    list-style-image:none}
+
+li{
+    list-style:none}
+
+dd{
+    margin:0}
+
+img{
+    border:0;
+    -ms-interpolation-mode:bicubic;
+    vertical-align:middle;
+    max-width:100%}
+
+svg:not(:root){
+    overflow:hidden}
+
+figure{
+    margin:0}
+
+form{
+    margin:0}
+
+fieldset{
+    border:0;
+    margin:0;
+    padding:0}
+
+label{
+    cursor:pointer}
+
+legend{
+    border:0;
+    *margin-left:-7px;
+    padding:0;
+    white-space:normal}
+
+button,input,select,textarea{
+    font-size:100%;
+    margin:0;
+    vertical-align:baseline;
+    *vertical-align:middle}
+
+button,input{
+    line-height:normal}
+
+button,input[type="button"],input[type="reset"],input[type="submit"]{
+    cursor:pointer;
+    -webkit-appearance:button;
+    *overflow:visible}
+
+button[disabled],input[disabled]{
+    cursor:default}
+
+input[type="checkbox"],input[type="radio"]{
+    box-sizing:border-box;
+    padding:0;
+    *width:13px;
+    *height:13px}
+
+input[type="search"]{
+    -webkit-appearance:textfield;
+    -moz-box-sizing:content-box;
+    -webkit-box-sizing:content-box;
+    box-sizing:content-box}
+
+input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{
+    -webkit-appearance:none}
+
+button::-moz-focus-inner,input::-moz-focus-inner{
+    border:0;
+    padding:0}
+
+textarea{
+    overflow:auto;
+    vertical-align:top;
+    resize:vertical}
+
+table{
+    border-collapse:collapse;
+    border-spacing:0}
+
+td{
+    vertical-align:top}
+
+.chromeframe{
+    margin:0.2em 0;
+    background:#ccc;
+    color:#000;
+    padding:0.2em 0}
+
+.ir{
+    display:block;
+    border:0;
+    text-indent:-999em;
+    overflow:hidden;
+    background-color:transparent;
+    background-repeat:no-repeat;
+    text-align:left;
+    direction:ltr;
+    *line-height:0}
+
+.ir br{
+    display:none}
+
+.hidden{
+    display:none !important;
+    visibility:hidden}
+
+.visuallyhidden{
+    border:0;
+    clip:rect(0 0 0 0);
+    height:1px;
+    margin:-1px;
+    overflow:hidden;
+    padding:0;
+    position:absolute;
+    width:1px}
+
+.visuallyhidden.focusable:active,.visuallyhidden.focusable:focus{
+    clip:auto;
+    height:auto;
+    margin:0;
+    overflow:visible;
+    position:static;
+    width:auto}
+
+.invisible{
+    visibility:hidden}
+
+.relative{
+    position:relative}
+
+big,small{
+    font-size:100%}
+
+@media print{
+    html,body,section{
+        background:none !important}
+
+    *{
+        box-shadow:none !important;
+        text-shadow:none !important;
+        filter:none !important;
+        -ms-filter:none !important}
+
+    a,a:visited{
+          text-decoration:underline}
+
+    .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{
+                                                 content:""}
+
+    pre,blockquote{
+        page-break-inside:avoid}
+
+    thead{
+        display:table-header-group}
+
+    tr,img{
+        page-break-inside:avoid}
+
+    img{
+        max-width:100% !important}
+
+    @page{
+        margin:0.5cm}
+
+    p,h2,h3{
+        orphans:3;
+        widows:3}
+
+    h2,h3{
+        page-break-after:avoid}
+
+}
+
+.fa:before,.rst-content .admonition-title:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content dl dt .headerlink:before,.icon:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-alert,.rst-content .note,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .warning,.rst-content .seealso,.rst-content .admonition-todo,.btn,input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="date"],input[type="month"],input[type="time"],input[type="datetime"],input[type="datetime-local"],input[type="week"],input[type="number"],input[type="search"],input[type="tel"],input[type="color"],select,textarea,.wy-menu-vertical li.on a,.wy-menu-vertical li.current>a,.wy-side-nav-search>a,.wy-side-nav-search .wy-dropdown>a,.wy-nav-top a{
+    -webkit-font-smoothing:antialiased}
+
+.clearfix{
+    *zoom:1}
+
+.clearfix:before,.clearfix:after{
+    display:table;
+    content:""}
+
+.clearfix:after{
+    clear:both}
+
+/*!
+ *  Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
+ *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */@font-face{
+    font-family:'FontAwesome';
+    src:url("../fonts/fontawesome-webfont.eot?v=4.1.0");
+    src:url("../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0") format("embedded-opentype"),url("../fonts/fontawesome-webfont.woff?v=4.1.0") format("woff"),url("../fonts/fontawesome-webfont.ttf?v=4.1.0") format("truetype"),url("../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular") format("svg");
+    font-weight:normal;
+    font-style:normal}
+
+.fa,.rst-content .admonition-title,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.icon{
+    display:inline-block;
+    font-family:FontAwesome;
+    font-style:normal;
+    font-weight:normal;
+    line-height:1;
+    -webkit-font-smoothing:antialiased;
+    -moz-osx-font-smoothing:grayscale}
+
+.fa-lg{
+    font-size:1.33333em;
+    line-height:0.75em;
+    vertical-align:-15%}
+
+.fa-2x{
+    font-size:2em}
+
+.fa-3x{
+    font-size:3em}
+
+.fa-4x{
+    font-size:4em}
+
+.fa-5x{
+    font-size:5em}
+
+.fa-fw{
+    width:1.28571em;
+    text-align:center}
+
+.fa-ul{
+    padding-left:0;
+    margin-left:2.14286em;
+    list-style-type:none}
+
+.fa-ul>li{
+    position:relative}
+
+.fa-li{
+    position:absolute;
+    left:-2.14286em;
+    width:2.14286em;
+    top:0.14286em;
+    text-align:center}
+
+.fa-li.fa-lg{
+    left:-1.85714em}
+
+.fa-border{
+    padding:.2em .25em .15em;
+    border:solid 0.08em #eee;
+    border-radius:.1em}
+
+.pull-right{
+    float:right}
+
+.pull-left{
+    float:left}
+
+.fa.pull-left,.rst-content .pull-left.admonition-title,.rst-content h1 .pull-left.headerlink,.rst-content h2 .pull-left.headerlink,.rst-content h3 .pull-left.headerlink,.rst-content h4 .pull-left.headerlink,.rst-content h5 .pull-left.headerlink,.rst-content h6 .pull-left.headerlink,.rst-content dl dt .pull-left.headerlink,.pull-left.icon{
+    margin-right:.3em}
+
+.fa.pull-right,.rst-content .pull-right.admonition-title,.rst-content h1 .pull-right.headerlink,.rst-content h2 .pull-right.headerlink,.rst-content h3 .pull-right.headerlink,.rst-content h4 .pull-right.headerlink,.rst-content h5 .pull-right.headerlink,.rst-content h6 .pull-right.headerlink,.rst-content dl dt .pull-right.headerlink,.pull-right.icon{
+    margin-left:.3em}
+
+.fa-spin{
+    -webkit-animation:spin 2s infinite linear;
+    -moz-animation:spin 2s infinite linear;
+    -o-animation:spin 2s infinite linear;
+    animation:spin 2s infinite linear}
+
+@-moz-keyframes spin{
+    0%{
+        -moz-transform:rotate(0deg)}
+
+    100%{
+        -moz-transform:rotate(359deg)}
+
+}
+
+@-webkit-keyframes spin{
+    0%{
+        -webkit-transform:rotate(0deg)}
+
+    100%{
+        -webkit-transform:rotate(359deg)}
+
+}
+
+@-o-keyframes spin{
+    0%{
+        -o-transform:rotate(0deg)}
+
+    100%{
+        -o-transform:rotate(359deg)}
+
+}
+
+@keyframes spin{
+    0%{
+        -webkit-transform:rotate(0deg);
+        transform:rotate(0deg)}
+
+    100%{
+        -webkit-transform:rotate(359deg);
+        transform:rotate(359deg)}
+
+}
+
+.fa-rotate-90{
+    filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
+    -webkit-transform:rotate(90deg);
+    -moz-transform:rotate(90deg);
+    -ms-transform:rotate(90deg);
+    -o-transform:rotate(90deg);
+    transform:rotate(90deg)}
+
+.fa-rotate-180{
+    filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
+    -webkit-transform:rotate(180deg);
+    -moz-transform:rotate(180deg);
+    -ms-transform:rotate(180deg);
+    -o-transform:rotate(180deg);
+    transform:rotate(180deg)}
+
+.fa-rotate-270{
+    filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
+    -webkit-transform:rotate(270deg);
+    -moz-transform:rotate(270deg);
+    -ms-transform:rotate(270deg);
+    -o-transform:rotate(270deg);
+    transform:rotate(270deg)}
+
+.fa-flip-horizontal{
+    filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
+    -webkit-transform:scale(-1, 1);
+    -moz-transform:scale(-1, 1);
+    -ms-transform:scale(-1, 1);
+    -o-transform:scale(-1, 1);
+    transform:scale(-1, 1)}
+
+.fa-flip-vertical{
+    filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
+    -webkit-transform:scale(1, -1);
+    -moz-transform:scale(1, -1);
+    -ms-transform:scale(1, -1);
+    -o-transform:scale(1, -1);
+    transform:scale(1, -1)}
+
+.fa-stack{
+    position:relative;
+    display:inline-block;
+    width:2em;
+    height:2em;
+    line-height:2em;
+    vertical-align:middle}
+
+.fa-stack-1x,.fa-stack-2x{
+    position:absolute;
+    left:0;
+    width:100%;
+    text-align:center}
+
+.fa-stack-1x{
+    line-height:inherit}
+
+.fa-stack-2x{
+    font-size:2em}
+
+.fa-inverse{
+    color:#fff}
+
+.fa-glass:before{
+    content:""}
+
+.fa-music:before{
+    content:""}
+
+.fa-search:before,.icon-search:before{
+    content:""}
+
+.fa-envelope-o:before{
+    content:""}
+
+.fa-heart:before{
+    content:""}
+
+.fa-star:before{
+    content:""}
+
+.fa-star-o:before{
+    content:""}
+
+.fa-user:before{
+    content:""}
+
+.fa-film:before{
+    content:""}
+
+.fa-th-large:before{
+    content:""}
+
+.fa-th:before{
+    content:""}
+
+.fa-th-list:before{
+    content:""}
+
+.fa-check:before{
+    content:""}
+
+.fa-times:before{
+    content:""}
+
+.fa-search-plus:before{
+    content:""}
+
+.fa-search-minus:before{
+    content:""}
+
+.fa-power-off:before{
+    content:""}
+
+.fa-signal:before{
+    content:""}
+
+.fa-gear:before,.fa-cog:before{
+    content:""}
+
+.fa-trash-o:before{
+    content:""}
+
+.fa-home:before,.icon-home:before{
+    content:""}
+
+.fa-file-o:before{
+    content:""}
+
+.fa-clock-o:before{
+    content:""}
+
+.fa-road:before{
+    content:""}
+
+.fa-download:before{
+    content:""}
+
+.fa-arrow-circle-o-down:before{
+    content:""}
+
+.fa-arrow-circle-o-up:before{
+    content:""}
+
+.fa-inbox:before{
+    content:""}
+
+.fa-play-circle-o:before{
+    content:""}
+
+.fa-rotate-right:before,.fa-repeat:before{
+    content:""}
+
+.fa-refresh:before{
+    content:""}
+
+.fa-list-alt:before{
+    content:""}
+
+.fa-lock:before{
+    content:""}
+
+.fa-flag:before{
+    content:""}
+
+.fa-headphones:before{
+    content:""}
+
+.fa-volume-off:before{
+    content:""}
+
+.fa-volume-down:before{
+    content:""}
+
+.fa-volume-up:before{
+    content:""}
+
+.fa-qrcode:before{
+    content:""}
+
+.fa-barcode:before{
+    content:""}
+
+.fa-tag:before{
+    content:""}
+
+.fa-tags:before{
+    content:""}
+
+.fa-book:before,.icon-book:before{
+    content:""}
+
+.fa-bookmark:before{
+    content:""}
+
+.fa-print:before{
+    content:""}
+
+.fa-camera:before{
+    content:""}
+
+.fa-font:before{
+    content:""}
+
+.fa-bold:before{
+    content:""}
+
+.fa-italic:before{
+    content:""}
+
+.fa-text-height:before{
+    content:""}
+
+.fa-text-width:before{
+    content:""}
+
+.fa-align-left:before{
+    content:""}
+
+.fa-align-center:before{
+    content:""}
+
+.fa-align-right:before{
+    content:""}
+
+.fa-align-justify:before{
+    content:""}
+
+.fa-list:before{
+    content:""}
+
+.fa-dedent:before,.fa-outdent:before{
+    content:""}
+
+.fa-indent:before{
+    content:""}
+
+.fa-video-camera:before{
+    content:""}
+
+.fa-photo:before,.fa-image:before,.fa-picture-o:before{
+    content:""}
+
+.fa-pencil:before{
+    content:""}
+
+.fa-map-marker:before{
+    content:""}
+
+.fa-adjust:before{
+    content:""}
+
+.fa-tint:before{
+    content:""}
+
+.fa-edit:before,.fa-pencil-square-o:before{
+    content:""}
+
+.fa-share-square-o:before{
+    content:""}
+
+.fa-check-square-o:before{
+    content:""}
+
+.fa-arrows:before{
+    content:""}
+
+.fa-step-backward:before{
+    content:""}
+
+.fa-fast-backward:before{
+    content:""}
+
+.fa-backward:before{
+    content:""}
+
+.fa-play:before{
+    content:""}
+
+.fa-pause:before{
+    content:""}
+
+.fa-stop:before{
+    content:""}
+
+.fa-forward:before{
+    content:""}
+
+.fa-fast-forward:before{
+    content:""}
+
+.fa-step-forward:before{
+    content:""}
+
+.fa-eject:before{
+    content:""}
+
+.fa-chevron-left:before{
+    content:""}
+
+.fa-chevron-right:before{
+    content:""}
+
+.fa-plus-circle:before{
+    content:""}
+
+.fa-minus-circle:before{
+    content:""}
+
+.fa-times-circle:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before{
+    content:""}
+
+.fa-check-circle:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before{
+    content:""}
+
+.fa-question-circle:before{
+    content:""}
+
+.fa-info-circle:before{
+    content:""}
+
+.fa-crosshairs:before{
+    content:""}
+
+.fa-times-circle-o:before{
+    content:""}
+
+.fa-check-circle-o:before{
+    content:""}
+
+.fa-ban:before{
+    content:""}
+
+.fa-arrow-left:before{
+    content:""}
+
+.fa-arrow-right:before{
+    content:""}
+
+.fa-arrow-up:before{
+    content:""}
+
+.fa-arrow-down:before{
+    content:""}
+
+.fa-mail-forward:before,.fa-share:before{
+    content:""}
+
+.fa-expand:before{
+    content:""}
+
+.fa-compress:before{
+    content:""}
+
+.fa-plus:before{
+    content:""}
+
+.fa-minus:before{
+    content:""}
+
+.fa-asterisk:before{
+    content:""}
+
+.fa-exclamation-circle:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.rst-content .admonition-title:before{
+    content:""}
+
+.fa-gift:before{
+    content:""}
+
+.fa-leaf:before{
+    content:""}
+
+.fa-fire:before,.icon-fire:before{
+    content:""}
+
+.fa-eye:before{
+    content:""}
+
+.fa-eye-slash:before{
+    content:""}
+
+.fa-warning:before,.fa-exclamation-triangle:before{
+    content:""}
+
+.fa-plane:before{
+    content:""}
+
+.fa-calendar:before{
+    content:""}
+
+.fa-random:before{
+    content:""}
+
+.fa-comment:before{
+    content:""}
+
+.fa-magnet:before{
+    content:""}
+
+.fa-chevron-up:before{
+    content:""}
+
+.fa-chevron-down:before{
+    content:""}
+
+.fa-retweet:before{
+    content:""}
+
+.fa-shopping-cart:before{
+    content:""}
+
+.fa-folder:before{
+    content:""}
+
+.fa-folder-open:before{
+    content:""}
+
+.fa-arrows-v:before{
+    content:""}
+
+.fa-arrows-h:before{
+    content:""}
+
+.fa-bar-chart-o:before{
+    content:"ï‚€"}
+
+.fa-twitter-square:before{
+    content:""}
+
+.fa-facebook-square:before{
+    content:"ï‚‚"}
+
+.fa-camera-retro:before{
+    content:""}
+
+.fa-key:before{
+    content:"ï‚„"}
+
+.fa-gears:before,.fa-cogs:before{
+    content:"ï‚…"}
+
+.fa-comments:before{
+    content:""}
+
+.fa-thumbs-o-up:before{
+    content:""}
+
+.fa-thumbs-o-down:before{
+    content:""}
+
+.fa-star-half:before{
+    content:""}
+
+.fa-heart-o:before{
+    content:"ï‚Š"}
+
+.fa-sign-out:before{
+    content:"ï‚‹"}
+
+.fa-linkedin-square:before{
+    content:""}
+
+.fa-thumb-tack:before{
+    content:""}
+
+.fa-external-link:before{
+    content:"ï‚Ž"}
+
+.fa-sign-in:before{
+    content:""}
+
+.fa-trophy:before{
+    content:"ï‚‘"}
+
+.fa-github-square:before{
+    content:"ï‚’"}
+
+.fa-upload:before{
+    content:"ï‚“"}
+
+.fa-lemon-o:before{
+    content:"ï‚”"}
+
+.fa-phone:before{
+    content:"ï‚•"}
+
+.fa-square-o:before{
+    content:"ï‚–"}
+
+.fa-bookmark-o:before{
+    content:"ï‚—"}
+
+.fa-phone-square:before{
+    content:""}
+
+.fa-twitter:before{
+    content:"ï‚™"}
+
+.fa-facebook:before{
+    content:"ï‚š"}
+
+.fa-github:before,.icon-github:before{
+    content:"ï‚›"}
+
+.fa-unlock:before{
+    content:""}
+
+.fa-credit-card:before{
+    content:""}
+
+.fa-rss:before{
+    content:"ï‚ž"}
+
+.fa-hdd-o:before{
+    content:"ï‚ "}
+
+.fa-bullhorn:before{
+    content:"ï‚¡"}
+
+.fa-bell:before{
+    content:""}
+
+.fa-certificate:before{
+    content:"ï‚£"}
+
+.fa-hand-o-right:before{
+    content:""}
+
+.fa-hand-o-left:before{
+    content:"ï‚¥"}
+
+.fa-hand-o-up:before{
+    content:""}
+
+.fa-hand-o-down:before{
+    content:""}
+
+.fa-arrow-circle-left:before,.icon-circle-arrow-left:before{
+    content:""}
+
+.fa-arrow-circle-right:before,.icon-circle-arrow-right:before{
+    content:"ï‚©"}
+
+.fa-arrow-circle-up:before{
+    content:""}
+
+.fa-arrow-circle-down:before{
+    content:"ï‚«"}
+
+.fa-globe:before{
+    content:""}
+
+.fa-wrench:before{
+    content:"ï‚­"}
+
+.fa-tasks:before{
+    content:"ï‚®"}
+
+.fa-filter:before{
+    content:"ï‚°"}
+
+.fa-briefcase:before{
+    content:""}
+
+.fa-arrows-alt:before{
+    content:""}
+
+.fa-group:before,.fa-users:before{
+    content:""}
+
+.fa-chain:before,.fa-link:before,.icon-link:before{
+    content:""}
+
+.fa-cloud:before{
+    content:""}
+
+.fa-flask:before{
+    content:""}
+
+.fa-cut:before,.fa-scissors:before{
+    content:""}
+
+.fa-copy:before,.fa-files-o:before{
+    content:""}
+
+.fa-paperclip:before{
+    content:""}
+
+.fa-save:before,.fa-floppy-o:before{
+    content:""}
+
+.fa-square:before{
+    content:""}
+
+.fa-navicon:before,.fa-reorder:before,.fa-bars:before{
+    content:""}
+
+.fa-list-ul:before{
+    content:""}
+
+.fa-list-ol:before{
+    content:""}
+
+.fa-strikethrough:before{
+    content:""}
+
+.fa-underline:before{
+    content:""}
+
+.fa-table:before{
+    content:""}
+
+.fa-magic:before{
+    content:""}
+
+.fa-truck:before{
+    content:""}
+
+.fa-pinterest:before{
+    content:""}
+
+.fa-pinterest-square:before{
+    content:""}
+
+.fa-google-plus-square:before{
+    content:""}
+
+.fa-google-plus:before{
+    content:""}
+
+.fa-money:before{
+    content:""}
+
+.fa-caret-down:before,.wy-dropdown .caret:before,.icon-caret-down:before{
+    content:""}
+
+.fa-caret-up:before{
+    content:""}
+
+.fa-caret-left:before{
+    content:""}
+
+.fa-caret-right:before{
+    content:""}
+
+.fa-columns:before{
+    content:""}
+
+.fa-unsorted:before,.fa-sort:before{
+    content:""}
+
+.fa-sort-down:before,.fa-sort-desc:before{
+    content:""}
+
+.fa-sort-up:before,.fa-sort-asc:before{
+    content:""}
+
+.fa-envelope:before{
+    content:""}
+
+.fa-linkedin:before{
+    content:""}
+
+.fa-rotate-left:before,.fa-undo:before{
+    content:""}
+
+.fa-legal:before,.fa-gavel:before{
+    content:""}
+
+.fa-dashboard:before,.fa-tachometer:before{
+    content:""}
+
+.fa-comment-o:before{
+    content:""}
+
+.fa-comments-o:before{
+    content:""}
+
+.fa-flash:before,.fa-bolt:before{
+    content:""}
+
+.fa-sitemap:before{
+    content:""}
+
+.fa-umbrella:before{
+    content:""}
+
+.fa-paste:before,.fa-clipboard:before{
+    content:""}
+
+.fa-lightbulb-o:before{
+    content:""}
+
+.fa-exchange:before{
+    content:""}
+
+.fa-cloud-download:before{
+    content:""}
+
+.fa-cloud-upload:before{
+    content:""}
+
+.fa-user-md:before{
+    content:""}
+
+.fa-stethoscope:before{
+    content:""}
+
+.fa-suitcase:before{
+    content:""}
+
+.fa-bell-o:before{
+    content:"ï‚¢"}
+
+.fa-coffee:before{
+    content:""}
+
+.fa-cutlery:before{
+    content:""}
+
+.fa-file-text-o:before{
+    content:""}
+
+.fa-building-o:before{
+    content:""}
+
+.fa-hospital-o:before{
+    content:""}
+
+.fa-ambulance:before{
+    content:""}
+
+.fa-medkit:before{
+    content:""}
+
+.fa-fighter-jet:before{
+    content:""}
+
+.fa-beer:before{
+    content:""}
+
+.fa-h-square:before{
+    content:""}
+
+.fa-plus-square:before{
+    content:""}
+
+.fa-angle-double-left:before{
+    content:"ï„€"}
+
+.fa-angle-double-right:before{
+    content:""}
+
+.fa-angle-double-up:before{
+    content:"ï„‚"}
+
+.fa-angle-double-down:before{
+    content:""}
+
+.fa-angle-left:before{
+    content:"ï„„"}
+
+.fa-angle-right:before{
+    content:"ï„…"}
+
+.fa-angle-up:before{
+    content:""}
+
+.fa-angle-down:before{
+    content:""}
+
+.fa-desktop:before{
+    content:""}
+
+.fa-laptop:before{
+    content:""}
+
+.fa-tablet:before{
+    content:"ï„Š"}
+
+.fa-mobile-phone:before,.fa-mobile:before{
+    content:"ï„‹"}
+
+.fa-circle-o:before{
+    content:""}
+
+.fa-quote-left:before{
+    content:""}
+
+.fa-quote-right:before{
+    content:"ï„Ž"}
+
+.fa-spinner:before{
+    content:""}
+
+.fa-circle:before{
+    content:"ï„‘"}
+
+.fa-mail-reply:before,.fa-reply:before{
+    content:"ï„’"}
+
+.fa-github-alt:before{
+    content:"ï„“"}
+
+.fa-folder-o:before{
+    content:"ï„”"}
+
+.fa-folder-open-o:before{
+    content:"ï„•"}
+
+.fa-smile-o:before{
+    content:""}
+
+.fa-frown-o:before{
+    content:"ï„™"}
+
+.fa-meh-o:before{
+    content:"ï„š"}
+
+.fa-gamepad:before{
+    content:"ï„›"}
+
+.fa-keyboard-o:before{
+    content:""}
+
+.fa-flag-o:before{
+    content:""}
+
+.fa-flag-checkered:before{
+    content:"ï„ž"}
+
+.fa-terminal:before{
+    content:"ï„ "}
+
+.fa-code:before{
+    content:"ï„¡"}
+
+.fa-mail-reply-all:before,.fa-reply-all:before{
+    content:"ï„¢"}
+
+.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{
+    content:"ï„£"}
+
+.fa-location-arrow:before{
+    content:""}
+
+.fa-crop:before{
+    content:"ï„¥"}
+
+.fa-code-fork:before{
+    content:""}
+
+.fa-unlink:before,.fa-chain-broken:before{
+    content:""}
+
+.fa-question:before{
+    content:""}
+
+.fa-info:before{
+    content:"ï„©"}
+
+.fa-exclamation:before{
+    content:""}
+
+.fa-superscript:before{
+    content:"ï„«"}
+
+.fa-subscript:before{
+    content:""}
+
+.fa-eraser:before{
+    content:"ï„­"}
+
+.fa-puzzle-piece:before{
+    content:"ï„®"}
+
+.fa-microphone:before{
+    content:"ï„°"}
+
+.fa-microphone-slash:before{
+    content:""}
+
+.fa-shield:before{
+    content:""}
+
+.fa-calendar-o:before{
+    content:""}
+
+.fa-fire-extinguisher:before{
+    content:"ï„´"}
+
+.fa-rocket:before{
+    content:""}
+
+.fa-maxcdn:before{
+    content:""}
+
+.fa-chevron-circle-left:before{
+    content:"ï„·"}
+
+.fa-chevron-circle-right:before{
+    content:""}
+
+.fa-chevron-circle-up:before{
+    content:""}
+
+.fa-chevron-circle-down:before{
+    content:""}
+
+.fa-html5:before{
+    content:"ï„»"}
+
+.fa-css3:before{
+    content:""}
+
+.fa-anchor:before{
+    content:""}
+
+.fa-unlock-alt:before{
+    content:""}
+
+.fa-bullseye:before{
+    content:"ï…€"}
+
+.fa-ellipsis-h:before{
+    content:""}
+
+.fa-ellipsis-v:before{
+    content:"ï…‚"}
+
+.fa-rss-square:before{
+    content:"ï…ƒ"}
+
+.fa-play-circle:before{
+    content:"ï…„"}
+
+.fa-ticket:before{
+    content:"ï……"}
+
+.fa-minus-square:before{
+    content:"ï…†"}
+
+.fa-minus-square-o:before{
+    content:"ï…‡"}
+
+.fa-level-up:before{
+    content:"ï…ˆ"}
+
+.fa-level-down:before{
+    content:"ï…‰"}
+
+.fa-check-square:before{
+    content:"ï…Š"}
+
+.fa-pencil-square:before{
+    content:"ï…‹"}
+
+.fa-external-link-square:before{
+    content:""}
+
+.fa-share-square:before{
+    content:""}
+
+.fa-compass:before{
+    content:"ï…Ž"}
+
+.fa-toggle-down:before,.fa-caret-square-o-down:before{
+    content:""}
+
+.fa-toggle-up:before,.fa-caret-square-o-up:before{
+    content:"ï…‘"}
+
+.fa-toggle-right:before,.fa-caret-square-o-right:before{
+    content:"ï…’"}
+
+.fa-euro:before,.fa-eur:before{
+    content:"ï…“"}
+
+.fa-gbp:before{
+    content:"ï…”"}
+
+.fa-dollar:before,.fa-usd:before{
+    content:"ï…•"}
+
+.fa-rupee:before,.fa-inr:before{
+    content:"ï…–"}
+
+.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{
+    content:"ï…—"}
+
+.fa-ruble:before,.fa-rouble:before,.fa-rub:before{
+    content:"ï…˜"}
+
+.fa-won:before,.fa-krw:before{
+    content:"ï…™"}
+
+.fa-bitcoin:before,.fa-btc:before{
+    content:"ï…š"}
+
+.fa-file:before{
+    content:"ï…›"}
+
+.fa-file-text:before{
+    content:""}
+
+.fa-sort-alpha-asc:before{
+    content:""}
+
+.fa-sort-alpha-desc:before{
+    content:"ï…ž"}
+
+.fa-sort-amount-asc:before{
+    content:"ï… "}
+
+.fa-sort-amount-desc:before{
+    content:"ï…¡"}
+
+.fa-sort-numeric-asc:before{
+    content:"ï…¢"}
+
+.fa-sort-numeric-desc:before{
+    content:"ï…£"}
+
+.fa-thumbs-up:before{
+    content:"ï…¤"}
+
+.fa-thumbs-down:before{
+    content:"ï…¥"}
+
+.fa-youtube-square:before{
+    content:"ï…¦"}
+
+.fa-youtube:before{
+    content:"ï…§"}
+
+.fa-xing:before{
+    content:"ï…¨"}
+
+.fa-xing-square:before{
+    content:"ï…©"}
+
+.fa-youtube-play:before{
+    content:"ï…ª"}
+
+.fa-dropbox:before{
+    content:"ï…«"}
+
+.fa-stack-overflow:before{
+    content:"ï…¬"}
+
+.fa-instagram:before{
+    content:"ï…­"}
+
+.fa-flickr:before{
+    content:"ï…®"}
+
+.fa-adn:before{
+    content:"ï…°"}
+
+.fa-bitbucket:before,.icon-bitbucket:before{
+    content:"ï…±"}
+
+.fa-bitbucket-square:before{
+    content:"ï…²"}
+
+.fa-tumblr:before{
+    content:"ï…³"}
+
+.fa-tumblr-square:before{
+    content:"ï…´"}
+
+.fa-long-arrow-down:before{
+    content:"ï…µ"}
+
+.fa-long-arrow-up:before{
+    content:"ï…¶"}
+
+.fa-long-arrow-left:before{
+    content:"ï…·"}
+
+.fa-long-arrow-right:before{
+    content:"ï…¸"}
+
+.fa-apple:before{
+    content:"ï…¹"}
+
+.fa-windows:before{
+    content:"ï…º"}
+
+.fa-android:before{
+    content:"ï…»"}
+
+.fa-linux:before{
+    content:"ï…¼"}
+
+.fa-dribbble:before{
+    content:"ï…½"}
+
+.fa-skype:before{
+    content:"ï…¾"}
+
+.fa-foursquare:before{
+    content:""}
+
+.fa-trello:before{
+    content:""}
+
+.fa-female:before{
+    content:""}
+
+.fa-male:before{
+    content:""}
+
+.fa-gittip:before{
+    content:""}
+
+.fa-sun-o:before{
+    content:""}
+
+.fa-moon-o:before{
+    content:""}
+
+.fa-archive:before{
+    content:""}
+
+.fa-bug:before{
+    content:""}
+
+.fa-vk:before{
+    content:""}
+
+.fa-weibo:before{
+    content:""}
+
+.fa-renren:before{
+    content:""}
+
+.fa-pagelines:before{
+    content:""}
+
+.fa-stack-exchange:before{
+    content:""}
+
+.fa-arrow-circle-o-right:before{
+    content:""}
+
+.fa-arrow-circle-o-left:before{
+    content:""}
+
+.fa-toggle-left:before,.fa-caret-square-o-left:before{
+    content:""}
+
+.fa-dot-circle-o:before{
+    content:""}
+
+.fa-wheelchair:before{
+    content:""}
+
+.fa-vimeo-square:before{
+    content:""}
+
+.fa-turkish-lira:before,.fa-try:before{
+    content:""}
+
+.fa-plus-square-o:before{
+    content:""}
+
+.fa-space-shuttle:before{
+    content:""}
+
+.fa-slack:before{
+    content:""}
+
+.fa-envelope-square:before{
+    content:""}
+
+.fa-wordpress:before{
+    content:""}
+
+.fa-openid:before{
+    content:""}
+
+.fa-institution:before,.fa-bank:before,.fa-university:before{
+    content:""}
+
+.fa-mortar-board:before,.fa-graduation-cap:before{
+    content:""}
+
+.fa-yahoo:before{
+    content:""}
+
+.fa-google:before{
+    content:""}
+
+.fa-reddit:before{
+    content:""}
+
+.fa-reddit-square:before{
+    content:""}
+
+.fa-stumbleupon-circle:before{
+    content:""}
+
+.fa-stumbleupon:before{
+    content:""}
+
+.fa-delicious:before{
+    content:""}
+
+.fa-digg:before{
+    content:""}
+
+.fa-pied-piper-square:before,.fa-pied-piper:before{
+    content:""}
+
+.fa-pied-piper-alt:before{
+    content:""}
+
+.fa-drupal:before{
+    content:""}
+
+.fa-joomla:before{
+    content:""}
+
+.fa-language:before{
+    content:""}
+
+.fa-fax:before{
+    content:""}
+
+.fa-building:before{
+    content:""}
+
+.fa-child:before{
+    content:""}
+
+.fa-paw:before{
+    content:""}
+
+.fa-spoon:before{
+    content:""}
+
+.fa-cube:before{
+    content:""}
+
+.fa-cubes:before{
+    content:""}
+
+.fa-behance:before{
+    content:""}
+
+.fa-behance-square:before{
+    content:""}
+
+.fa-steam:before{
+    content:""}
+
+.fa-steam-square:before{
+    content:""}
+
+.fa-recycle:before{
+    content:""}
+
+.fa-automobile:before,.fa-car:before{
+    content:""}
+
+.fa-cab:before,.fa-taxi:before{
+    content:""}
+
+.fa-tree:before{
+    content:""}
+
+.fa-spotify:before{
+    content:""}
+
+.fa-deviantart:before{
+    content:""}
+
+.fa-soundcloud:before{
+    content:""}
+
+.fa-database:before{
+    content:""}
+
+.fa-file-pdf-o:before{
+    content:""}
+
+.fa-file-word-o:before{
+    content:""}
+
+.fa-file-excel-o:before{
+    content:""}
+
+.fa-file-powerpoint-o:before{
+    content:""}
+
+.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{
+    content:""}
+
+.fa-file-zip-o:before,.fa-file-archive-o:before{
+    content:""}
+
+.fa-file-sound-o:before,.fa-file-audio-o:before{
+    content:""}
+
+.fa-file-movie-o:before,.fa-file-video-o:before{
+    content:""}
+
+.fa-file-code-o:before{
+    content:""}
+
+.fa-vine:before{
+    content:""}
+
+.fa-codepen:before{
+    content:""}
+
+.fa-jsfiddle:before{
+    content:""}
+
+.fa-life-bouy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{
+    content:""}
+
+.fa-circle-o-notch:before{
+    content:""}
+
+.fa-ra:before,.fa-rebel:before{
+    content:""}
+
+.fa-ge:before,.fa-empire:before{
+    content:""}
+
+.fa-git-square:before{
+    content:""}
+
+.fa-git:before{
+    content:""}
+
+.fa-hacker-news:before{
+    content:""}
+
+.fa-tencent-weibo:before{
+    content:""}
+
+.fa-qq:before{
+    content:""}
+
+.fa-wechat:before,.fa-weixin:before{
+    content:""}
+
+.fa-send:before,.fa-paper-plane:before{
+    content:""}
+
+.fa-send-o:before,.fa-paper-plane-o:before{
+    content:""}
+
+.fa-history:before{
+    content:""}
+
+.fa-circle-thin:before{
+    content:""}
+
+.fa-header:before{
+    content:""}
+
+.fa-paragraph:before{
+    content:""}
+
+.fa-sliders:before{
+    content:""}
+
+.fa-share-alt:before{
+    content:""}
+
+.fa-share-alt-square:before{
+    content:""}
+
+.fa-bomb:before{
+    content:""}
+
+.fa,.rst-content .admonition-title,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.icon,.wy-dropdown .caret,.wy-inline-validate.wy-inline-validate-success .wy-input-context,.wy-inline-validate.wy-inline-validate-danger .wy-input-context,.wy-inline-validate.wy-inline-validate-warning .wy-input-context,.wy-inline-validate.wy-inline-validate-info .wy-input-context{
+    font-family:inherit}
+
+.fa:before,.rst-content .admonition-title:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content dl dt .headerlink:before,.icon:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before{
+    font-family:"FontAwesome";
+    display:inline-block;
+    font-style:normal;
+    font-weight:normal;
+    line-height:1;
+    text-decoration:inherit}
+
+a .fa,a .rst-content .admonition-title,.rst-content a .admonition-title,a .rst-content h1 .headerlink,.rst-content h1 a .headerlink,a .rst-content h2 .headerlink,.rst-content h2 a .headerlink,a .rst-content h3 .headerlink,.rst-content h3 a .headerlink,a .rst-content h4 .headerlink,.rst-content h4 a .headerlink,a .rst-content h5 .headerlink,.rst-content h5 a .headerlink,a .rst-content h6 .headerlink,.rst-content h6 a .headerlink,a .rst-content dl dt .headerlink,.rst-content dl dt a .headerlink,a .icon{
+    display:inline-block;
+    text-decoration:inherit}
+
+.btn .fa,.btn .rst-content .admonition-title,.rst-content .btn .admonition-title,.btn .rst-content h1 .headerlink,.rst-content h1 .btn .headerlink,.btn .rst-content h2 .headerlink,.rst-content h2 .btn .headerlink,.btn .rst-content h3 .headerlink,.rst-content h3 .btn .headerlink,.btn .rst-content h4 .headerlink,.rst-content h4 .btn .headerlink,.btn .rst-content h5 .headerlink,.rst-content h5 .btn .headerlink,.btn .rst-content h6 .headerlink,.rst-content h6 .btn .headerlink,.btn .rst-content dl dt .headerlink,.rst-content dl dt .btn .headerlink,.btn .icon,.nav .fa,.nav .rst-content .admonition-title,.rst-content .nav .admonition-title,.nav .rst-content h1 .headerlink,.rst-content h1 .nav .headerlink,.nav .rst-content h2 .headerlink,.rst-content h2 .nav .headerlink,.nav .rst-content h3 .headerlink,.rst-content h3 .nav .headerlink,.nav .rst-content h4 .headerlink,.rst-content h4 .nav .headerlink,.nav .rst-content h5 .headerlink,.rst-content h5 .nav .headerlink,.nav .rst-content h6 .headerlink,.rst-content h6 .nav .headerlink,.nav .rst-content dl dt .headerlink,.rst-content dl dt .nav .headerlink,.nav .icon{
+    display:inline}
+
+.btn .fa.fa-large,.btn .rst-content .fa-large.admonition-title,.rst-content .btn .fa-large.admonition-title,.btn .rst-content h1 .fa-large.headerlink,.rst-content h1 .btn .fa-large.headerlink,.btn .rst-content h2 .fa-large.headerlink,.rst-content h2 .btn .fa-large.headerlink,.btn .rst-content h3 .fa-large.headerlink,.rst-content h3 .btn .fa-large.headerlink,.btn .rst-content h4 .fa-large.headerlink,.rst-content h4 .btn .fa-large.headerlink,.btn .rst-content h5 .fa-large.headerlink,.rst-content h5 .btn .fa-large.headerlink,.btn .rst-content h6 .fa-large.headerlink,.rst-content h6 .btn .fa-large.headerlink,.btn .rst-content dl dt .fa-large.headerlink,.rst-content dl dt .btn .fa-large.headerlink,.btn .fa-large.icon,.nav .fa.fa-large,.nav .rst-content .fa-large.admonition-title,.rst-content .nav .fa-large.admonition-title,.nav .rst-content h1 .fa-large.headerlink,.rst-content h1 .nav .fa-large.headerlink,.nav .rst-content h2 .fa-large.headerlink,.rst-content h2 .nav .fa-large.headerlink,.nav .rst-content h3 .fa-large.headerlink,.rst-content h3 .nav .fa-large.headerlink,.nav .rst-content h4 .fa-large.headerlink,.rst-content h4 .nav .fa-large.headerlink,.nav .rst-content h5 .fa-large.headerlink,.rst-content h5 .nav .fa-large.headerlink,.nav .rst-content h6 .fa-large.headerlink,.rst-content h6 .nav .fa-large.headerlink,.nav .rst-content dl dt .fa-large.headerlink,.rst-content dl dt .nav .fa-large.headerlink,.nav .fa-large.icon{
+    line-height:0.9em}
+
+.btn .fa.fa-spin,.btn .rst-content .fa-spin.admonition-title,.rst-content .btn .fa-spin.admonition-title,.btn .rst-content h1 .fa-spin.headerlink,.rst-content h1 .btn .fa-spin.headerlink,.btn .rst-content h2 .fa-spin.headerlink,.rst-content h2 .btn .fa-spin.headerlink,.btn .rst-content h3 .fa-spin.headerlink,.rst-content h3 .btn .fa-spin.headerlink,.btn .rst-content h4 .fa-spin.headerlink,.rst-content h4 .btn .fa-spin.headerlink,.btn .rst-content h5 .fa-spin.headerlink,.rst-content h5 .btn .fa-spin.headerlink,.btn .rst-content h6 .fa-spin.headerlink,.rst-content h6 .btn .fa-spin.headerlink,.btn .rst-content dl dt .fa-spin.headerlink,.rst-content dl dt .btn .fa-spin.headerlink,.btn .fa-spin.icon,.nav .fa.fa-spin,.nav .rst-content .fa-spin.admonition-title,.rst-content .nav .fa-spin.admonition-title,.nav .rst-content h1 .fa-spin.headerlink,.rst-content h1 .nav .fa-spin.headerlink,.nav .rst-content h2 .fa-spin.headerlink,.rst-content h2 .nav .fa-spin.headerlink,.nav .rst-content h3 .fa-spin.headerlink,.rst-content h3 .nav .fa-spin.headerlink,.nav .rst-content h4 .fa-spin.headerlink,.rst-content h4 .nav .fa-spin.headerlink,.nav .rst-content h5 .fa-spin.headerlink,.rst-content h5 .nav .fa-spin.headerlink,.nav .rst-content h6 .fa-spin.headerlink,.rst-content h6 .nav .fa-spin.headerlink,.nav .rst-content dl dt .fa-spin.headerlink,.rst-content dl dt .nav .fa-spin.headerlink,.nav .fa-spin.icon{
+    display:inline-block}
+
+.btn.fa:before,.rst-content .btn.admonition-title:before,.rst-content h1 .btn.headerlink:before,.rst-content h2 .btn.headerlink:before,.rst-content h3 .btn.headerlink:before,.rst-content h4 .btn.headerlink:before,.rst-content h5 .btn.headerlink:before,.rst-content h6 .btn.headerlink:before,.rst-content dl dt .btn.headerlink:before,.btn.icon:before{
+    opacity:0.5;
+    -webkit-transition:opacity 0.05s ease-in;
+    -moz-transition:opacity 0.05s ease-in;
+    transition:opacity 0.05s ease-in}
+
+.btn.fa:hover:before,.rst-content .btn.admonition-title:hover:before,.rst-content h1 .btn.headerlink:hover:before,.rst-content h2 .btn.headerlink:hover:before,.rst-content h3 .btn.headerlink:hover:before,.rst-content h4 .btn.headerlink:hover:before,.rst-content h5 .btn.headerlink:hover:before,.rst-content h6 .btn.headerlink:hover:before,.rst-content dl dt .btn.headerlink:hover:before,.btn.icon:hover:before{
+    opacity:1}
+
+.btn-mini .fa:before,.btn-mini .rst-content .admonition-title:before,.rst-content .btn-mini .admonition-title:before,.btn-mini .rst-content h1 .headerlink:before,.rst-content h1 .btn-mini .headerlink:before,.btn-mini .rst-content h2 .headerlink:before,.rst-content h2 .btn-mini .headerlink:before,.btn-mini .rst-content h3 .headerlink:before,.rst-content h3 .btn-mini .headerlink:before,.btn-mini .rst-content h4 .headerlink:before,.rst-content h4 .btn-mini .headerlink:before,.btn-mini .rst-content h5 .headerlink:before,.rst-content h5 .btn-mini .headerlink:before,.btn-mini .rst-content h6 .headerlink:before,.rst-content h6 .btn-mini .headerlink:before,.btn-mini .rst-content dl dt .headerlink:before,.rst-content dl dt .btn-mini .headerlink:before,.btn-mini .icon:before{
+    font-size:14px;
+    vertical-align:-15%}
+
+.wy-alert,.rst-content .note,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .warning,.rst-content .seealso,.rst-content .admonition-todo{
+    padding:12px;
+    line-height:24px;
+    margin-bottom:24px;
+    background:#e7f2fa}
+
+.wy-alert-title,.rst-content .admonition-title{
+    color:#fff;
+    font-weight:bold;
+    display:block;
+    color:#fff;
+    background:#6ab0de;
+    margin:-12px;
+    padding:6px 12px;
+    margin-bottom:12px}
+
+.wy-alert.wy-alert-danger,.rst-content .wy-alert-danger.note,.rst-content .wy-alert-danger.attention,.rst-content .wy-alert-danger.caution,.rst-content .danger,.rst-content .error,.rst-content .wy-alert-danger.hint,.rst-content .wy-alert-danger.important,.rst-content .wy-alert-danger.tip,.rst-content .wy-alert-danger.warning,.rst-content .wy-alert-danger.seealso,.rst-content .wy-alert-danger.admonition-todo{
+    background:#fdf3f2}
+
+.wy-alert.wy-alert-danger .wy-alert-title,.rst-content .wy-alert-danger.note .wy-alert-title,.rst-content .wy-alert-danger.attention .wy-alert-title,.rst-content .wy-alert-danger.caution .wy-alert-title,.rst-content .danger .wy-alert-title,.rst-content .error .wy-alert-title,.rst-content .wy-alert-danger.hint .wy-alert-title,.rst-content .wy-alert-danger.important .wy-alert-title,.rst-content .wy-alert-danger.tip .wy-alert-title,.rst-content .wy-alert-danger.warning .wy-alert-title,.rst-content .wy-alert-danger.seealso .wy-alert-title,.rst-content .wy-alert-danger.admonition-todo .wy-alert-title,.wy-alert.wy-alert-danger .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-danger .admonition-title,.rst-content .wy-alert-danger.note .admonition-title,.rst-content .wy-alert-danger.attention .admonition-title,.rst-content .wy-alert-danger.caution .admonition-title,.rst-content .danger .admonition-title,.rst-content .error .admonition-title,.rst-content .wy-alert-danger.hint .admonition-title,.rst-content .wy-alert-danger.important .admonition-title,.rst-content .wy-alert-danger.tip .admonition-title,.rst-content .wy-alert-danger.warning .admonition-title,.rst-content .wy-alert-danger.seealso .admonition-title,.rst-content .wy-alert-danger.admonition-todo .admonition-title{
+    background:#f29f97}
+
+.wy-alert.wy-alert-warning,.rst-content .wy-alert-warning.note,.rst-content .attention,.rst-content .caution,.rst-content .wy-alert-warning.danger,.rst-content .wy-alert-warning.error,.rst-content .wy-alert-warning.hint,.rst-content .wy-alert-warning.important,.rst-content .wy-alert-warning.tip,.rst-content .warning,.rst-content .wy-alert-warning.seealso,.rst-content .admonition-todo{
+    background:#ffedcc}
+
+.wy-alert.wy-alert-warning .wy-alert-title,.rst-content .wy-alert-warning.note .wy-alert-title,.rst-content .attention .wy-alert-title,.rst-content .caution .wy-alert-title,.rst-content .wy-alert-warning.danger .wy-alert-title,.rst-content .wy-alert-warning.error .wy-alert-title,.rst-content .wy-alert-warning.hint .wy-alert-title,.rst-content .wy-alert-warning.important .wy-alert-title,.rst-content .wy-alert-warning.tip .wy-alert-title,.rst-content .warning .wy-alert-title,.rst-content .wy-alert-warning.seealso .wy-alert-title,.rst-content .admonition-todo .wy-alert-title,.wy-alert.wy-alert-warning .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-warning .admonition-title,.rst-content .wy-alert-warning.note .admonition-title,.rst-content .attention .admonition-title,.rst-content .caution .admonition-title,.rst-content .wy-alert-warning.danger .admonition-title,.rst-content .wy-alert-warning.error .admonition-title,.rst-content .wy-alert-warning.hint .admonition-title,.rst-content .wy-alert-warning.important .admonition-title,.rst-content .wy-alert-warning.tip .admonition-title,.rst-content .warning .admonition-title,.rst-content .wy-alert-warning.seealso .admonition-title,.rst-content .admonition-todo .admonition-title{
+    background:#f0b37e}
+
+.wy-alert.wy-alert-info,.rst-content .note,.rst-content .wy-alert-info.attention,.rst-content .wy-alert-info.caution,.rst-content .wy-alert-info.danger,.rst-content .wy-alert-info.error,.rst-content .wy-alert-info.hint,.rst-content .wy-alert-info.important,.rst-content .wy-alert-info.tip,.rst-content .wy-alert-info.warning,.rst-content .seealso,.rst-content .wy-alert-info.admonition-todo{
+    background:#e7f2fa}
+
+.wy-alert.wy-alert-info .wy-alert-title,.rst-content .note .wy-alert-title,.rst-content .wy-alert-info.attention .wy-alert-title,.rst-content .wy-alert-info.caution .wy-alert-title,.rst-content .wy-alert-info.danger .wy-alert-title,.rst-content .wy-alert-info.error .wy-alert-title,.rst-content .wy-alert-info.hint .wy-alert-title,.rst-content .wy-alert-info.important .wy-alert-title,.rst-content .wy-alert-info.tip .wy-alert-title,.rst-content .wy-alert-info.warning .wy-alert-title,.rst-content .seealso .wy-alert-title,.rst-content .wy-alert-info.admonition-todo .wy-alert-title,.wy-alert.wy-alert-info .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-info .admonition-title,.rst-content .note .admonition-title,.rst-content .wy-alert-info.attention .admonition-title,.rst-content .wy-alert-info.caution .admonition-title,.rst-content .wy-alert-info.danger .admonition-title,.rst-content .wy-alert-info.error .admonition-title,.rst-content .wy-alert-info.hint .admonition-title,.rst-content .wy-alert-info.important .admonition-title,.rst-content .wy-alert-info.tip .admonition-title,.rst-content .wy-alert-info.warning .admonition-title,.rst-content .seealso .admonition-title,.rst-content .wy-alert-info.admonition-todo .admonition-title{
+    background:#6ab0de}
+
+.wy-alert.wy-alert-success,.rst-content .wy-alert-success.note,.rst-content .wy-alert-success.attention,.rst-content .wy-alert-success.caution,.rst-content .wy-alert-success.danger,.rst-content .wy-alert-success.error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .wy-alert-success.warning,.rst-content .wy-alert-success.seealso,.rst-content .wy-alert-success.admonition-todo{
+    background:#dbfaf4}
+
+.wy-alert.wy-alert-success .wy-alert-title,.rst-content .wy-alert-success.note .wy-alert-title,.rst-content .wy-alert-success.attention .wy-alert-title,.rst-content .wy-alert-success.caution .wy-alert-title,.rst-content .wy-alert-success.danger .wy-alert-title,.rst-content .wy-alert-success.error .wy-alert-title,.rst-content .hint .wy-alert-title,.rst-content .important .wy-alert-title,.rst-content .tip .wy-alert-title,.rst-content .wy-alert-success.warning .wy-alert-title,.rst-content .wy-alert-success.seealso .wy-alert-title,.rst-content .wy-alert-success.admonition-todo .wy-alert-title,.wy-alert.wy-alert-success .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-success .admonition-title,.rst-content .wy-alert-success.note .admonition-title,.rst-content .wy-alert-success.attention .admonition-title,.rst-content .wy-alert-success.caution .admonition-title,.rst-content .wy-alert-success.danger .admonition-title,.rst-content .wy-alert-success.error .admonition-title,.rst-content .hint .admonition-title,.rst-content .important .admonition-title,.rst-content .tip .admonition-title,.rst-content .wy-alert-success.warning .admonition-title,.rst-content .wy-alert-success.seealso .admonition-title,.rst-content .wy-alert-success.admonition-todo .admonition-title{
+    background:#1abc9c}
+
+.wy-alert.wy-alert-neutral,.rst-content .wy-alert-neutral.note,.rst-content .wy-alert-neutral.attention,.rst-content .wy-alert-neutral.caution,.rst-content .wy-alert-neutral.danger,.rst-content .wy-alert-neutral.error,.rst-content .wy-alert-neutral.hint,.rst-content .wy-alert-neutral.important,.rst-content .wy-alert-neutral.tip,.rst-content .wy-alert-neutral.warning,.rst-content .wy-alert-neutral.seealso,.rst-content .wy-alert-neutral.admonition-todo{
+    background:#f3f6f6}
+
+.wy-alert.wy-alert-neutral .wy-alert-title,.rst-content .wy-alert-neutral.note .wy-alert-title,.rst-content .wy-alert-neutral.attention .wy-alert-title,.rst-content .wy-alert-neutral.caution .wy-alert-title,.rst-content .wy-alert-neutral.danger .wy-alert-title,.rst-content .wy-alert-neutral.error .wy-alert-title,.rst-content .wy-alert-neutral.hint .wy-alert-title,.rst-content .wy-alert-neutral.important .wy-alert-title,.rst-content .wy-alert-neutral.tip .wy-alert-title,.rst-content .wy-alert-neutral.warning .wy-alert-title,.rst-content .wy-alert-neutral.seealso .wy-alert-title,.rst-content .wy-alert-neutral.admonition-todo .wy-alert-title,.wy-alert.wy-alert-neutral .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-neutral .admonition-title,.rst-content .wy-alert-neutral.note .admonition-title,.rst-content .wy-alert-neutral.attention .admonition-title,.rst-content .wy-alert-neutral.caution .admonition-title,.rst-content .wy-alert-neutral.danger .admonition-title,.rst-content .wy-alert-neutral.error .admonition-title,.rst-content .wy-alert-neutral.hint .admonition-title,.rst-content .wy-alert-neutral.important .admonition-title,.rst-content .wy-alert-neutral.tip .admonition-title,.rst-content .wy-alert-neutral.warning .admonition-title,.rst-content .wy-alert-neutral.seealso .admonition-title,.rst-content .wy-alert-neutral.admonition-todo .admonition-title{
+    color:#404040;
+    background:#e1e4e5}
+
+.wy-alert.wy-alert-neutral a,.rst-content .wy-alert-neutral.note a,.rst-content .wy-alert-neutral.attention a,.rst-content .wy-alert-neutral.caution a,.rst-content .wy-alert-neutral.danger a,.rst-content .wy-alert-neutral.error a,.rst-content .wy-alert-neutral.hint a,.rst-content .wy-alert-neutral.important a,.rst-content .wy-alert-neutral.tip a,.rst-content .wy-alert-neutral.warning a,.rst-content .wy-alert-neutral.seealso a,.rst-content .wy-alert-neutral.admonition-todo a{
+    color:#2980B9}
+
+.wy-alert p:last-child,.rst-content .note p:last-child,.rst-content .attention p:last-child,.rst-content .caution p:last-child,.rst-content .danger p:last-child,.rst-content .error p:last-child,.rst-content .hint p:last-child,.rst-content .important p:last-child,.rst-content .tip p:last-child,.rst-content .warning p:last-child,.rst-content .seealso p:last-child,.rst-content .admonition-todo p:last-child{
+    margin-bottom:0}
+
+.wy-tray-container{
+    position:fixed;
+    bottom:0px;
+    left:0;
+    z-index:600}
+
+.wy-tray-container li{
+    display:block;
+    width:300px;
+    background:transparent;
+    color:#fff;
+    text-align:center;
+    box-shadow:0 5px 5px 0 rgba(0,0,0,0.1);
+    padding:0 24px;
+    min-width:20%;
+    opacity:0;
+    height:0;
+    line-height:56px;
+    overflow:hidden;
+    -webkit-transition:all 0.3s ease-in;
+    -moz-transition:all 0.3s ease-in;
+    transition:all 0.3s ease-in}
+
+.wy-tray-container li.wy-tray-item-success{
+    background:#27AE60}
+
+.wy-tray-container li.wy-tray-item-info{
+    background:#2980B9}
+
+.wy-tray-container li.wy-tray-item-warning{
+    background:#E67E22}
+
+.wy-tray-container li.wy-tray-item-danger{
+    background:#E74C3C}
+
+.wy-tray-container li.on{
+    opacity:1;
+    height:56px}
+
+@media screen and (max-width: 768px){
+    .wy-tray-container{
+        bottom:auto;
+        top:0;
+        width:100%}
+
+    .wy-tray-container li{
+        width:100%}
+
+}
+
+button{
+    font-size:100%;
+    margin:0;
+    vertical-align:baseline;
+    *vertical-align:middle;
+    cursor:pointer;
+    line-height:normal;
+    -webkit-appearance:button;
+    *overflow:visible}
+
+button::-moz-focus-inner,input::-moz-focus-inner{
+                             border:0;
+                             padding:0}
+
+button[disabled]{
+    cursor:default}
+
+.btn{
+    display:inline-block;
+    border-radius:2px;
+    line-height:normal;
+    white-space:nowrap;
+    text-align:center;
+    cursor:pointer;
+    font-size:100%;
+    padding:6px 12px 8px 12px;
+    color:#fff;
+    border:1px solid rgba(0,0,0,0.1);
+    background-color:#27AE60;
+    text-decoration:none;
+    font-weight:normal;
+    font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;
+    box-shadow:0px 1px 2px -1px rgba(255,255,255,0.5) inset,0px -2px 0px 0px rgba(0,0,0,0.1) inset;
+    outline-none:false;
+    vertical-align:middle;
+    *display:inline;
+    zoom:1;
+    -webkit-user-drag:none;
+    -webkit-user-select:none;
+    -moz-user-select:none;
+    -ms-user-select:none;
+    user-select:none;
+    -webkit-transition:all 0.1s linear;
+    -moz-transition:all 0.1s linear;
+    transition:all 0.1s linear}
+
+.btn-hover{
+    background:#2e8ece;
+    color:#fff}
+
+.btn:hover{
+    background:#2cc36b;
+    color:#fff}
+
+.btn:focus{
+    background:#2cc36b;
+    outline:0}
+
+.btn:active{
+    box-shadow:0px -1px 0px 0px rgba(0,0,0,0.05) inset,0px 2px 0px 0px rgba(0,0,0,0.1) inset;
+    padding:8px 12px 6px 12px}
+
+.btn:visited{
+    color:#fff}
+
+.btn:disabled{
+    background-image:none;
+    filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);
+    filter:alpha(opacity=40);
+    opacity:0.4;
+    cursor:not-allowed;
+    box-shadow:none}
+
+.btn-disabled{
+    background-image:none;
+    filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);
+    filter:alpha(opacity=40);
+    opacity:0.4;
+    cursor:not-allowed;
+    box-shadow:none}
+
+.btn-disabled:hover,.btn-disabled:focus,.btn-disabled:active{
+    background-image:none;
+    filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);
+    filter:alpha(opacity=40);
+    opacity:0.4;
+    cursor:not-allowed;
+    box-shadow:none}
+
+.btn::-moz-focus-inner{
+    padding:0;
+    border:0}
+
+.btn-small{
+    font-size:80%}
+
+.btn-info{
+    background-color:#2980B9 !important}
+
+.btn-info:hover{
+    background-color:#2e8ece !important}
+
+.btn-neutral{
+    background-color:#f3f6f6 !important;
+    color:#404040 !important}
+
+.btn-neutral:hover{
+    background-color:#e5ebeb !important;
+    color:#404040}
+
+.btn-neutral:visited{
+    color:#404040 !important}
+
+.btn-success{
+    background-color:#27AE60 !important}
+
+.btn-success:hover{
+    background-color:#295 !important}
+
+.btn-danger{
+    background-color:#E74C3C !important}
+
+.btn-danger:hover{
+    background-color:#ea6153 !important}
+
+.btn-warning{
+    background-color:#E67E22 !important}
+
+.btn-warning:hover{
+    background-color:#e98b39 !important}
+
+.btn-invert{
+    background-color:#222}
+
+.btn-invert:hover{
+    background-color:#2f2f2f !important}
+
+.btn-link{
+    background-color:transparent !important;
+    color:#2980B9;
+    box-shadow:none;
+    border-color:transparent !important}
+
+.btn-link:hover{
+    background-color:transparent !important;
+    color:#409ad5 !important;
+    box-shadow:none}
+
+.btn-link:active{
+    background-color:transparent !important;
+    color:#409ad5 !important;
+    box-shadow:none}
+
+.btn-link:visited{
+    color:#9B59B6}
+
+.wy-btn-group .btn,.wy-control .btn{
+    vertical-align:middle}
+
+.wy-btn-group{
+    margin-bottom:24px;
+    *zoom:1}
+
+.wy-btn-group:before,.wy-btn-group:after{
+    display:table;
+    content:""}
+
+.wy-btn-group:after{
+    clear:both}
+
+.wy-dropdown{
+    position:relative;
+    display:inline-block}
+
+.wy-dropdown-active .wy-dropdown-menu{
+    display:block}
+
+.wy-dropdown-menu{
+    position:absolute;
+    left:0;
+    display:none;
+    float:left;
+    top:100%;
+    min-width:100%;
+    background:#fcfcfc;
+    z-index:100;
+    border:solid 1px #cfd7dd;
+    box-shadow:0 2px 2px 0 rgba(0,0,0,0.1);
+    padding:12px}
+
+.wy-dropdown-menu>dd>a{
+    display:block;
+    clear:both;
+    color:#404040;
+    white-space:nowrap;
+    font-size:90%;
+    padding:0 12px;
+    cursor:pointer}
+
+.wy-dropdown-menu>dd>a:hover{
+    background:#2980B9;
+    color:#fff}
+
+.wy-dropdown-menu>dd.divider{
+    border-top:solid 1px #cfd7dd;
+    margin:6px 0}
+
+.wy-dropdown-menu>dd.search{
+    padding-bottom:12px}
+
+.wy-dropdown-menu>dd.search input[type="search"]{
+    width:100%}
+
+.wy-dropdown-menu>dd.call-to-action{
+    background:#e3e3e3;
+    text-transform:uppercase;
+    font-weight:500;
+    font-size:80%}
+
+.wy-dropdown-menu>dd.call-to-action:hover{
+    background:#e3e3e3}
+
+.wy-dropdown-menu>dd.call-to-action .btn{
+    color:#fff}
+
+.wy-dropdown.wy-dropdown-up .wy-dropdown-menu{
+    bottom:100%;
+    top:auto;
+    left:auto;
+    right:0}
+
+.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu{
+    background:#fcfcfc;
+    margin-top:2px}
+
+.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a{
+    padding:6px 12px}
+
+.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover{
+    background:#2980B9;
+    color:#fff}
+
+.wy-dropdown.wy-dropdown-left .wy-dropdown-menu{
+    right:0;
+    text-align:right}
+
+.wy-dropdown-arrow:before{
+    content:" ";
+    border-bottom:5px solid #f5f5f5;
+    border-left:5px solid transparent;
+    border-right:5px solid transparent;
+    position:absolute;
+    display:block;
+    top:-4px;
+    left:50%;
+    margin-left:-3px}
+
+.wy-dropdown-arrow.wy-dropdown-arrow-left:before{
+    left:11px}
+
+.wy-form-stacked select{
+    display:block}
+
+.wy-form-aligned input,.wy-form-aligned textarea,.wy-form-aligned select,.wy-form-aligned .wy-help-inline,.wy-form-aligned label{
+    display:inline-block;
+    *display:inline;
+    *zoom:1;
+    vertical-align:middle}
+
+.wy-form-aligned .wy-control-group>label{
+    display:inline-block;
+    vertical-align:middle;
+    width:10em;
+    margin:6px 12px 0 0;
+    float:left}
+
+.wy-form-aligned .wy-control{
+    float:left}
+
+.wy-form-aligned .wy-control label{
+    display:block}
+
+.wy-form-aligned .wy-control select{
+    margin-top:6px}
+
+fieldset{
+    border:0;
+    margin:0;
+    padding:0}
+
+legend{
+    display:block;
+    width:100%;
+    border:0;
+    padding:0;
+    white-space:normal;
+    margin-bottom:24px;
+    font-size:150%;
+    *margin-left:-7px}
+
+label{
+    display:block;
+    margin:0 0 0.3125em 0;
+    color:#333;
+    font-size:90%}
+
+input,select,textarea{
+    font-size:100%;
+    margin:0;
+    vertical-align:baseline;
+    *vertical-align:middle}
+
+.wy-control-group{
+    margin-bottom:24px;
+    *zoom:1;
+    max-width:68em;
+    margin-left:auto;
+    margin-right:auto;
+    *zoom:1}
+
+.wy-control-group:before,.wy-control-group:after{
+    display:table;
+    content:""}
+
+.wy-control-group:after{
+    clear:both}
+
+.wy-control-group:before,.wy-control-group:after{
+    display:table;
+    content:""}
+
+.wy-control-group:after{
+    clear:both}
+
+.wy-control-group.wy-control-group-required>label:after{
+    content:" *";
+    color:#E74C3C}
+
+.wy-control-group .wy-form-full,.wy-control-group .wy-form-halves,.wy-control-group .wy-form-thirds{
+    padding-bottom:12px}
+
+.wy-control-group .wy-form-full select,.wy-control-group .wy-form-halves select,.wy-control-group .wy-form-thirds select{
+    width:100%}
+
+.wy-control-group .wy-form-full input[type="text"],.wy-control-group .wy-form-full input[type="password"],.wy-control-group .wy-form-full input[type="email"],.wy-control-group .wy-form-full input[type="url"],.wy-control-group .wy-form-full input[type="date"],.wy-control-group .wy-form-full input[type="month"],.wy-control-group .wy-form-full input[type="time"],.wy-control-group .wy-form-full input[type="datetime"],.wy-control-group .wy-form-full input[type="datetime-local"],.wy-control-group .wy-form-full input[type="week"],.wy-control-group .wy-form-full input[type="number"],.wy-control-group .wy-form-full input[type="search"],.wy-control-group .wy-form-full input[type="tel"],.wy-control-group .wy-form-full input[type="color"],.wy-control-group .wy-form-halves input[type="text"],.wy-control-group .wy-form-halves input[type="password"],.wy-control-group .wy-form-halves input[type="email"],.wy-control-group .wy-form-halves input[type="url"],.wy-control-group .wy-form-halves input[type="date"],.wy-control-group .wy-form-halves input[type="month"],.wy-control-group .wy-form-halves input[type="time"],.wy-control-group .wy-form-halves input[type="datetime"],.wy-control-group .wy-form-halves input[type="datetime-local"],.wy-control-group .wy-form-halves input[type="week"],.wy-control-group .wy-form-halves input[type="number"],.wy-control-group .wy-form-halves input[type="search"],.wy-control-group .wy-form-halves input[type="tel"],.wy-control-group .wy-form-halves input[type="color"],.wy-control-group .wy-form-thirds input[type="text"],.wy-control-group .wy-form-thirds input[type="password"],.wy-control-group .wy-form-thirds input[type="email"],.wy-control-group .wy-form-thirds input[type="url"],.wy-control-group .wy-form-thirds input[type="date"],.wy-control-group .wy-form-thirds input[type="month"],.wy-control-group .wy-form-thirds input[type="time"],.wy-control-group .wy-form-thirds input[type="datetime"],.wy-control-group .wy-form-thirds input[type="datetime-local"],.wy-control-group .wy-form-thirds input[type="week"],.wy-control-group .wy-form-thirds input[type="number"],.wy-control-group .wy-form-thirds input[type="search"],.wy-control-group .wy-form-thirds input[type="tel"],.wy-control-group .wy-form-thirds input[type="color"]{
+    width:100%}
+
+.wy-control-group .wy-form-full{
+    float:left;
+    display:block;
+    margin-right:2.35765%;
+    width:100%;
+    margin-right:0}
+
+.wy-control-group .wy-form-full:last-child{
+    margin-right:0}
+
+.wy-control-group .wy-form-halves{
+    float:left;
+    display:block;
+    margin-right:2.35765%;
+    width:48.82117%}
+
+.wy-control-group .wy-form-halves:last-child{
+    margin-right:0}
+
+.wy-control-group .wy-form-halves:nth-of-type(2n){
+    margin-right:0}
+
+.wy-control-group .wy-form-halves:nth-of-type(2n+1){
+    clear:left}
+
+.wy-control-group .wy-form-thirds{
+    float:left;
+    display:block;
+    margin-right:2.35765%;
+    width:31.76157%}
+
+.wy-control-group .wy-form-thirds:last-child{
+    margin-right:0}
+
+.wy-control-group .wy-form-thirds:nth-of-type(3n){
+    margin-right:0}
+
+.wy-control-group .wy-form-thirds:nth-of-type(3n+1){
+    clear:left}
+
+.wy-control-group.wy-control-group-no-input .wy-control{
+    margin:6px 0 0 0;
+    font-size:90%}
+
+.wy-control-no-input{
+    display:inline-block;
+    margin:6px 0 0 0;
+    font-size:90%}
+
+.wy-control-group.fluid-input input[type="text"],.wy-control-group.fluid-input input[type="password"],.wy-control-group.fluid-input input[type="email"],.wy-control-group.fluid-input input[type="url"],.wy-control-group.fluid-input input[type="date"],.wy-control-group.fluid-input input[type="month"],.wy-control-group.fluid-input input[type="time"],.wy-control-group.fluid-input input[type="datetime"],.wy-control-group.fluid-input input[type="datetime-local"],.wy-control-group.fluid-input input[type="week"],.wy-control-group.fluid-input input[type="number"],.wy-control-group.fluid-input input[type="search"],.wy-control-group.fluid-input input[type="tel"],.wy-control-group.fluid-input input[type="color"]{
+    width:100%}
+
+.wy-form-message-inline{
+    display:inline-block;
+    padding-left:0.3em;
+    color:#666;
+    vertical-align:middle;
+    font-size:90%}
+
+.wy-form-message{
+    display:block;
+    color:#999;
+    font-size:70%;
+    margin-top:0.3125em;
+    font-style:italic}
+
+input{
+    line-height:normal}
+
+input[type="button"],input[type="reset"],input[type="submit"]{
+    -webkit-appearance:button;
+    cursor:pointer;
+    font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;
+    *overflow:visible}
+
+input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="date"],input[type="month"],input[type="time"],input[type="datetime"],input[type="datetime-local"],input[type="week"],input[type="number"],input[type="search"],input[type="tel"],input[type="color"]{
+    -webkit-appearance:none;
+    padding:6px;
+    display:inline-block;
+    border:1px solid #ccc;
+    font-size:80%;
+    font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;
+    box-shadow:inset 0 1px 3px #ddd;
+    border-radius:0;
+    -webkit-transition:border 0.3s linear;
+    -moz-transition:border 0.3s linear;
+    transition:border 0.3s linear}
+
+input[type="datetime-local"]{
+    padding:0.34375em 0.625em}
+
+input[disabled]{
+    cursor:default}
+
+input[type="checkbox"],input[type="radio"]{
+    -webkit-box-sizing:border-box;
+    -moz-box-sizing:border-box;
+    box-sizing:border-box;
+    padding:0;
+    margin-right:0.3125em;
+    *height:13px;
+    *width:13px}
+
+input[type="search"]{
+    -webkit-box-sizing:border-box;
+    -moz-box-sizing:border-box;
+    box-sizing:border-box}
+
+input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{
+                                                       -webkit-appearance:none}
+
+input[type="text"]:focus,input[type="password"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus{
+                                                                                                                                                                                                                                                                                                                                                               outline:0;
+                                                                                                                                                                                                                                                                                                                                                               outline:thin dotted \9;
+                                                                                                                                                                                                                                                                                                                                                               border-color:#333}
+
+input.no-focus:focus{
+    border-color:#ccc !important}
+
+input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{
+                                                       outline:thin dotted #333;
+                                                       outline:1px auto #129FEA}
+
+input[type="text"][disabled],input[type="password"][disabled],input[type="email"][disabled],input[type="url"][disabled],input[type="date"][disabled],input[type="month"][disabled],input[type="time"][disabled],input[type="datetime"][disabled],input[type="datetime-local"][disabled],input[type="week"][disabled],input[type="number"][disabled],input[type="search"][disabled],input[type="tel"][disabled],input[type="color"][disabled]{
+    cursor:not-allowed;
+    background-color:#f3f6f6;
+    color:#cad2d3}
+
+input:focus:invalid,textarea:focus:invalid,select:focus:invalid{
+                                               color:#E74C3C;
+                                               border:1px solid #E74C3C}
+
+input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{
+                                                           border-color:#E74C3C}
+
+input[type="file"]:focus:invalid:focus,input[type="radio"]:focus:invalid:focus,input[type="checkbox"]:focus:invalid:focus{
+                                                                                   outline-color:#E74C3C}
+
+input.wy-input-large{
+    padding:12px;
+    font-size:100%}
+
+textarea{
+    overflow:auto;
+    vertical-align:top;
+    width:100%;
+    font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif}
+
+select,textarea{
+    padding:0.5em 0.625em;
+    display:inline-block;
+    border:1px solid #ccc;
+    font-size:80%;
+    box-shadow:inset 0 1px 3px #ddd;
+    -webkit-transition:border 0.3s linear;
+    -moz-transition:border 0.3s linear;
+    transition:border 0.3s linear}
+
+select{
+    border:1px solid #ccc;
+    background-color:#fff}
+
+select[multiple]{
+    height:auto}
+
+select:focus,textarea:focus{
+                 outline:0}
+
+select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{
+    cursor:not-allowed;
+    background-color:#fff;
+    color:#cad2d3;
+    border-color:transparent}
+
+.wy-checkbox,.wy-radio{
+    margin:6px 0;
+    color:#404040;
+    display:block}
+
+.wy-checkbox input,.wy-radio input{
+    vertical-align:baseline}
+
+.wy-form-message-inline{
+    display:inline-block;
+    *display:inline;
+    *zoom:1;
+    vertical-align:middle}
+
+.wy-input-prefix,.wy-input-suffix{
+    white-space:nowrap;
+    padding:6px}
+
+.wy-input-prefix .wy-input-context,.wy-input-suffix .wy-input-context{
+    line-height:27px;
+    padding:0 8px;
+    display:inline-block;
+    font-size:80%;
+    background-color:#f3f6f6;
+    border:solid 1px #ccc;
+    color:#999}
+
+.wy-input-suffix .wy-input-context{
+    border-left:0}
+
+.wy-input-prefix .wy-input-context{
+    border-right:0}
+
+.wy-control-group.wy-control-group-error .wy-form-message,.wy-control-group.wy-control-group-error>label{
+    color:#E74C3C}
+
+.wy-control-group.wy-control-group-error input[type="text"],.wy-control-group.wy-control-group-error input[type="password"],.wy-control-group.wy-control-group-error input[type="email"],.wy-control-group.wy-control-group-error input[type="url"],.wy-control-group.wy-control-group-error input[type="date"],.wy-control-group.wy-control-group-error input[type="month"],.wy-control-group.wy-control-group-error input[type="time"],.wy-control-group.wy-control-group-error input[type="datetime"],.wy-control-group.wy-control-group-error input[type="datetime-local"],.wy-control-group.wy-control-group-error input[type="week"],.wy-control-group.wy-control-group-error input[type="number"],.wy-control-group.wy-control-group-error input[type="search"],.wy-control-group.wy-control-group-error input[type="tel"],.wy-control-group.wy-control-group-error input[type="color"]{
+    border:solid 1px #E74C3C}
+
+.wy-control-group.wy-control-group-error textarea{
+    border:solid 1px #E74C3C}
+
+.wy-inline-validate{
+    white-space:nowrap}
+
+.wy-inline-validate .wy-input-context{
+    padding:0.5em 0.625em;
+    display:inline-block;
+    font-size:80%}
+
+.wy-inline-validate.wy-inline-validate-success .wy-input-context{
+    color:#27AE60}
+
+.wy-inline-validate.wy-inline-validate-danger .wy-input-context{
+    color:#E74C3C}
+
+.wy-inline-validate.wy-inline-validate-warning .wy-input-context{
+    color:#E67E22}
+
+.wy-inline-validate.wy-inline-validate-info .wy-input-context{
+    color:#2980B9}
+
+.rotate-90{
+    -webkit-transform:rotate(90deg);
+    -moz-transform:rotate(90deg);
+    -ms-transform:rotate(90deg);
+    -o-transform:rotate(90deg);
+    transform:rotate(90deg)}
+
+.rotate-180{
+    -webkit-transform:rotate(180deg);
+    -moz-transform:rotate(180deg);
+    -ms-transform:rotate(180deg);
+    -o-transform:rotate(180deg);
+    transform:rotate(180deg)}
+
+.rotate-270{
+    -webkit-transform:rotate(270deg);
+    -moz-transform:rotate(270deg);
+    -ms-transform:rotate(270deg);
+    -o-transform:rotate(270deg);
+    transform:rotate(270deg)}
+
+.mirror{
+    -webkit-transform:scaleX(-1);
+    -moz-transform:scaleX(-1);
+    -ms-transform:scaleX(-1);
+    -o-transform:scaleX(-1);
+    transform:scaleX(-1)}
+
+.mirror.rotate-90{
+    -webkit-transform:scaleX(-1) rotate(90deg);
+    -moz-transform:scaleX(-1) rotate(90deg);
+    -ms-transform:scaleX(-1) rotate(90deg);
+    -o-transform:scaleX(-1) rotate(90deg);
+    transform:scaleX(-1) rotate(90deg)}
+
+.mirror.rotate-180{
+    -webkit-transform:scaleX(-1) rotate(180deg);
+    -moz-transform:scaleX(-1) rotate(180deg);
+    -ms-transform:scaleX(-1) rotate(180deg);
+    -o-transform:scaleX(-1) rotate(180deg);
+    transform:scaleX(-1) rotate(180deg)}
+
+.mirror.rotate-270{
+    -webkit-transform:scaleX(-1) rotate(270deg);
+    -moz-transform:scaleX(-1) rotate(270deg);
+    -ms-transform:scaleX(-1) rotate(270deg);
+    -o-transform:scaleX(-1) rotate(270deg);
+    transform:scaleX(-1) rotate(270deg)}
+
+@media only screen and (max-width: 480px){
+    .wy-form button[type="submit"]{
+        margin:0.7em 0 0}
+
+    .wy-form input[type="text"],.wy-form input[type="password"],.wy-form input[type="email"],.wy-form input[type="url"],.wy-form input[type="date"],.wy-form input[type="month"],.wy-form input[type="time"],.wy-form input[type="datetime"],.wy-form input[type="datetime-local"],.wy-form input[type="week"],.wy-form input[type="number"],.wy-form input[type="search"],.wy-form input[type="tel"],.wy-form input[type="color"]{
+        margin-bottom:0.3em;
+        display:block}
+
+    .wy-form label{
+        margin-bottom:0.3em;
+        display:block}
+
+    .wy-form input[type="password"],.wy-form input[type="email"],.wy-form input[type="url"],.wy-form input[type="date"],.wy-form input[type="month"],.wy-form input[type="time"],.wy-form input[type="datetime"],.wy-form input[type="datetime-local"],.wy-form input[type="week"],.wy-form input[type="number"],.wy-form input[type="search"],.wy-form input[type="tel"],.wy-form input[type="color"]{
+        margin-bottom:0}
+
+    .wy-form-aligned .wy-control-group label{
+        margin-bottom:0.3em;
+        text-align:left;
+        display:block;
+        width:100%}
+
+    .wy-form-aligned .wy-control{
+        margin:1.5em 0 0 0}
+
+    .wy-form .wy-help-inline,.wy-form-message-inline,.wy-form-message{
+        display:block;
+        font-size:80%;
+        padding:6px 0}
+
+}
+
+@media screen and (max-width: 768px){
+    .tablet-hide{
+        display:none}
+
+}
+
+@media screen and (max-width: 480px){
+    .mobile-hide{
+        display:none}
+
+}
+
+.float-left{
+    float:left}
+
+.float-right{
+    float:right}
+
+.full-width{
+    width:100%}
+
+.wy-table,.rst-content table.docutils,.rst-content table.field-list{
+    border-collapse:collapse;
+    border-spacing:0;
+    empty-cells:show;
+    margin-bottom:24px}
+
+.wy-table caption,.rst-content table.docutils caption,.rst-content table.field-list caption{
+    color:#000;
+    font:italic 85%/1 arial,sans-serif;
+    padding:1em 0;
+    text-align:center}
+
+.wy-table td,.rst-content table.docutils td,.rst-content table.field-list td,.wy-table th,.rst-content table.docutils th,.rst-content table.field-list th{
+    font-size:90%;
+    margin:0;
+    overflow:visible;
+    padding:8px 16px}
+
+.wy-table td:first-child,.rst-content table.docutils td:first-child,.rst-content table.field-list td:first-child,.wy-table th:first-child,.rst-content table.docutils th:first-child,.rst-content table.field-list th:first-child{
+    border-left-width:0}
+
+.wy-table thead,.rst-content table.docutils thead,.rst-content table.field-list thead{
+    color:#000;
+    text-align:left;
+    vertical-align:bottom;
+    white-space:nowrap}
+
+.wy-table thead th,.rst-content table.docutils thead th,.rst-content table.field-list thead th{
+    font-weight:bold;
+    border-bottom:solid 2px #e1e4e5}
+
+.wy-table td,.rst-content table.docutils td,.rst-content table.field-list td{
+    background-color:transparent;
+    vertical-align:middle}
+
+.wy-table td p,.rst-content table.docutils td p,.rst-content table.field-list td p{
+    line-height:18px}
+
+.wy-table td p:last-child,.rst-content table.docutils td p:last-child,.rst-content table.field-list td p:last-child{
+    margin-bottom:0}
+
+.wy-table .wy-table-cell-min,.rst-content table.docutils .wy-table-cell-min,.rst-content table.field-list .wy-table-cell-min{
+    width:1%;
+    padding-right:0}
+
+.wy-table .wy-table-cell-min input[type=checkbox],.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox],.wy-table .wy-table-cell-min input[type=checkbox],.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox]{
+    margin:0}
+
+.wy-table-secondary{
+    color:gray;
+    font-size:90%}
+
+.wy-table-tertiary{
+    color:gray;
+    font-size:80%}
+
+.wy-table-odd td,.wy-table-striped tr:nth-child(2n-1) td,.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td{
+    background-color:#f3f6f6}
+
+.wy-table-backed{
+    background-color:#f3f6f6}
+
+.wy-table-bordered-all,.rst-content table.docutils{
+    border:1px solid #e1e4e5}
+
+.wy-table-bordered-all td,.rst-content table.docutils td{
+    border-bottom:1px solid #e1e4e5;
+    border-left:1px solid #e1e4e5}
+
+.wy-table-bordered-all tbody>tr:last-child td,.rst-content table.docutils tbody>tr:last-child td{
+    border-bottom-width:0}
+
+.wy-table-bordered{
+    border:1px solid #e1e4e5}
+
+.wy-table-bordered-rows td{
+    border-bottom:1px solid #e1e4e5}
+
+.wy-table-bordered-rows tbody>tr:last-child td{
+    border-bottom-width:0}
+
+.wy-table-horizontal tbody>tr:last-child td{
+    border-bottom-width:0}
+
+.wy-table-horizontal td,.wy-table-horizontal th{
+    border-width:0 0 1px 0;
+    border-bottom:1px solid #e1e4e5}
+
+.wy-table-horizontal tbody>tr:last-child td{
+    border-bottom-width:0}
+
+.wy-table-responsive{
+    margin-bottom:24px;
+    max-width:100%;
+    overflow:auto}
+
+.wy-table-responsive table{
+    margin-bottom:0 !important}
+
+.wy-table-responsive table td,.wy-table-responsive table th{
+    white-space:nowrap}
+
+a{
+    color:#2980B9;
+    text-decoration:none;
+    cursor:pointer}
+
+a:hover{
+    color:#3091d1}
+
+a:visited{
+    color:#9B59B6}
+
+html{
+    height:100%;
+    overflow-x:hidden}
+
+body{
+    font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;
+    font-weight:normal;
+    color:#404040;
+    min-height:100%;
+    overflow-x:hidden;
+    background:#edf0f2}
+
+.wy-text-left{
+    text-align:left}
+
+.wy-text-center{
+    text-align:center}
+
+.wy-text-right{
+    text-align:right}
+
+.wy-text-large{
+    font-size:120%}
+
+.wy-text-normal{
+    font-size:100%}
+
+.wy-text-small,small{
+    font-size:80%}
+
+.wy-text-strike{
+    text-decoration:line-through}
+
+.wy-text-warning{
+    color:#E67E22 !important}
+
+a.wy-text-warning:hover{
+    color:#eb9950 !important}
+
+.wy-text-info{
+    color:#2980B9 !important}
+
+a.wy-text-info:hover{
+    color:#409ad5 !important}
+
+.wy-text-success{
+    color:#27AE60 !important}
+
+a.wy-text-success:hover{
+    color:#36d278 !important}
+
+.wy-text-danger{
+    color:#E74C3C !important}
+
+a.wy-text-danger:hover{
+    color:#ed7669 !important}
+
+.wy-text-neutral{
+    color:#404040 !important}
+
+a.wy-text-neutral:hover{
+    color:#595959 !important}
+
+h1,h2,h3,h4,h5,h6,legend{
+    margin-top:0;
+    font-weight:700;
+    font-family:"Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif}
+
+p{
+    line-height:24px;
+    margin:0;
+    font-size:16px;
+    margin-bottom:24px}
+
+h1{
+    font-size:175%}
+
+h2{
+    font-size:150%}
+
+h3{
+    font-size:125%}
+
+h4{
+    font-size:115%}
+
+h5{
+    font-size:110%}
+
+h6{
+    font-size:100%}
+
+hr{
+    display:block;
+    height:1px;
+    border:0;
+    border-top:1px solid #e1e4e5;
+    margin:24px 0;
+    padding:0}
+
+code,.rst-content tt{
+    white-space:nowrap;
+    max-width:100%;
+    background:#fff;
+    border:solid 1px #e1e4e5;
+    font-size:75%;
+    padding:0 5px;
+    font-family:Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;
+    color:#E74C3C;
+    overflow-x:auto}
+
+code.code-large,.rst-content tt.code-large{
+    font-size:90%}
+
+.wy-plain-list-disc,.rst-content .section ul,.rst-content .toctree-wrapper ul,article ul{
+    list-style:disc;
+    line-height:24px;
+    margin-bottom:24px}
+
+.wy-plain-list-disc li,.rst-content .section ul li,.rst-content .toctree-wrapper ul li,article ul li{
+    list-style:disc;
+    margin-left:24px}
+
+.wy-plain-list-disc li p:last-child,.rst-content .section ul li p:last-child,.rst-content .toctree-wrapper ul li p:last-child,article ul li p:last-child{
+                                                                                                                                  margin-bottom:0}
+
+.wy-plain-list-disc li ul,.rst-content .section ul li ul,.rst-content .toctree-wrapper ul li ul,article ul li ul{
+    margin-bottom:0}
+
+.wy-plain-list-disc li li,.rst-content .section ul li li,.rst-content .toctree-wrapper ul li li,article ul li li{
+    list-style:circle}
+
+.wy-plain-list-disc li li li,.rst-content .section ul li li li,.rst-content .toctree-wrapper ul li li li,article ul li li li{
+    list-style:square}
+
+.wy-plain-list-disc li ol li,.rst-content .section ul li ol li,.rst-content .toctree-wrapper ul li ol li,article ul li ol li{
+    list-style:decimal}
+
+.wy-plain-list-decimal,.rst-content .section ol,.rst-content ol.arabic,article ol{
+    list-style:decimal;
+    line-height:24px;
+    margin-bottom:24px}
+
+.wy-plain-list-decimal li,.rst-content .section ol li,.rst-content ol.arabic li,article ol li{
+    list-style:decimal;
+    margin-left:24px}
+
+.wy-plain-list-decimal li p:last-child,.rst-content .section ol li p:last-child,.rst-content ol.arabic li p:last-child,article ol li p:last-child{
+                                                                                                                           margin-bottom:0}
+
+.wy-plain-list-decimal li ul,.rst-content .section ol li ul,.rst-content ol.arabic li ul,article ol li ul{
+    margin-bottom:0}
+
+.wy-plain-list-decimal li ul li,.rst-content .section ol li ul li,.rst-content ol.arabic li ul li,article ol li ul li{
+    list-style:disc}
+
+.codeblock-example{
+    border:1px solid #e1e4e5;
+    border-bottom:none;
+    padding:24px;
+    padding-top:48px;
+    font-weight:500;
+    background:#fff;
+    position:relative}
+
+.codeblock-example:after{
+    content:"Example";
+    position:absolute;
+    top:0px;
+    left:0px;
+    background:#9B59B6;
+    color:#fff;
+    padding:6px 12px}
+
+.codeblock-example.prettyprint-example-only{
+    border:1px solid #e1e4e5;
+    margin-bottom:24px}
+
+.codeblock,pre.literal-block,.rst-content .literal-block,.rst-content pre.literal-block,div[class^='highlight']{
+    border:1px solid #e1e4e5;
+    padding:0px;
+    overflow-x:auto;
+    background:#fff;
+    margin:1px 0 24px 0}
+
+.codeblock div[class^='highlight'],pre.literal-block div[class^='highlight'],.rst-content .literal-block div[class^='highlight'],div[class^='highlight'] div[class^='highlight']{
+    border:none;
+    background:none;
+    margin:0}
+
+div[class^='highlight'] td.code{
+    width:100%}
+
+.linenodiv pre{
+    border-right:solid 1px #e6e9ea;
+    margin:0;
+    padding:12px 12px;
+    font-family:Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;
+    font-size:12px;
+    line-height:1.5;
+    color:#d9d9d9}
+
+div[class^='highlight'] pre{
+    white-space:pre;
+    margin:0;
+    padding:12px 12px;
+    font-family:Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;
+    font-size:12px;
+    line-height:1.5;
+    display:block;
+    overflow:auto;
+    color:#404040}
+
+@media print{
+    .codeblock,pre.literal-block,.rst-content .literal-block,.rst-content pre.literal-block,div[class^='highlight'],div[class^='highlight'] pre{
+        white-space:pre-wrap}
+
+}
+
+.hll{
+    background-color:#ffc;
+    margin:0 -12px;
+    padding:0 12px;
+    display:block}
+
+.c{
+    color:#998;
+    font-style:italic}
+
+.err{
+    color:#a61717;
+    background-color:#e3d2d2}
+
+.k{
+    font-weight:bold}
+
+.o{
+    font-weight:bold}
+
+.cm{
+    color:#998;
+    font-style:italic}
+
+.cp{
+    color:#999;
+    font-weight:bold}
+
+.c1{
+    color:#998;
+    font-style:italic}
+
+.cs{
+    color:#999;
+    font-weight:bold;
+    font-style:italic}
+
+.gd{
+    color:#000;
+    background-color:#fdd}
+
+.gd .x{
+    color:#000;
+    background-color:#faa}
+
+.ge{
+    font-style:italic}
+
+.gr{
+    color:#a00}
+
+.gh{
+    color:#999}
+
+.gi{
+    color:#000;
+    background-color:#dfd}
+
+.gi .x{
+    color:#000;
+    background-color:#afa}
+
+.go{
+    color:#888}
+
+.gp{
+    color:#555}
+
+.gs{
+    font-weight:bold}
+
+.gu{
+    color:purple;
+    font-weight:bold}
+
+.gt{
+    color:#a00}
+
+.kc{
+    font-weight:bold}
+
+.kd{
+    font-weight:bold}
+
+.kn{
+    font-weight:bold}
+
+.kp{
+    font-weight:bold}
+
+.kr{
+    font-weight:bold}
+
+.kt{
+    color:#458;
+    font-weight:bold}
+
+.m{
+    color:#099}
+
+.s{
+    color:#d14}
+
+.n{
+    color:#333}
+
+.na{
+    color:teal}
+
+.nb{
+    color:#0086b3}
+
+.nc{
+    color:#458;
+    font-weight:bold}
+
+.no{
+    color:teal}
+
+.ni{
+    color:purple}
+
+.ne{
+    color:#900;
+    font-weight:bold}
+
+.nf{
+    color:#900;
+    font-weight:bold}
+
+.nn{
+    color:#555}
+
+.nt{
+    color:navy}
+
+.nv{
+    color:teal}
+
+.ow{
+    font-weight:bold}
+
+.w{
+    color:#bbb}
+
+.mf{
+    color:#099}
+
+.mh{
+    color:#099}
+
+.mi{
+    color:#099}
+
+.mo{
+    color:#099}
+
+.sb{
+    color:#d14}
+
+.sc{
+    color:#d14}
+
+.sd{
+    color:#d14}
+
+.s2{
+    color:#d14}
+
+.se{
+    color:#d14}
+
+.sh{
+    color:#d14}
+
+.si{
+    color:#d14}
+
+.sx{
+    color:#d14}
+
+.sr{
+    color:#009926}
+
+.s1{
+    color:#d14}
+
+.ss{
+    color:#990073}
+
+.bp{
+    color:#999}
+
+.vc{
+    color:teal}
+
+.vg{
+    color:teal}
+
+.vi{
+    color:teal}
+
+.il{
+    color:#099}
+
+.gc{
+    color:#999;
+    background-color:#EAF2F5}
+
+.wy-breadcrumbs li{
+    display:inline-block}
+
+.wy-breadcrumbs li.wy-breadcrumbs-aside{
+    float:right}
+
+.wy-breadcrumbs li a{
+    display:inline-block;
+    padding:5px}
+
+.wy-breadcrumbs li a:first-child{
+    padding-left:0}
+
+.wy-breadcrumbs-extra{
+    margin-bottom:0;
+    color:#b3b3b3;
+    font-size:80%;
+    display:inline-block}
+
+@media screen and (max-width: 480px){
+    .wy-breadcrumbs-extra{
+        display:none}
+
+    .wy-breadcrumbs li.wy-breadcrumbs-aside{
+        display:none}
+
+}
+
+@media print{
+    .wy-breadcrumbs li.wy-breadcrumbs-aside{
+        display:none}
+
+}
+
+.wy-affix{
+    position:fixed;
+    top:1.618em}
+
+.wy-menu a:hover{
+    text-decoration:none}
+
+.wy-menu-horiz{
+    *zoom:1}
+
+.wy-menu-horiz:before,.wy-menu-horiz:after{
+    display:table;
+    content:""}
+
+.wy-menu-horiz:after{
+    clear:both}
+
+.wy-menu-horiz ul,.wy-menu-horiz li{
+    display:inline-block}
+
+.wy-menu-horiz li:hover{
+    background:rgba(255,255,255,0.1)}
+
+.wy-menu-horiz li.divide-left{
+    border-left:solid 1px #404040}
+
+.wy-menu-horiz li.divide-right{
+    border-right:solid 1px #404040}
+
+.wy-menu-horiz a{
+    height:32px;
+    display:inline-block;
+    line-height:32px;
+    padding:0 16px}
+
+.wy-menu-vertical header{
+    height:32px;
+    display:inline-block;
+    line-height:32px;
+    padding:0 1.618em;
+    display:block;
+    font-weight:bold;
+    text-transform:uppercase;
+    font-size:80%;
+    color:#2980B9;
+    white-space:nowrap}
+
+.wy-menu-vertical ul{
+    margin-bottom:0}
+
+.wy-menu-vertical li.divide-top{
+    border-top:solid 1px #404040}
+
+.wy-menu-vertical li.divide-bottom{
+    border-bottom:solid 1px #404040}
+
+.wy-menu-vertical li.current{
+    background:#e3e3e3}
+
+.wy-menu-vertical li.current a{
+    color:gray;
+    border-right:solid 1px #c9c9c9;
+    padding:0.4045em 2.427em}
+
+.wy-menu-vertical li.current a:hover{
+    background:#d6d6d6}
+
+.wy-menu-vertical li.on a,.wy-menu-vertical li.current>a{
+    color:#404040;
+    padding:0.4045em 1.618em;
+    font-weight:bold;
+    position:relative;
+    background:#fcfcfc;
+    border:none;
+    border-bottom:solid 1px #c9c9c9;
+    border-top:solid 1px #c9c9c9;
+    padding-left:1.618em -4px}
+
+.wy-menu-vertical li.on a:hover,.wy-menu-vertical li.current>a:hover{
+    background:#fcfcfc}
+
+.wy-menu-vertical li.toctree-l2.current>a{
+    background:#c9c9c9;
+    padding:0.4045em 2.427em}
+
+.wy-menu-vertical li.current ul{
+    display:block}
+
+.wy-menu-vertical li ul{
+    margin-bottom:0;
+    display:none}
+
+.wy-menu-vertical .local-toc li ul{
+    display:block}
+
+.wy-menu-vertical li ul li a{
+    margin-bottom:0;
+    color:#b3b3b3;
+    font-weight:normal}
+
+.wy-menu-vertical a{
+    display:inline-block;
+    line-height:18px;
+    padding:0.4045em 1.618em;
+    display:block;
+    position:relative;
+    font-size:90%;
+    color:#b3b3b3}
+
+.wy-menu-vertical a:hover{
+    background-color:#4e4a4a;
+    cursor:pointer}
+
+.wy-menu-vertical a:active{
+    background-color:#2980B9;
+    cursor:pointer;
+    color:#fff}
+
+.wy-side-nav-search{
+    z-index:200;
+    background-color:#2980B9;
+    text-align:center;
+    padding:0.809em;
+    display:block;
+    color:#fcfcfc;
+    margin-bottom:0.809em}
+
+.wy-side-nav-search input[type=text]{
+    width:100%;
+    border-radius:50px;
+    padding:6px 12px;
+    border-color:#2472a4}
+
+.wy-side-nav-search img{
+    display:block;
+    margin:auto auto 0.809em auto;
+    height:45px;
+    width:45px;
+    background-color:#2980B9;
+    padding:5px;
+    border-radius:100%}
+
+.wy-side-nav-search>a,.wy-side-nav-search .wy-dropdown>a{
+    color:#fcfcfc;
+    font-size:100%;
+    font-weight:bold;
+    display:inline-block;
+    padding:4px 6px;
+    margin-bottom:0.809em}
+
+.wy-side-nav-search>a:hover,.wy-side-nav-search .wy-dropdown>a:hover{
+    background:rgba(255,255,255,0.1)}
+
+.wy-nav .wy-menu-vertical header{
+    color:#2980B9}
+
+.wy-nav .wy-menu-vertical a{
+    color:#b3b3b3}
+
+.wy-nav .wy-menu-vertical a:hover{
+    background-color:#2980B9;
+    color:#fff}
+
+[data-menu-wrap]{
+    -webkit-transition:all 0.2s ease-in;
+    -moz-transition:all 0.2s ease-in;
+    transition:all 0.2s ease-in;
+    position:absolute;
+    opacity:1;
+    width:100%;
+    opacity:0}
+
+[data-menu-wrap].move-center{
+    left:0;
+    right:auto;
+    opacity:1}
+
+[data-menu-wrap].move-left{
+    right:auto;
+    left:-100%;
+    opacity:0}
+
+[data-menu-wrap].move-right{
+    right:-100%;
+    left:auto;
+    opacity:0}
+
+.wy-body-for-nav{
+    background:left repeat-y #fcfcfc;
+    background-image:url(data:image/png;
+                         base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxOERBMTRGRDBFMUUxMUUzODUwMkJCOThDMEVFNURFMCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxOERBMTRGRTBFMUUxMUUzODUwMkJCOThDMEVFNURFMCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjE4REExNEZCMEUxRTExRTM4NTAyQkI5OEMwRUU1REUwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjE4REExNEZDMEUxRTExRTM4NTAyQkI5OEMwRUU1REUwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+EwrlwAAAAA5JREFUeNpiMDU0BAgwAAE2AJgB9BnaAAAAAElFTkSuQmCC);
+    background-size:300px 1px}
+
+.wy-grid-for-nav{
+    position:absolute;
+    width:100%;
+    height:100%}
+
+.wy-nav-side{
+    position:absolute;
+    top:0;
+    left:0;
+    width:300px;
+    overflow:hidden;
+    min-height:100%;
+    background:#343131;
+    z-index:200}
+
+.wy-nav-top{
+    display:none;
+    background:#2980B9;
+    color:#fff;
+    padding:0.4045em 0.809em;
+    position:relative;
+    line-height:50px;
+    text-align:center;
+    font-size:100%;
+    *zoom:1}
+
+.wy-nav-top:before,.wy-nav-top:after{
+    display:table;
+    content:""}
+
+.wy-nav-top:after{
+    clear:both}
+
+.wy-nav-top a{
+    color:#fff;
+    font-weight:bold}
+
+.wy-nav-top img{
+    margin-right:12px;
+    height:45px;
+    width:45px;
+    background-color:#2980B9;
+    padding:5px;
+    border-radius:100%}
+
+.wy-nav-top i{
+    font-size:30px;
+    float:left;
+    cursor:pointer}
+
+.wy-nav-content-wrap{
+    margin-left:300px;
+    background:#fcfcfc;
+    min-height:100%}
+
+.wy-nav-content{
+    padding:1.618em 3.236em;
+    height:100%;
+    max-width:800px;
+    margin:auto}
+
+.wy-body-mask{
+    position:fixed;
+    width:100%;
+    height:100%;
+    background:rgba(0,0,0,0.2);
+    display:none;
+    z-index:499}
+
+.wy-body-mask.on{
+    display:block}
+
+footer{
+    color:#999}
+
+footer p{
+    margin-bottom:12px}
+
+.rst-footer-buttons{
+    *zoom:1}
+
+.rst-footer-buttons:before,.rst-footer-buttons:after{
+    display:table;
+    content:""}
+
+.rst-footer-buttons:after{
+    clear:both}
+
+#search-results .search li{
+    margin-bottom:24px;
+    border-bottom:solid 1px #e1e4e5;
+    padding-bottom:24px}
+
+#search-results .search li:first-child{
+    border-top:solid 1px #e1e4e5;
+    padding-top:24px}
+
+#search-results .search li a{
+    font-size:120%;
+    margin-bottom:12px;
+    display:inline-block}
+
+#search-results .context{
+    color:gray;
+    font-size:90%}
+
+@media screen and (max-width: 768px){
+    .wy-body-for-nav{
+        background:#fcfcfc}
+
+    .wy-nav-top{
+        display:block}
+
+    .wy-nav-side{
+        left:-300px}
+
+    .wy-nav-side.shift{
+        width:85%;
+        left:0}
+
+    .wy-nav-content-wrap{
+        margin-left:0}
+
+    .wy-nav-content-wrap .wy-nav-content{
+        padding:1.618em}
+
+    .wy-nav-content-wrap.shift{
+        position:fixed;
+        min-width:100%;
+        left:85%;
+        top:0;
+        height:100%;
+        overflow:hidden}
+
+}
+
+@media screen and (min-width: 1400px){
+    .wy-nav-content-wrap{
+        background:rgba(0,0,0,0.05)}
+
+    .wy-nav-content{
+        margin:0;
+        background:#fcfcfc}
+
+}
+
+@media print{
+    .rst-versions,footer,.wy-nav-side{
+        display:none}
+
+    .wy-nav-content-wrap{
+        margin-left:0}
+
+}
+
+nav.stickynav{
+    position:fixed;
+    top:0}
+
+.rst-versions{
+    position:fixed;
+    bottom:0;
+    left:0;
+    width:300px;
+    color:#fcfcfc;
+    background:#1f1d1d;
+    border-top:solid 10px #343131;
+    font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;
+    z-index:400}
+
+.rst-versions a{
+    color:#2980B9;
+    text-decoration:none}
+
+.rst-versions .rst-badge-small{
+    display:none}
+
+.rst-versions .rst-current-version{
+    padding:12px;
+    background-color:#272525;
+    display:block;
+    text-align:right;
+    font-size:90%;
+    cursor:pointer;
+    color:#27AE60;
+    *zoom:1}
+
+.rst-versions .rst-current-version:before,.rst-versions .rst-current-version:after{
+    display:table;
+    content:""}
+
+.rst-versions .rst-current-version:after{
+    clear:both}
+
+.rst-versions .rst-current-version .fa,.rst-versions .rst-current-version .rst-content .admonition-title,.rst-content .rst-versions .rst-current-version .admonition-title,.rst-versions .rst-current-version .rst-content h1 .headerlink,.rst-content h1 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h2 .headerlink,.rst-content h2 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h3 .headerlink,.rst-content h3 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h4 .headerlink,.rst-content h4 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h5 .headerlink,.rst-content h5 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h6 .headerlink,.rst-content h6 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content dl dt .headerlink,.rst-content dl dt .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .icon{
+    color:#fcfcfc}
+
+.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{
+    float:left}
+
+.rst-versions .rst-current-version .icon-book{
+    float:left}
+
+.rst-versions .rst-current-version.rst-out-of-date{
+    background-color:#E74C3C;
+    color:#fff}
+
+.rst-versions .rst-current-version.rst-active-old-version{
+    background-color:#F1C40F;
+    color:#000}
+
+.rst-versions.shift-up .rst-other-versions{
+    display:block}
+
+.rst-versions .rst-other-versions{
+    font-size:90%;
+    padding:12px;
+    color:gray;
+    display:none}
+
+.rst-versions .rst-other-versions hr{
+    display:block;
+    height:1px;
+    border:0;
+    margin:20px 0;
+    padding:0;
+    border-top:solid 1px #413d3d}
+
+.rst-versions .rst-other-versions dd{
+    display:inline-block;
+    margin:0}
+
+.rst-versions .rst-other-versions dd a{
+    display:inline-block;
+    padding:6px;
+    color:#fcfcfc}
+
+.rst-versions.rst-badge{
+    width:auto;
+    bottom:20px;
+    right:20px;
+    left:auto;
+    border:none;
+    max-width:300px}
+
+.rst-versions.rst-badge .icon-book{
+    float:none}
+
+.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{
+    float:none}
+
+.rst-versions.rst-badge.shift-up .rst-current-version{
+    text-align:right}
+
+.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{
+    float:left}
+
+.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{
+    float:left}
+
+.rst-versions.rst-badge .rst-current-version{
+    width:auto;
+    height:30px;
+    line-height:30px;
+    padding:0 6px;
+    display:block;
+    text-align:center}
+
+@media screen and (max-width: 768px){
+    .rst-versions{
+        width:85%;
+        display:none}
+
+    .rst-versions.shift{
+        display:block}
+
+    img{
+        width:100%;
+        height:auto}
+
+}
+
+.rst-content img{
+    max-width:100%;
+    height:auto !important}
+
+.rst-content div.figure{
+    margin-bottom:24px}
+
+.rst-content div.figure.align-center{
+    text-align:center}
+
+.rst-content .section>img,.rst-content .section>a>img{
+    margin-bottom:24px}
+
+.rst-content blockquote{
+    margin-left:24px;
+    line-height:24px;
+    margin-bottom:24px}
+
+.rst-content .note .last,.rst-content .attention .last,.rst-content .caution .last,.rst-content .danger .last,.rst-content .error .last,.rst-content .hint .last,.rst-content .important .last,.rst-content .tip .last,.rst-content .warning .last,.rst-content .seealso .last,.rst-content .admonition-todo .last{
+    margin-bottom:0}
+
+.rst-content .admonition-title:before{
+    margin-right:4px}
+
+.rst-content .admonition table{
+    border-color:rgba(0,0,0,0.1)}
+
+.rst-content .admonition table td,.rst-content .admonition table th{
+    background:transparent !important;
+    border-color:rgba(0,0,0,0.1) !important}
+
+.rst-content .section ol.loweralpha,.rst-content .section ol.loweralpha li{
+    list-style:lower-alpha}
+
+.rst-content .section ol.upperalpha,.rst-content .section ol.upperalpha li{
+    list-style:upper-alpha}
+
+.rst-content .section ol p,.rst-content .section ul p{
+    margin-bottom:12px}
+
+.rst-content .line-block{
+    margin-left:24px}
+
+.rst-content .topic-title{
+    font-weight:bold;
+    margin-bottom:12px}
+
+.rst-content .toc-backref{
+    color:#404040}
+
+.rst-content .align-right{
+    float:right;
+    margin:0px 0px 24px 24px}
+
+.rst-content .align-left{
+    float:left;
+    margin:0px 24px 24px 0px}
+
+.rst-content .align-center{
+    margin:auto;
+    display:block}
+
+.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink{
+    display:none;
+    visibility:hidden;
+    font-size:14px}
+
+.rst-content h1 .headerlink:after,.rst-content h2 .headerlink:after,.rst-content h3 .headerlink:after,.rst-content h4 .headerlink:after,.rst-content h5 .headerlink:after,.rst-content h6 .headerlink:after,.rst-content dl dt .headerlink:after{
+    visibility:visible;
+    content:"";
+    font-family:FontAwesome;
+    display:inline-block}
+
+.rst-content h1:hover .headerlink,.rst-content h2:hover .headerlink,.rst-content h3:hover .headerlink,.rst-content h4:hover .headerlink,.rst-content h5:hover .headerlink,.rst-content h6:hover .headerlink,.rst-content dl dt:hover .headerlink{
+    display:inline-block}
+
+.rst-content .sidebar{
+    float:right;
+    width:40%;
+    display:block;
+    margin:0 0 24px 24px;
+    padding:24px;
+    background:#f3f6f6;
+    border:solid 1px #e1e4e5}
+
+.rst-content .sidebar p,.rst-content .sidebar ul,.rst-content .sidebar dl{
+    font-size:90%}
+
+.rst-content .sidebar .last{
+    margin-bottom:0}
+
+.rst-content .sidebar .sidebar-title{
+    display:block;
+    font-family:"Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif;
+    font-weight:bold;
+    background:#e1e4e5;
+    padding:6px 12px;
+    margin:-24px;
+    margin-bottom:24px;
+    font-size:100%}
+
+.rst-content .highlighted{
+    background:#F1C40F;
+    display:inline-block;
+    font-weight:bold;
+    padding:0 6px}
+
+.rst-content .footnote-reference,.rst-content .citation-reference{
+    vertical-align:super;
+    font-size:90%}
+
+.rst-content table.docutils.citation,.rst-content table.docutils.footnote{
+    background:none;
+    border:none;
+    color:#999}
+
+.rst-content table.docutils.citation td,.rst-content table.docutils.citation tr,.rst-content table.docutils.footnote td,.rst-content table.docutils.footnote tr{
+    border:none;
+    background-color:transparent !important;
+    white-space:normal}
+
+.rst-content table.docutils.citation td.label,.rst-content table.docutils.footnote td.label{
+    padding-left:0;
+    padding-right:0;
+    vertical-align:top}
+
+.rst-content table.field-list{
+    border:none}
+
+.rst-content table.field-list td{
+    border:none;
+    padding-top:5px}
+
+.rst-content table.field-list td>strong{
+    display:inline-block;
+    margin-top:3px}
+
+.rst-content table.field-list .field-name{
+    padding-right:10px;
+    text-align:left;
+    white-space:nowrap}
+
+.rst-content table.field-list .field-body{
+    text-align:left;
+    padding-left:0}
+
+.rst-content tt{
+    color:#000}
+
+.rst-content tt big,.rst-content tt em{
+    font-size:100% !important;
+    line-height:normal}
+
+.rst-content tt .xref,a .rst-content tt{
+    font-weight:bold}
+
+.rst-content a tt{
+    color:#2980B9}
+
+.rst-content dl{
+    margin-bottom:24px}
+
+.rst-content dl dt{
+    font-weight:bold}
+
+.rst-content dl p,.rst-content dl table,.rst-content dl ul,.rst-content dl ol{
+    margin-bottom:12px !important}
+
+.rst-content dl dd{
+    margin:0 0 12px 24px}
+
+.rst-content dl:not(.docutils){
+    margin-bottom:24px}
+
+.rst-content dl:not(.docutils) dt{
+    display:inline-block;
+    margin:6px 0;
+    font-size:90%;
+    line-height:normal;
+    background:#e7f2fa;
+    color:#2980B9;
+    border-top:solid 3px #6ab0de;
+    padding:6px;
+    position:relative}
+
+.rst-content dl:not(.docutils) dt:before{
+    color:#6ab0de}
+
+.rst-content dl:not(.docutils) dt .headerlink{
+    color:#404040;
+    font-size:100% !important}
+
+.rst-content dl:not(.docutils) dl dt{
+    margin-bottom:6px;
+    border:none;
+    border-left:solid 3px #ccc;
+    background:#f0f0f0;
+    color:gray}
+
+.rst-content dl:not(.docutils) dl dt .headerlink{
+    color:#404040;
+    font-size:100% !important}
+
+.rst-content dl:not(.docutils) dt:first-child{
+    margin-top:0}
+
+.rst-content dl:not(.docutils) tt{
+    font-weight:bold}
+
+.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) tt.descclassname{
+    background-color:transparent;
+    border:none;
+    padding:0;
+    font-size:100% !important}
+
+.rst-content dl:not(.docutils) tt.descname{
+    font-weight:bold}
+
+.rst-content dl:not(.docutils) .optional{
+    display:inline-block;
+    padding:0 4px;
+    color:#000;
+    font-weight:bold}
+
+.rst-content dl:not(.docutils) .property{
+    display:inline-block;
+    padding-right:8px}
+
+.rst-content .viewcode-link,.rst-content .viewcode-back{
+    display:inline-block;
+    color:#27AE60;
+    font-size:80%;
+    padding-left:24px}
+
+.rst-content .viewcode-back{
+    display:block;
+    float:right}
+
+.rst-content p.rubric{
+    margin-bottom:12px;
+    font-weight:bold}
+
+@media screen and (max-width: 480px){
+    .rst-content .sidebar{
+        width:100%}
+
+}
+
+span[id*='MathJax-Span']{
+    color:#404040}
+
+.math{
+    text-align:center}
+
+
+/*# sourceMappingURL=theme.css.map */
diff --git a/doc/orgmode/css/worg.css b/doc/orgmode/css/worg.css
deleted file mode 100644
index 034fb09f5cac97f39684535b6d417cb54ac6661b..0000000000000000000000000000000000000000
--- a/doc/orgmode/css/worg.css
+++ /dev/null
@@ -1,1038 +0,0 @@
-@media all
-{
-  body {
-    font-family: "Helvetica Neue", "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, sans-serif !important;
-    font-size: 14px;
-    line-height: 21px;
-    color: #333;
-
-    max-width: 800px;
-    margin: auto;
-    /* background-image: url(http://orgmode.org/worg-unicorn.png); */
-    /* background-position: 25px 5px; */
-    /* background-repeat: no-repeat; */
-    }
-    body #content {
-      padding-top: 70px;
-    }
-    body .title {
-      margin-left: 120px;
-    }
-
-  #org-div-home-and-up{
-      position: fixed;
-      right: 0;
-      top: 4em;
-  }
-
-  #site-map {
-    font-size: 10pt;
-    position: fixed;
-    left: 0em;
-    top: 0em;
-    background: white;
-    -webkit-box-shadow: 0 0 1em #777777;
-    -moz-box-shadow: 0 0 1em #777777;
-    -webkit-border-bottom-right-radius: 5px;
-    -moz-border-radius-bottomright: 5px;
-    text-align: right;
-    /* ensure doesn't flow off the screen when expanded */
-    max-height: 80%;
-    overflow: auto; }
-    #site-map h2 {
-	font-size: 10pt;
-      max-width: 9em;
-      font-weight: normal;
-      padding-left: 0.5em;
-      padding-left: 0.5em;
-      padding-top: 0.05em;
-      padding-bottom: 0.05em; }
-    #site-map #text-site-map {
-      text-align: left;
-      display: block;
-      padding: 0.5em;
-      margin-top: -1.5em; }
-    /* #site-map #text-site-map { */
-    /*   display: none; */
-    /*   text-align: left; } */
-    /* #site-map:hover #text-site-map { */
-    /*   display: block; */
-    /*   padding: 0.5em; */
-    /*   margin-top: -1.5em; } */
-
-  #blog-site-map {
-    font-size: 10pt;
-    position: fixed;
-    left: 0em;
-    top: 0em;
-    background: white;
-    -webkit-box-shadow: 0 0 1em #777777;
-    -moz-box-shadow: 0 0 1em #777777;
-    -webkit-border-bottom-right-radius: 5px;
-    -moz-border-radius-bottomright: 5px;
-    text-align: right;
-    /* ensure doesn't flow off the screen when expanded */
-    max-height: 80%;
-    overflow: auto; }
-    #blog-site-map h2 {
-      font-size: 10pt;
-      max-width: 9em;
-      font-weight: normal;
-      padding-left: 0.5em;
-      padding-left: 0.5em;
-      padding-top: 0.05em;
-      padding-bottom: 0.05em; }
-    #blog-site-map #text-blog-site-map {
-      text-align: left;
-      padding: 0.5em;
-      display: none;  }
-    #blog-site-map:hover #text-blog-site-map {
-      text-align: left;
-      display: block;
-      padding: 0.5em;
-      margin-top: -1.5em;
-    }
-    /* #site-map #text-site-map { */
-    /*   display: none; */
-    /*   text-align: left; } */
-    /* #site-map:hover #text-site-map { */
-    /*   display: block; */
-    /*   padding: 0.5em; */
-    /*   margin-top: -1.5em; } */
-
-  /* TOC inspired by http://jashkenas.github.com/coffee-script */
-  #table-of-contents {
-    font-size: 10pt;
-    position: fixed;
-    right: 1em;
-    top: 1em;
-    background: white;
-    -webkit-box-shadow: 0 0 1em #777777;
-    -moz-box-shadow: 0 0 1em #777777;
-    -webkit-border-bottom-left-radius: 5px;
-    -moz-border-radius-bottomleft: 5px;
-    text-align: right;
-    /* ensure doesn't flow off the screen when expanded */
-    max-height: 80%;
-    overflow: auto;
-    padding: 0.5em;
-}
-    #table-of-contents h2 {
-      font-size: 10pt;
-      max-width: 9em;
-      font-weight: normal;
-      padding-left: 0.5em;
-      padding-left: 0.5em;
-      padding-top: 0.05em;
-      padding-bottom: 0.05em; }
-    #table-of-contents #text-table-of-contents {
-      display: none;
-      text-align: left; }
-    #table-of-contents:hover #text-table-of-contents {
-      display: block;
-      padding: 0.5em;
-      margin-top: -1.5em; }
-
-  /* #license { */
-  /*   padding: .3em; */
-  /*   border: 1px solid gray; */
-  /*   background-color: #eeeeee; */
-  /* } */
-
-  h1 {
-/*
-    font-family:Sans;
-    font-weight:bold; */
-    /*font-size:2.5em;*/ /*LUKA*/
-    padding:0 0 30px 0;
-    margin-top: 10px;
-    margin-bottom: 10px;
-    margin-right: 7%;
-    margin-left: 0.6em; /*LUKA*/
-    /*color: #6C5D4F;*/
-    color: #58529f; /*LUKA*/
-  }
-
-  .outline-text-1 { /*LUKA*/
-    margin-left: 0.6em;
-    font-size:1em;
-  }
-
-/*
-  h2:before {
-    content: "* "
-  }
-
-
-  h3:before {
-    content: "** "
-  }
-
-  h4:before {
-    content: "*** "
-  }
-*/
-
-  h2 {
-    font-family:Arial,sans-serif;
-    /*font-size:2.1em;*/ /*LUKA*/
-    line-height:16px;
-    padding:7px 0 0 0;
-    color: #D40000; /*LUKA*/
-    margin-left: 0.4em; /*LUKA*/
-  }
-
-  .outline-text-2 {
-    margin-left: 0.6em; /*LUKA*/
-    /*font-size:1.2em;*/ /*LUKA*/
-  }
-
-  .title {
-
-  }
-
-  h3 {
-    font-family:Arial,sans-serif;
-    /*font-size:1.3em;*/
-    color: #D40000; /*LUKA*/
-    margin-left: 0.6em;
-  }
-
-  .outline-text-3 {
-    margin-left: 0.9em;
-  }
-
-  h4 {
-    font-family:Arial,sans-serif;
-    /*font-size:1.2em;*/
-    margin-left: 1.2em;
-    color: #A5573E;
-  }
-
-  .outline-text-4 {
-    margin-left: 1.45em;
-  }
-
-    /*LUKA*/
-  a {text-decoration: none;  color: #58529f} /*color: #537d7b}*/
-
-  /* a:visited {text-decoration: none; color: #224444} */ /* Taken out because color too similar to text. */
-  a:visited {text-decoration: none; color: #800000}/*color: #98855b}  /* this is now the color of the Unicorns horn */
-  a:hover {text-decoration: underline; color: #a34d32}
-
-  .todo {
-    color: #CA0000;
-  }
-
-  .done {
-    color: #006666;
-  }
-
-  .timestamp-kwd {
-    color: #444;
-  }
-
-  .tag {
-
-  }
-
-  li {
-    margin: .4em;
-  }
-
-  table {
-    border: none;
-  }
-
-  td {
-    border: none;
-  }
-
-  th {
-    border: none;
-  }
-
-  code {
-    font-size: 100%;
-    color: black;
-    border: 1px solid #DEDEDE;
-    padding: 0px 0.2em;
-  }
-
-  img {
-    border: none;
-  }
-
-  .share img {
-    opacity: .4;
-    -moz-opacity: .4;
-    filter: alpha(opacity=40);
-  }
-
-  .share img:hover {
-    opacity: 1;
-    -moz-opacity: 1;
-    filter: alpha(opacity=100);
-  }
-
-  /* pre {border: 1px solid #555; */
-  /*      background: #EEE; */
-  /*      font-size: 9pt; */
-  /*      padding: 1em; */
-  /*     } */
-
-  /* pre { */
-  /*     color: #e5e5e5; */
-  /*     background-color: #000000; */
-  /*     padding: 1.4em; */
-  /*     border: 2px solid gray; */
-  /* } */
-
-  /* pre { */
-  /*     background-color: #2b2b2b; */
-  /*     border: 4px solid gray; */
-  /*     color: #EEE; */
-  /*     overflow: auto; */
-  /*     padding: 1em; */
-  /*  } */
-
-  pre {
-    font-family: Monaco, Consolas, "Lucida Console", monospace;
-    color: black;
-    background-color: #efefef;
-    padding: 1.2em;
-    border: 1px solid #dddddd;
-    overflow: auto;
-
-    -webkit-box-shadow: 0px 0px 4px rgba(0,0,0,0.23);
-    -moz-box-shadow: 0px 0px 4px rgba(0,0,0,0.23);
-    box-shadow: 0px 0px 4px rgba(0,0,0,0.23);
-  }
-
-  .org-info-box {
-    clear:both;
-    margin-left:auto;
-    margin-right:auto;
-    padding:0.7em;
-    /* border:1px solid #CCC; */
-    /* border-radius:10px; */
-    /* -moz-border-radius:10px; */
-  }
-  .org-info-box img {
-    float:left;
-    margin:0em 0.5em 0em 0em;
-  }
-  .org-info-box p {
-    margin:0em;
-    padding:0em;
-  }
-
-
-  .builtin {
-    /* font-lock-builtin-face */
-    color: #f4a460;
-  }
-  .comment {
-    /* font-lock-comment-face */
-    color: #737373;
-  }
-  .comment-delimiter {
-    /* font-lock-comment-delimiter-face */
-    color: #666666;
-  }
-  .constant {
-    /* font-lock-constant-face */
-    color: #db7093;
-  }
-  .doc {
-    /* font-lock-doc-face */
-    color: #b3b3b3;
-  }
-  .function-name {
-    /* font-lock-function-name-face */
-    color: #5f9ea0;
-  }
-  .headline {
-    /* headline-face */
-    color: #ffffff;
-    background-color: #000000;
-    font-weight: bold;
-  }
-  .keyword {
-    /* font-lock-keyword-face */
-    color: #4682b4;
-  }
-  .negation-char {
-  }
-  .regexp-grouping-backslash {
-  }
-  .regexp-grouping-construct {
-  }
-  .string {
-    /* font-lock-string-face */
-    color: #ccc79a;
-  }
-  .todo-comment {
-    /* todo-comment-face */
-    color: #ffffff;
-    background-color: #000000;
-    font-weight: bold;
-  }
-  .variable-name {
-    /* font-lock-variable-name-face */
-    color: #ff6a6a;
-  }
-  .warning {
-    /* font-lock-warning-face */
-    color: #ffffff;
-    background-color: #cd5c5c;
-    font-weight: bold;
-  }
-  pre.a {
-    color: inherit;
-    background-color: inherit;
-    font: inherit;
-    text-decoration: inherit;
-  }
-  pre.a:hover {
-    text-decoration: underline;
-  }
-
-  /* Styles for org-info.js */
-
-  .org-info-js_info-navigation
-  {
-    border-style:none;
-  }
-
-  #org-info-js_console-label
-  {
-    font-size:10px;
-    font-weight:bold;
-    white-space:nowrap;
-  }
-
-  .org-info-js_search-highlight
-  {
-    background-color:#ffff00;
-    color:#000000;
-    font-weight:bold;
-  }
-
-  #org-info-js-window
-  {
-    border-bottom:1px solid black;
-    padding-bottom:10px;
-    margin-bottom:10px;
-  }
-
-
-
-  .org-info-search-highlight
-  {
-    background-color:#adefef; /* same color as emacs default */
-    color:#000000;
-    font-weight:bold;
-  }
-
-  .org-bbdb-company {
-    /* bbdb-company */
-    font-style: italic;
-  }
-  .org-bbdb-field-name {
-  }
-  .org-bbdb-field-value {
-  }
-  .org-bbdb-name {
-    /* bbdb-name */
-    text-decoration: underline;
-  }
-  .org-bold {
-    /* bold */
-    font-weight: bold;
-  }
-  .org-bold-italic {
-    /* bold-italic */
-    font-weight: bold;
-    font-style: italic;
-  }
-  .org-border {
-    /* border */
-    background-color: #000000;
-  }
-  .org-buffer-menu-buffer {
-    /* buffer-menu-buffer */
-    font-weight: bold;
-  }
-  .org-builtin {
-    /* font-lock-builtin-face */
-    color: #da70d6;
-  }
-  .org-button {
-    /* button */
-    text-decoration: underline;
-  }
-  .org-c-nonbreakable-space {
-    /* c-nonbreakable-space-face */
-    background-color: #ff0000;
-    font-weight: bold;
-  }
-  .org-calendar-today {
-    /* calendar-today */
-    text-decoration: underline;
-  }
-  .org-comment {
-    /* font-lock-comment-face */
-    color: #b22222;
-  }
-  .org-comment-delimiter {
-    /* font-lock-comment-delimiter-face */
-    color: #b22222;
-  }
-  .org-constant {
-    /* font-lock-constant-face */
-    color: #5f9ea0;
-  }
-  .org-cursor {
-    /* cursor */
-    background-color: #000000;
-  }
-  .org-default {
-    /* default */
-    color: #000000;
-    background-color: #ffffff;
-  }
-  .org-diary {
-    /* diary */
-    color: #ff0000;
-  }
-  .org-doc {
-    /* font-lock-doc-face */
-    color: #bc8f8f;
-  }
-  .org-escape-glyph {
-    /* escape-glyph */
-    color: #a52a2a;
-  }
-  .org-file-name-shadow {
-    /* file-name-shadow */
-    color: #7f7f7f;
-  }
-  .org-fixed-pitch {
-  }
-  .org-fringe {
-    /* fringe */
-    background-color: #f2f2f2;
-  }
-  .org-function-name {
-    /* font-lock-function-name-face */
-    color: #0000ff;
-  }
-  .org-header-line {
-    /* header-line */
-    color: #333333;
-    background-color: #e5e5e5;
-  }
-  .org-help-argument-name {
-    /* help-argument-name */
-    font-style: italic;
-  }
-  .org-highlight {
-    /* highlight */
-    background-color: #b4eeb4;
-  }
-  .org-holiday {
-    /* holiday */
-    background-color: #ffc0cb;
-  }
-  .org-info-header-node {
-    /* info-header-node */
-    color: #a52a2a;
-    font-weight: bold;
-    font-style: italic;
-  }
-  .org-info-header-xref {
-    /* info-header-xref */
-    color: #ff6600; /*LUKA*/
-    /*color: #0000ff;*/
-    text-decoration: underline;
-  }
-  .org-info-menu-header {
-    /* info-menu-header */
-    font-weight: bold;
-  }
-  .org-info-menu-star {
-    /* info-menu-star */
-    color: #ff0000;
-  }
-  .org-info-node {
-    /* info-node */
-    color: #a52a2a;
-    font-weight: bold;
-    font-style: italic;
-  }
-  .org-info-title-1 {
-    /* info-title-1 */
-    font-size: 172%;
-    font-weight: bold;
-  }
-  .org-info-title-2 {
-    /* info-title-2 */
-    font-size: 144%;
-    font-weight: bold;
-  }
-  .org-info-title-3 {
-    /* info-title-3 */
-    font-size: 120%;
-    font-weight: bold;
-  }
-  .org-info-title-4 {
-    /* info-title-4 */
-    font-weight: bold;
-  }
-  .org-info-xref {
-    /* info-xref */
-    color: #ff6600; /*LUKA*/
-/*    color: #0000ff;*/
-    text-decoration: underline;
-  }
-  .org-isearch {
-    /* isearch */
-    color: #b0e2ff;
-    background-color: #cd00cd;
-  }
-  .org-italic {
-    /* italic */
-    font-style: italic;
-  }
-  .org-keyword {
-    /* font-lock-keyword-face */
-    color: #a020f0;
-  }
-  .org-lazy-highlight {
-    /* lazy-highlight */
-    background-color: #afeeee;
-  }
-  .org-link {
-    /* link */
-    /*color: #0000ff;*/
-    color: #ff6600; /*LUKA*/
-    text-decoration: underline;
-  }
-  .org-link-visited {
-    /* link-visited */
-    color: #ff0000; /*LUKA*/
-    /*color: #8b008b;*/
-    text-decoration: underline;
-  }
-  .org-match {
-    /* match */
-    background-color: #ffff00;
-  }
-  .org-menu {
-  }
-  .org-message-cited-text {
-    /* message-cited-text */
-    color: #ff0000;
-  }
-  .org-message-header-cc {
-    /* message-header-cc */
-    color: #191970;
-  }
-  .org-message-header-name {
-    /* message-header-name */
-    color: #6495ed;
-  }
-  .org-message-header-newsgroups {
-    /* message-header-newsgroups */
-    color: #00008b;
-    font-weight: bold;
-    font-style: italic;
-  }
-  .org-message-header-other {
-    /* message-header-other */
-    color: #4682b4;
-  }
-  .org-message-header-subject {
-    /* message-header-subject */
-    color: #000080;
-    font-weight: bold;
-  }
-  .org-message-header-to {
-    /* message-header-to */
-    color: #191970;
-    font-weight: bold;
-  }
-  .org-message-header-xheader {
-    /* message-header-xheader */
-    color: #0000ff;
-  }
-  .org-message-mml {
-    /* message-mml */
-    color: #228b22;
-  }
-  .org-message-separator {
-    /* message-separator */
-    color: #a52a2a;
-  }
-  .org-minibuffer-prompt {
-    /* minibuffer-prompt */
-    color: #0000cd;
-  }
-  .org-mm-uu-extract {
-    /* mm-uu-extract */
-    color: #006400;
-    background-color: #ffffe0;
-  }
-  .org-mode-line {
-    /* mode-line */
-    color: #000000;
-    background-color: #bfbfbf;
-  }
-  .org-mode-line-buffer-id {
-    /* mode-line-buffer-id */
-    font-weight: bold;
-  }
-  .org-mode-line-highlight {
-  }
-  .org-mode-line-inactive {
-    /* mode-line-inactive */
-    color: #333333;
-    background-color: #e5e5e5;
-  }
-  .org-mouse {
-    /* mouse */
-    background-color: #000000;
-  }
-  .org-negation-char {
-  }
-  .org-next-error {
-    /* next-error */
-    background-color: #eedc82;
-  }
-  .org-nobreak-space {
-    /* nobreak-space */
-    color: #a52a2a;
-    text-decoration: underline;
-  }
-  .org-org-agenda-date {
-    /* org-agenda-date */
-    color: #0000ff;
-  }
-  .org-org-agenda-date-weekend {
-    /* org-agenda-date-weekend */
-    color: #0000ff;
-    font-weight: bold;
-  }
-  .org-org-agenda-restriction-lock {
-    /* org-agenda-restriction-lock */
-    background-color: #ffff00;
-  }
-  .org-org-agenda-structure {
-    /* org-agenda-structure */
-    color: #0000ff;
-  }
-  .org-org-archived {
-    /* org-archived */
-    color: #7f7f7f;
-  }
-  .org-org-code {
-    /* org-code */
-    color: #7f7f7f;
-  }
-  .org-org-column {
-    /* org-column */
-    background-color: #e5e5e5;
-  }
-  .org-org-column-title {
-    /* org-column-title */
-    background-color: #e5e5e5;
-    font-weight: bold;
-    text-decoration: underline;
-  }
-  .org-org-date {
-    /* org-date */
-    color: #a020f0;
-    text-decoration: underline;
-  }
-  .org-org-done {
-    /* org-done */
-    color: #228b22;
-    font-weight: bold;
-  }
-  .org-org-drawer {
-    /* org-drawer */
-    color: #0000ff;
-  }
-  .org-org-ellipsis {
-    /* org-ellipsis */
-    color: #b8860b;
-    text-decoration: underline;
-  }
-  .org-org-formula {
-    /* org-formula */
-    color: #b22222;
-  }
-  .org-org-headline-done {
-    /* org-headline-done */
-    color: #bc8f8f;
-  }
-  .org-org-hide {
-    /* org-hide */
-    color: #e5e5e5;
-  }
-  .org-org-latex-and-export-specials {
-    /* org-latex-and-export-specials */
-    color: #8b4513;
-  }
-  .org-org-level-1 {
-    /* org-level-1 */
-    color: #0000ff;
-  }
-  .org-org-level-2 {
-    /* org-level-2 */
-    color: #b8860b;
-  }
-  .org-org-level-3 {
-    /* org-level-3 */
-    color: #a020f0;
-  }
-  .org-org-level-4 {
-    /* org-level-4 */
-    color: #b22222;
-  }
-  .org-org-level-5 {
-    /* org-level-5 */
-    color: #228b22;
-  }
-  .org-org-level-6 {
-    /* org-level-6 */
-    color: #5f9ea0;
-  }
-  .org-org-level-7 {
-    /* org-level-7 */
-    color: #da70d6;
-  }
-  .org-org-level-8 {
-    /* org-level-8 */
-    color: #bc8f8f;
-  }
-  .org-org-link {
-    /* org-link */
-    color: #ff6600; /*LUKA*/
-    /*color: #a020f0;*/
-    text-decoration: underline;
-  }
-  .org-org-property-value {
-  }
-  .org-org-scheduled-previously {
-    /* org-scheduled-previously */
-    color: #b22222;
-  }
-  .org-org-scheduled-today {
-    /* org-scheduled-today */
-    color: #006400;
-  }
-  .org-org-sexp-date {
-    /* org-sexp-date */
-    color: #a020f0;
-  }
-  .org-org-special-keyword {
-    /* org-special-keyword */
-    color: #bc8f8f;
-  }
-  .org-org-table {
-    /* org-table */
-    color: #0000ff;
-  }
-  .org-org-tag {
-    /* org-tag */
-    font-weight: bold;
-  }
-  .org-org-target {
-    /* org-target */
-    text-decoration: underline;
-  }
-  .org-org-time-grid {
-    /* org-time-grid */
-    color: #b8860b;
-  }
-  .org-org-todo {
-    /* org-todo */
-    color: #ff0000;
-  }
-  .org-org-upcoming-deadline {
-    /* org-upcoming-deadline */
-    color: #b22222;
-  }
-  .org-org-verbatim {
-    /* org-verbatim */
-    color: #7f7f7f;
-    text-decoration: underline;
-  }
-  .org-org-warning {
-    /* org-warning */
-    color: #ff0000;
-    font-weight: bold;
-  }
-  .org-outline-1 {
-    /* outline-1 */
-    color: #0000ff;
-  }
-  .org-outline-2 {
-    /* outline-2 */
-    color: #b8860b;
-  }
-  .org-outline-3 {
-    /* outline-3 */
-    color: #a020f0;
-  }
-  .org-outline-4 {
-    /* outline-4 */
-    color: #b22222;
-  }
-  .org-outline-5 {
-    /* outline-5 */
-    color: #228b22;
-  }
-  .org-outline-6 {
-    /* outline-6 */
-    color: #5f9ea0;
-  }
-  .org-outline-7 {
-    /* outline-7 */
-    color: #da70d6;
-  }
-  .org-outline-8 {
-    /* outline-8 */
-    color: #bc8f8f;
-  }
-  .outline-text-1, .outline-text-2, .outline-text-3, .outline-text-4, .outline-text-5, .outline-text-6 {
-    /* Add more spacing between section. Padding, so that folding with org-info.js works as expected. */
-
-  }
-
-  .org-preprocessor {
-    /* font-lock-preprocessor-face */
-    color: #da70d6;
-  }
-  .org-query-replace {
-    /* query-replace */
-    color: #b0e2ff;
-    background-color: #cd00cd;
-  }
-  .org-regexp-grouping-backslash {
-    /* font-lock-regexp-grouping-backslash */
-    font-weight: bold;
-  }
-  .org-regexp-grouping-construct {
-    /* font-lock-regexp-grouping-construct */
-    font-weight: bold;
-  }
-  .org-region {
-    /* region */
-    background-color: #eedc82;
-  }
-  .org-rmail-highlight {
-  }
-  .org-scroll-bar {
-    /* scroll-bar */
-    background-color: #bfbfbf;
-  }
-  .org-secondary-selection {
-    /* secondary-selection */
-    background-color: #ffff00;
-  }
-  .org-shadow {
-    /* shadow */
-    color: #7f7f7f;
-  }
-  .org-show-paren-match {
-    /* show-paren-match */
-    background-color: #40e0d0;
-  }
-  .org-show-paren-mismatch {
-    /* show-paren-mismatch */
-    color: #ffffff;
-    background-color: #a020f0;
-  }
-  .org-string {
-    /* font-lock-string-face */
-    color: #bc8f8f;
-  }
-  .org-texinfo-heading {
-    /* texinfo-heading */
-    color: #0000ff;
-  }
-  .org-tool-bar {
-    /* tool-bar */
-    color: #000000;
-    background-color: #bfbfbf;
-  }
-  .org-tooltip {
-    /* tooltip */
-    color: #000000;
-    background-color: #ffffe0;
-  }
-  .org-trailing-whitespace {
-    /* trailing-whitespace */
-    background-color: #ff0000;
-  }
-  .org-type {
-    /* font-lock-type-face */
-    color: #228b22;
-  }
-  .org-underline {
-    /* underline */
-    text-decoration: underline;
-  }
-  .org-variable-name {
-    /* font-lock-variable-name-face */
-    color: #b8860b;
-  }
-  .org-variable-pitch {
-  }
-  .org-vertical-border {
-  }
-  .org-warning {
-    /* font-lock-warning-face */
-    color: #ff0000;
-    font-weight: bold;
-  }
-  .rss_box {}
-  .rss_title, rss_title a {}
-  .rss_items {}
-  .rss_item a:link, .rss_item a:visited, .rss_item a:active {}
-  .rss_item a:hover {}
-  .rss_date {}
-
-  #postamble {
-    padding: .3em;
-    border: 1px solid gray;
-    background-color: #eeeeee;
-  }
-
-
-} /* END OF @media all */
-
-
-
-@media screen
-{
-  #table-of-contents {
-    float: right;
-    border: 1px solid #CCC;
-    max-width: 50%;
-    overflow: auto;
-    z-index: 99999;
-  }
-} /* END OF @media screen */
-
-.left{float:left; margin:0 15px 4px 0;}
-.right{float:right; margin:0 0 4px 15px;}
-.photo{
-border:1px solid #bababa;
-padding:2px;
-background-color:#ffffff;
-margin:6px 18px 2px 5px;
-}
diff --git a/doc/orgmode/users_guide.org.in b/doc/orgmode/users_guide.org.in
index 6592ae62ec79374a7cf30ae22d7aee8c8782db1b..39e2618e921f2caa377c6b1049751ddcbd35af98 100644
--- a/doc/orgmode/users_guide.org.in
+++ b/doc/orgmode/users_guide.org.in
@@ -1,14 +1,20 @@
 #+TITLE: CHAMELEON User's Guide
+
 #+SUBTITLE: A dense linear algebra software for heterogeneous architectures
 #+LANGUAGE:  en
 #+OPTIONS: H:3 num:t \n:nil @:t ::t |:t _:nil ^:nil -:t f:t *:t <:t
 #+OPTIONS: TeX:t LaTeX:t skip:nil d:nil pri:nil tags:not-in-toc html-style:nil
 #+BEAMER_THEME: Rochester
-#+HTML_HEAD:   <link rel="stylesheet" title="Standard" href="css/worg.css" type="text/css" />
-#+HTML_HEAD:   <link rel="stylesheet" type="text/css" href="css/VisuGen.css" />
-#+HTML_HEAD:   <link rel="stylesheet" type="text/css" href="css/VisuRubriqueEncadre.css" />
+
+#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="css/htmlize.css"/>
+#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="css/readtheorg.css"/>
+#+HTML_HEAD: <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
+#+HTML_HEAD: <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
+#+HTML_HEAD: <script type="text/javascript" src="styles/lib/js/jquery.stickytableheaders.min.js"></script>
+#+HTML_HEAD: <script type="text/javascript" src="styles/readtheorg/js/readtheorg.js"></script>
+
 #+INCLUDE: "./version.org"
-#+AUTHOR: version {{{VERSION}}}
+
 This is the users guide to Chameleon.  The software ecosystem will be
 presented, the installation instructions detailed and some usage
 examples are presented.  To get more information about the application
diff --git a/example/CMakeLists.txt b/example/CMakeLists.txt
index 24504bebf430871b91f7604f4df70552a34c1d32..cfabcff763de108a918f27cc846e785af4abf15f 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
 #                      Univ. Bordeaux. All rights reserved.
 #
 ###
@@ -17,8 +17,8 @@
 #     Univ. of California Berkeley,
 #     Univ. of Colorado Denver.
 #
-#  @version 1.0.0
-#  @date 2014-10-17
+#  @version 0.9.2
+#  @date 2014-11-16
 #
 ###
 if (CHAMELEON_SIMULATION)
diff --git a/example/lapack_to_chameleon/CMakeLists.txt b/example/lapack_to_chameleon/CMakeLists.txt
index b85367037ea34b5325fe28860467d451b74acd40..6e8908d759ce818ee36198d475fa90878709bc65 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
 #                      Univ. Bordeaux. All rights reserved.
 #
 ###
@@ -13,9 +13,9 @@
 #  CHAMELEON is a software package provided by Inria Bordeaux - Sud-Ouest, LaBRI,
 #  University of Bordeaux, Bordeaux INP
 #
-# @version 1.0.0
+# @version 0.9.2
 #  @author Florent Pruvost
-#  @date 2014-10-13
+#  @date 2018-07-12
 #
 ###
 include_directories(${CMAKE_CURRENT_BINARY_DIR})
diff --git a/example/lapack_to_chameleon/lapack_to_chameleon.h b/example/lapack_to_chameleon/lapack_to_chameleon.h
index 43b6352310118b58760ee7cf5af0d72eb68a6782..e4a17d3e2c7e08e52843c508d94c7d9b1f1ded8f 100644
--- a/example/lapack_to_chameleon/lapack_to_chameleon.h
+++ b/example/lapack_to_chameleon/lapack_to_chameleon.h
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon examples common header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-10-29
+ * @date 2018-07-12
  *
  */
 #ifndef _lapack_to_chameleon_h_
diff --git a/example/lapack_to_chameleon/step0.c b/example/lapack_to_chameleon/step0.c
index e2da77da14fc09a4c33563fa9b92ea68357248bb..f974b1276b9811dab49b17aa54170b2f6b25ffa2 100644
--- a/example/lapack_to_chameleon/step0.c
+++ b/example/lapack_to_chameleon/step0.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon step0 example
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-10-29
+ * @date 2018-07-12
  *
  */
 #include "step0.h"
diff --git a/example/lapack_to_chameleon/step0.h b/example/lapack_to_chameleon/step0.h
index 4d22f78936344388fef3cd094be71afeecbed630..4d68834a602807fed7efb075038ebbe920b03ec8 100644
--- a/example/lapack_to_chameleon/step0.h
+++ b/example/lapack_to_chameleon/step0.h
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon step0 example header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-10-29
+ * @date 2018-07-12
  *
  */
 #ifndef _step0_h_
diff --git a/example/lapack_to_chameleon/step1.c b/example/lapack_to_chameleon/step1.c
index 69fbc50db34b7934581db0e57ed391dd09bd52dd..81f2a65f29b3c63ebc7a38c7fc0e65936ad5b412 100644
--- a/example/lapack_to_chameleon/step1.c
+++ b/example/lapack_to_chameleon/step1.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon step1 example
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-10-29
+ * @date 2018-07-12
  *
  */
 #include "step1.h"
diff --git a/example/lapack_to_chameleon/step1.h b/example/lapack_to_chameleon/step1.h
index 92673eb0ab4d4615aca2590d42e1db2e0efd32f7..8baf1a118138d48d5cb7a26de596ec327376bbee 100644
--- a/example/lapack_to_chameleon/step1.h
+++ b/example/lapack_to_chameleon/step1.h
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon step1 example header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-10-29
+ * @date 2018-07-12
  *
  */
 #ifndef _step1_h_
diff --git a/example/lapack_to_chameleon/step2.c b/example/lapack_to_chameleon/step2.c
index 871bbac8476abbb2a86d0b06d651ce2bddfa8201..ea70b4e7ace01f05c8911b016bb95f2460739e13 100644
--- a/example/lapack_to_chameleon/step2.c
+++ b/example/lapack_to_chameleon/step2.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon step2 example
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-10-29
+ * @date 2018-07-12
  *
  */
 #include "step2.h"
diff --git a/example/lapack_to_chameleon/step2.h b/example/lapack_to_chameleon/step2.h
index 383355257cf854aa4f2cd713ad13d31d07d096f4..5183319667da1480d08da64e34ffd6d376d1a0e6 100644
--- a/example/lapack_to_chameleon/step2.h
+++ b/example/lapack_to_chameleon/step2.h
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon step2 example header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-10-29
+ * @date 2018-07-12
  *
  */
 #ifndef _step2_h_
diff --git a/example/lapack_to_chameleon/step3.c b/example/lapack_to_chameleon/step3.c
index 02755d1fc7b644d6ab407b86ebc63cbe7c82f32a..82d50f89a2f01aa49f0f8f0b747618c2f1715050 100644
--- a/example/lapack_to_chameleon/step3.c
+++ b/example/lapack_to_chameleon/step3.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon step3 example
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-10-29
+ * @date 2018-07-12
  *
  */
 #include "step3.h"
diff --git a/example/lapack_to_chameleon/step3.h b/example/lapack_to_chameleon/step3.h
index edc2385a87688f336e04a50cf0fc9790f257b4e5..ca07668ba26f0dea06644d3140aa8321ee6543c4 100644
--- a/example/lapack_to_chameleon/step3.h
+++ b/example/lapack_to_chameleon/step3.h
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon step3 example header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-10-29
+ * @date 2018-07-12
  *
  */
 #ifndef _step3_h_
diff --git a/example/lapack_to_chameleon/step4.c b/example/lapack_to_chameleon/step4.c
index 635e14c633d596c1bbebff5d11ddf4c2da80c0b9..88c80c5ed1dcf263b5de8ae244aa3706368cfefa 100644
--- a/example/lapack_to_chameleon/step4.c
+++ b/example/lapack_to_chameleon/step4.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon step4 example
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-10-29
+ * @date 2018-07-12
  *
  */
 #include "step4.h"
diff --git a/example/lapack_to_chameleon/step4.h b/example/lapack_to_chameleon/step4.h
index eab5928cabd481d95d114479a53e608482cc60e5..4cbdcda49db951958166797f54315b1355456e28 100644
--- a/example/lapack_to_chameleon/step4.h
+++ b/example/lapack_to_chameleon/step4.h
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon step4 example header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-10-29
+ * @date 2018-07-12
  *
  */
 #ifndef _step4_h_
diff --git a/example/lapack_to_chameleon/step5.c b/example/lapack_to_chameleon/step5.c
index 1b154d5387704c915b351e8ad4470273435f88c5..2cf37c098bc8fc9de8af5261aa77b677100e8fdf 100644
--- a/example/lapack_to_chameleon/step5.c
+++ b/example/lapack_to_chameleon/step5.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon step5 example
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-10-29
+ * @date 2018-07-12
  *
  */
 #include "step5.h"
diff --git a/example/lapack_to_chameleon/step5.h b/example/lapack_to_chameleon/step5.h
index ab38168664495bd0cc15df4d4d41eb9f5044e598..423dfa533093f30d300dcca7a7680ea3e04b8922 100644
--- a/example/lapack_to_chameleon/step5.h
+++ b/example/lapack_to_chameleon/step5.h
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon step5 example header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-10-29
+ * @date 2018-07-12
  *
  */
 #ifndef _step5_h_
diff --git a/example/lapack_to_chameleon/step6.c b/example/lapack_to_chameleon/step6.c
index aca3f3feb479fc868f131795203bc0df5693124c..e3ed23f19680c93d6edb0c0284bb4f18afdcf182 100644
--- a/example/lapack_to_chameleon/step6.c
+++ b/example/lapack_to_chameleon/step6.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon step6 example
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-10-29
+ * @date 2018-07-12
  *
  */
 #include "step6.h"
diff --git a/example/lapack_to_chameleon/step6.h b/example/lapack_to_chameleon/step6.h
index 3893a87ab35d0777df5110ab578e61f8175ebfa4..b309a613d622526210d6523c4dd09e7cc61fcd82 100644
--- a/example/lapack_to_chameleon/step6.h
+++ b/example/lapack_to_chameleon/step6.h
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon step6 example header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-10-29
+ * @date 2018-07-12
  *
  */
 #ifndef _step6_h_
diff --git a/example/lapack_to_chameleon/step7.c b/example/lapack_to_chameleon/step7.c
index 7b611bf9ba7ec516fba1558ca613fa80da26deed..02fc93497e417a5f6873f11cac500ae4ab6d0f95 100644
--- a/example/lapack_to_chameleon/step7.c
+++ b/example/lapack_to_chameleon/step7.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon step7 example
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @author Guillaume Sylvand
- * @date 2016-09-05
+ * @date 2018-07-12
  *
  */
 #include "step7.h"
diff --git a/example/lapack_to_chameleon/step7.h b/example/lapack_to_chameleon/step7.h
index 7515ec8b5715898c66739083ee774baea06bfc78..910e37431298310449336e581c6482a759e29eab 100644
--- a/example/lapack_to_chameleon/step7.h
+++ b/example/lapack_to_chameleon/step7.h
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon step7 example header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @author Guillaume Sylvand
- * @date 2016-09-05
+ * @date 2018-07-12
  *
  */
 #ifndef _step7_h_
diff --git a/example/link_chameleon/CMakeLists.txt b/example/link_chameleon/CMakeLists.txt
index cbf4381eb13d417b922b2098b97d1ea0fc48d048..6e0dac9e980d60987c947c5f15c972d1892a7bbb 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
 #                      Univ. Bordeaux. All rights reserved.
 #
 ###
@@ -17,8 +17,8 @@
 #     Univ. of California Berkeley,
 #     Univ. of Colorado Denver.
 #
-#  @version 1.0.0
-#  @date 2014-10-17
+#  @version 0.9.2
+#  @date 2015-01-30
 #
 ###
 cmake_minimum_required(VERSION 2.8)
diff --git a/example/link_chameleon/link_chameleon.c b/example/link_chameleon/link_chameleon.c
index ff20e16a0c007e46436f202c66754a6921010e5b..c50bc204e6b9d17f001bce977054bccec00f2971 100644
--- a/example/link_chameleon/link_chameleon.c
+++ b/example/link_chameleon/link_chameleon.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon link_chameleon example
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-10-29
+ * @date 2015-01-30
  *
  */
 #include <math.h>
diff --git a/example/link_chameleon/link_chameleon.f90 b/example/link_chameleon/link_chameleon.f90
index e58eaf9da0c378df249a1888ad1118ec47844d27..a9a2594437edc9e6e34fbb8337efeda24dd02ccf 100644
--- a/example/link_chameleon/link_chameleon.f90
+++ b/example/link_chameleon/link_chameleon.f90
@@ -6,12 +6,12 @@
 !  CHAMELEON is a software package provided by Univ. of Tennessee,
 !  Univ. of California Berkeley and Univ. of Colorado Denver
 !
-! @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+! @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
 !                      Univ. Bordeaux. All rights reserved.
 !
-! @version 1.0.0
+! @version 0.9.2
 ! @author Florent Pruvost
-! @date 2011-09-15
+! @date 2017-04-27
 program fortran_example
     implicit none
     include 'chameleon_fortran.h'
diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt
index 1ce56703ee5bdc7d4a2593e024cc2cc85fb9b592..4d5f4d15d45a3402ff07f4971e5dffa885b1fcdf 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
 #  @author Florent Pruvost
-#  @date 2012-07-13
+#  @date 2014-11-16
 #
 ###
 
diff --git a/include/chameleon.h b/include/chameleon.h
index 7312639602283834e827337f5635cbcbb806979d..dc0b77adfdaea52547364a48d2fd2a61e4423b80 100644
--- a/include/chameleon.h
+++ b/include/chameleon.h
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon main header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Cedric Augonnet
  * @author Cedric Castagnede
  * @author Florent Pruvost
- * @date 2012-09-15
+ * @date 2018-02-08
  *
  */
 #ifndef _chameleon_h_
diff --git a/include/chameleon/chameleon_z.h b/include/chameleon/chameleon_z.h
index 6d70544fb62dcbd57524eb2d4d0981d49b16c4b9..ce3070d1c1c989f7dea1a7446e49198b484a3a71 100644
--- a/include/chameleon/chameleon_z.h
+++ b/include/chameleon/chameleon_z.h
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon CHAMELEON_complex64_t wrappers
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Hatem Ltaief
  * @author Azzam Haidar
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2018-02-08
  * @precisions normal z -> c d s
  *
  */
diff --git a/include/chameleon/chameleon_zc.h b/include/chameleon/chameleon_zc.h
index 511541394e0d8ec5326383bbd2e1514eb68184fd..1febfa7e70524f6c70e7832f0b9044d9102ab295 100644
--- a/include/chameleon/chameleon_zc.h
+++ b/include/chameleon/chameleon_zc.h
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon mixed precision wrappers header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2018-02-08
  * @precisions mixed zc -> ds
  *
  */
diff --git a/include/chameleon/config.h.in b/include/chameleon/config.h.in
index 88abfe51c42e47788d422b55e7e6b8b62f4968c4..b3fbb7366306c3eabfd2d4e741fa637ecc006ca4 100644
--- a/include/chameleon/config.h.in
+++ b/include/chameleon/config.h.in
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon configuration file
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2017-01-06
+ * @date 2018-06-15
  *
  */
 #ifndef CHAMELEON_CONFIG_H_HAS_BEEN_INCLUDED
diff --git a/include/chameleon/constants.h b/include/chameleon/constants.h
index 626a02de0989c56b5eafffef070bf107c13eb690..7e623aebf155ab457a8fd15f85e55539553a6967 100644
--- a/include/chameleon/constants.h
+++ b/include/chameleon/constants.h
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon global constants
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Cedric Augonnet
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2011-06-01
+ * @date 2018-07-11
  *
  */
 #ifndef _chameleon_constants_h_
diff --git a/include/chameleon/fortran.h b/include/chameleon/fortran.h
index ad6fe9d64db1be50a38ae5b1fbb2c61f91655fd9..a9365b9d0a289b172114c305370ad02c3a22dd7c 100644
--- a/include/chameleon/fortran.h
+++ b/include/chameleon/fortran.h
@@ -5,14 +5,14 @@
 !
 ! @copyright 2009-2014 The University of Tennessee and The University of
 !                      Tennessee Research Foundation. All rights reserved.
-! @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+! @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
 !                      Univ. Bordeaux. All rights reserved.
 !
-! @version 1.0.0
+! @version 0.9.2
 ! @author Bilel Hadri
 ! @author Mathieu Faverge
 ! @author Cedric Castagnede
-! @date 2010-11-15
+! @date 2018-07-11
 !
 !**
 !
diff --git a/include/chameleon/runtime.h b/include/chameleon/runtime.h
index 2c844b4212415e0964c7d7c77a443fd54cdb98d4..b7de3780de09a19f201d336f904f98b217cc65aa 100644
--- a/include/chameleon/runtime.h
+++ b/include/chameleon/runtime.h
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief The common runtimes API
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Cedric Augonnet
  * @author Cedric Castagnede
- * @date 2011-06-01
+ * @date 2018-02-08
  *
  */
 #ifndef _chameleon_runtime_h_
diff --git a/include/chameleon/runtime_struct.h b/include/chameleon/runtime_struct.h
index 9d34949736e4f6cf811afed2edf91c1079d84b50..0b0dc50e6fcd2cfaefed81fd1cb138c8f42756ac 100644
--- a/include/chameleon/runtime_struct.h
+++ b/include/chameleon/runtime_struct.h
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Runtime structures
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Cedric Augonnet
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2011-06-01
+ * @date 2018-06-15
  *
  */
 #ifndef _chameleon_runtime_struct_h_
diff --git a/include/chameleon/simulate.h b/include/chameleon/simulate.h
index f91dce73e893910e3cfd60aed36acae08a6e846c..0b5d845f249e4ab9349ca966dac19c1d7b959b4f 100644
--- a/include/chameleon/simulate.h
+++ b/include/chameleon/simulate.h
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon SimGrid simulation header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-10-02
+ * @date 2018-07-11
  *
  */
 #ifndef _chameleon_simulate_h_
diff --git a/include/chameleon/struct.h b/include/chameleon/struct.h
index ce3beb83e943531404a3a33a614a14b7f2a26932..51315359bc8b6dad57bf577e9ea23e6bd6c6cada 100644
--- a/include/chameleon/struct.h
+++ b/include/chameleon/struct.h
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon structures
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Cedric Augonnet
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2011-06-01
+ * @date 2018-07-11
  *
  */
 #ifndef _chameleon_struct_h_
diff --git a/include/chameleon/tasks.h b/include/chameleon/tasks.h
index 4bbea72815d36440eb9e4ac24040041b35bbf199..e0b1a56a89595ea45063aa600715f31afaaad29d 100644
--- a/include/chameleon/tasks.h
+++ b/include/chameleon/tasks.h
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon elementary tasks main header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Cedric Augonnet
- * @date 2018-11-08
+ * @date 2018-07-11
  *
  */
 #ifndef _chameleon_tasks_h_
diff --git a/include/chameleon/tasks_z.h b/include/chameleon/tasks_z.h
index 954f675703afab35b7a758fb8e4767bf92647612..c82829c9e78db4c216de1d41eaa0d8793384f37f 100644
--- a/include/chameleon/tasks_z.h
+++ b/include/chameleon/tasks_z.h
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon CHAMELEON_Complex64_t elementary tasks header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Hatem Ltaief
  * @author Azzam Haidar
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2018-11-07
+ * @date 2018-07-11
  * @precisions normal z -> c d s
  *
  */
diff --git a/include/chameleon/tasks_zc.h b/include/chameleon/tasks_zc.h
index bd66ffecccef2728e01ec72a0d33b8258e71b7fc..680e1913fdc767c5a05384eac1da8e7d01e5a4d5 100644
--- a/include/chameleon/tasks_zc.h
+++ b/include/chameleon/tasks_zc.h
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 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 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Jakub Kurzak
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2018-07-11
  * @precisions mixed zc -> ds
  *
  */
diff --git a/include/chameleon/timer.h b/include/chameleon/timer.h
index eabe2008d842c43e86b2072a33f9cc134880bebe..6f877ab737b6fc8a75b41e37c0c46dea709c127d 100644
--- a/include/chameleon/timer.h
+++ b/include/chameleon/timer.h
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
- * @version 1.0.0
+ * @version 0.9.2
  *
  * @brief Chameleon timer
  *
  * Provide a simple timer for examples and runtimes which do not provide their
  * own timer.
+ * @date 2018-07-11
  *
  */
 #ifndef _chameleon_timer_h_
diff --git a/include/chameleon/types.h b/include/chameleon/types.h
index 9985af472ae1a8b7a30f88e90f4e8d311d89351c..f3c5058430ba71c2e722b72331955f497c6e1f92 100644
--- a/include/chameleon/types.h
+++ b/include/chameleon/types.h
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon basic datatypes header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Cedric Augonnet
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2011-06-01
+ * @date 2018-07-11
  *
  */
 #ifndef _chameleon_types_h_
diff --git a/plasma-conversion/callGeneration.bash b/plasma-conversion/callGeneration.bash
index 705220abad4a1487e1ebe7f0289523b4c4b1f86a..9bfb98e36676c554e939dfaa10fdc22d83466c64 100755
--- a/plasma-conversion/callGeneration.bash
+++ b/plasma-conversion/callGeneration.bash
@@ -5,7 +5,7 @@
 #
 # @copyright 2009-2015 The University of Tennessee and The University of
 #                      Tennessee Research Foundation. All rights reserved.
-# @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
 #                      Univ. Bordeaux. All rights reserved.
 #
 ###
@@ -18,12 +18,12 @@
 #     Univ. of California Berkeley,
 #     Univ. of Colorado Denver.
 #
-# @version 1.0.0
+# @version 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
 #  @author Florent Pruvost
-#  @date 2015-11-30
+#  @date 2016-08-17
 #
 ###
 
diff --git a/plasma-conversion/fileConversion.py b/plasma-conversion/fileConversion.py
index 75103d22cef70694a0e651f69fefb767fd636781..e283591500e919882285863f77571073ef87a7d2 100644
--- a/plasma-conversion/fileConversion.py
+++ b/plasma-conversion/fileConversion.py
@@ -48,7 +48,7 @@
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
-#  @date 2012-07-13
+#  @date 2016-08-17
 #   
 ###
 
diff --git a/plasma-conversion/fileCopy.py b/plasma-conversion/fileCopy.py
index 7a61996f6078b28b50fb39448babaa5dd96f85fa..6bbbc41af1ec9b51216ed98f438890adbb515507 100644
--- a/plasma-conversion/fileCopy.py
+++ b/plasma-conversion/fileCopy.py
@@ -48,7 +48,7 @@
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
-#  @date 2012-07-13
+#  @date 2016-08-17
 #   
 ###
 
diff --git a/plasma-conversion/generate_morseSrc.py b/plasma-conversion/generate_morseSrc.py
index e1a60b438baaa27bf1d9f35fd8de6c7c91926acb..914f9f4d18b577f46349b0f495d289cd1f8eb52e 100755
--- a/plasma-conversion/generate_morseSrc.py
+++ b/plasma-conversion/generate_morseSrc.py
@@ -48,7 +48,7 @@
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
-#  @date 2012-07-13
+#  @date 2016-08-17
 #   
 ###
 
diff --git a/plasma-conversion/insert-licence/chameleon_c.licence b/plasma-conversion/insert-licence/chameleon_c.licence
index b6b9eedfa0c5874b6996c87d99393ed883c6eaaa..6850947fb41c1de0149ce1d786e48a6ff13fa1ac 100644
--- a/plasma-conversion/insert-licence/chameleon_c.licence
+++ b/plasma-conversion/insert-licence/chameleon_c.licence
@@ -4,7 +4,7 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  **/
diff --git a/plasma-conversion/insert-licence/chameleon_f.licence b/plasma-conversion/insert-licence/chameleon_f.licence
index 6ad6760cf890747d8c0c9825b1d146b233aeca17..c80f5466dee0da26bf56b06ab34ec7512a9006cc 100644
--- a/plasma-conversion/insert-licence/chameleon_f.licence
+++ b/plasma-conversion/insert-licence/chameleon_f.licence
@@ -2,7 +2,7 @@
 !
 ! @copyright 2009-2015 The University of Tennessee and The University
 !                      of Tennessee Research Foundation. All rights reserved.
-! @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+! @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
 !                      Univ. Bordeaux. All rights reserved.
 !
 !!!
diff --git a/plasma-conversion/insert-licence/insert-licence-chameleon.sh b/plasma-conversion/insert-licence/insert-licence-chameleon.sh
index ede6debbfdbca445f08e8dc62d4a0bdf02d34401..9df8a039c066867c712c74e563bc5fd997a04741 100755
--- a/plasma-conversion/insert-licence/insert-licence-chameleon.sh
+++ b/plasma-conversion/insert-licence/insert-licence-chameleon.sh
@@ -44,12 +44,12 @@
 #     Univ. of California Berkeley,
 #     Univ. of Colorado Denver.
 #
-# @version 1.0.0
+# @version 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
 #  @author Florent Pruvost
-#  @date 2012-07-13
+#  @date 2016-08-17
 #
 ###
 for i in $(find . -name "*.c" -or -name "*.h" -not -path "*svn*" -not -name "chameleon_fortran.h")
diff --git a/plasma-conversion/rulesSubstitutions.py b/plasma-conversion/rulesSubstitutions.py
index 12d1cb2cdfa1e288a196dd57b5ec77c9b478c15f..a772d5d0637e38f6da719b03c1334e8b185ca364 100644
--- a/plasma-conversion/rulesSubstitutions.py
+++ b/plasma-conversion/rulesSubstitutions.py
@@ -45,11 +45,11 @@
 #     Univ. of California Berkeley,
 #     Univ. of Colorado Denver. 
 # 
-#  @version 1.0.0
+#  @version 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
-#  @date 2012-07-13
+#  @date 2016-08-17
 #   
 ###
 
@@ -688,7 +688,7 @@ subs = {
     ( 'u', 'provided by Univ. of Tennessee,',                           'provided by Inria Bordeaux - Sud-Ouest, LaBRI,'                                 ),
     ( 'u', 'Univ. of California Berkeley and Univ. of Colorado Denver', 'University of Bordeaux, Bordeaux INP'                                          ),
     ( 'u', '@version 2.6.0\n \* @author', 
-           '@version 2.6.0\n * @comment This file has been automatically generated\n *          from Plasma 2.6.0 for CHAMELEON 1.0.0\n * @author'           ),
+           '@version 2.6.0\n * @comment This file has been automatically generated\n *          from Plasma 2.6.0 for CHAMELEON 0.9.2\n * @author'           ),
     ( 'u', '/([\*]+)/\n/([\*]+)/',                                                        ''                                                             ),
     ( 'u', '/([\*]+)/\n/',                                                                '\n/'                                                          ),
     ( 'u', '/([\*]+)/([a-zA-Z]+)',                                                        '\\2'                                                          ),
diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt
index 309dea8965cd4b14209eb23ece2be43f9df3f3b7..f756adc455fc4007e3086b9b20a79263998e8df1 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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.0.0
+# @version 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
-#  @date 2018-11-07
+#  @date 2014-11-16
 #
 ###
 
diff --git a/runtime/openmp/CMakeLists.txt b/runtime/openmp/CMakeLists.txt
index d283d663d9f809f0b95d00c3c476a46a381cf51c..e792c8f22ee397699eefd9e316a2f392e96b62c0 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
 #  @author Florent Pruvost
-#  @date 2012-07-13
+#  @date 2018-06-15
 #
 ###
 cmake_minimum_required(VERSION 2.8)
diff --git a/runtime/openmp/codelets/codelet_map.c b/runtime/openmp/codelets/codelet_map.c
index 2b9572873d0ef2b2238c92670321f88224c1b3c8..06b2e0b0f75ba91aa52f811b7d522ecf188478ff 100644
--- a/runtime/openmp/codelets/codelet_map.c
+++ b/runtime/openmp/codelets/codelet_map.c
@@ -2,16 +2,16 @@
  *
  * @file openmp/codelet_map.c
  *
- * @copyright 2018-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2018-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon map OpenMP codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2018-09-24
+ * @date 2018-11-21
  *
  */
 #include "chameleon_openmp.h"
diff --git a/runtime/openmp/codelets/codelet_zasum.c b/runtime/openmp/codelets/codelet_zasum.c
index 036c0a1007b31398677c5c99de58a966039b1a00..0ec02b39c6fa6a2224ed48f1a672ec76b96eff85 100644
--- a/runtime/openmp/codelets/codelet_zasum.c
+++ b/runtime/openmp/codelets/codelet_zasum.c
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zasum OpenMP codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Florent Pruvost
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zaxpy.c b/runtime/openmp/codelets/codelet_zaxpy.c
index 6de39f6dd9357a25df795b5bd1f2dea5fe55921c..2d23d3ed893d9ff80c201560a712ebe466e735de 100644
--- a/runtime/openmp/codelets/codelet_zaxpy.c
+++ b/runtime/openmp/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zaxpy StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zbuild.c b/runtime/openmp/codelets/codelet_zbuild.c
index 1952fa385734890393a2b3ff76b42964ebfa9a22..094d9c2750ca04b3f5e5be566c841ca18fbba3f5 100644
--- a/runtime/openmp/codelets/codelet_zbuild.c
+++ b/runtime/openmp/codelets/codelet_zbuild.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zbuild StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Piotr Luszczek
  * @author Pierre Lemarinier
  * @author Mathieu Faverge
@@ -21,7 +21,7 @@
  * @author Cedric Castagnede
  * @author Guillaume Sylvand
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zgeadd.c b/runtime/openmp/codelets/codelet_zgeadd.c
index 2ceeb81594eafa6be29085ef33bc2caa8ed80a4f..e1bb12f26d3db3b005c7e1f96e022aa60532b4f5 100644
--- a/runtime/openmp/codelets/codelet_zgeadd.c
+++ b/runtime/openmp/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeadd StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zgelqt.c b/runtime/openmp/codelets/codelet_zgelqt.c
index 8dd282d6259b0e684ceca96576d09af9e54eab3f..d6baed7cff39804d4bc2f9a73ae38a5782e3edc4 100644
--- a/runtime/openmp/codelets/codelet_zgelqt.c
+++ b/runtime/openmp/codelets/codelet_zgelqt.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgelqt StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zgemm.c b/runtime/openmp/codelets/codelet_zgemm.c
index b2737c3884e7180e8a5fe1e7454e204956dc63af..cc15f3d0d7f20c6b6bfce30c9ab71bb0cf72b247 100644
--- a/runtime/openmp/codelets/codelet_zgemm.c
+++ b/runtime/openmp/codelets/codelet_zgemm.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgemm StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zgeqrt.c b/runtime/openmp/codelets/codelet_zgeqrt.c
index f8bf811afa1756f8265e7ad73b1694742018d1b1..2f2ed8c495643fb244a6d9a7066e22e687632d66 100644
--- a/runtime/openmp/codelets/codelet_zgeqrt.c
+++ b/runtime/openmp/codelets/codelet_zgeqrt.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeqrt StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zgessm.c b/runtime/openmp/codelets/codelet_zgessm.c
index 2ed15696ad7e68429bca9fc1da16b0f34b986870..29969b08e0fc9449ca84304b6a511bae98221d09 100644
--- a/runtime/openmp/codelets/codelet_zgessm.c
+++ b/runtime/openmp/codelets/codelet_zgessm.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgessm StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zgessq.c b/runtime/openmp/codelets/codelet_zgessq.c
index f28d03affa325ae49e55bec9f85ab790fec74d1a..ae15172d441dcd6bbf8475b9c3d841a5acfc2be3 100644
--- a/runtime/openmp/codelets/codelet_zgessq.c
+++ b/runtime/openmp/codelets/codelet_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgessq StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zgetrf.c b/runtime/openmp/codelets/codelet_zgetrf.c
index ab9869f7ebc4d5ddc54e49cc670c9218ed39bea7..8a197d18b2bd58c3507aa0c7fffc3578c242092f 100644
--- a/runtime/openmp/codelets/codelet_zgetrf.c
+++ b/runtime/openmp/codelets/codelet_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrf StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @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 9f26a7064a8597129deaa5fdbdbb3801cfcc355c..00edb5847a067f7cf8c2366450cdd740d398bdbf 100644
--- a/runtime/openmp/codelets/codelet_zgetrf_incpiv.c
+++ b/runtime/openmp/codelets/codelet_zgetrf_incpiv.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrf_incpiv StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @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 829b5473e869d928085743c108776db2527ecbac..86a520800969781dfad57bfc892575b8cc8de36c 100644
--- a/runtime/openmp/codelets/codelet_zgetrf_nopiv.c
+++ b/runtime/openmp/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrf_nopiv StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Omar Zenati
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zhe2ge.c b/runtime/openmp/codelets/codelet_zhe2ge.c
index 06ffbf7249d88c59891fd2cea7a40166b80c59eb..f0730231c80955dc20f77ca5335e1b44fc17c484 100644
--- a/runtime/openmp/codelets/codelet_zhe2ge.c
+++ b/runtime/openmp/codelets/codelet_zhe2ge.c
@@ -4,14 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2014 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zhe2ge StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Philippe Virouleau
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zhemm.c b/runtime/openmp/codelets/codelet_zhemm.c
index 4d632655a2eb547813ee747c40ab2f341a341bee..91cafbb923023f0dd460356a9df79cf905e22e91 100644
--- a/runtime/openmp/codelets/codelet_zhemm.c
+++ b/runtime/openmp/codelets/codelet_zhemm.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zhemm StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zher2k.c b/runtime/openmp/codelets/codelet_zher2k.c
index a999ae5829f1758f462ebabd141e332d0db7062d..0ad4992a4108bd78ebe5faf0b213ef1daf37ccf0 100644
--- a/runtime/openmp/codelets/codelet_zher2k.c
+++ b/runtime/openmp/codelets/codelet_zher2k.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zher2k StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zherfb.c b/runtime/openmp/codelets/codelet_zherfb.c
index 2699b10031267012b77537e7b9f1e2969c4059cf..bb6f5a4dca133be3d0eabe668f8230b36f202030 100644
--- a/runtime/openmp/codelets/codelet_zherfb.c
+++ b/runtime/openmp/codelets/codelet_zherfb.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2014 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zherfb StarPU codelet
  *
- * @version 1.0.0
- * @author Hatem Ltaief
- * @date 2010-11-15
+ * @version 0.9.2
+ * @author Philippe Virouleau
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zherk.c b/runtime/openmp/codelets/codelet_zherk.c
index a177be9b7baa9a9205d01cbbe2880f432b87fa51..d9742c2677e114e8b619ea73b9fb951c30264669 100644
--- a/runtime/openmp/codelets/codelet_zherk.c
+++ b/runtime/openmp/codelets/codelet_zherk.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zherk StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zhessq.c b/runtime/openmp/codelets/codelet_zhessq.c
index 409d413ddfd9a78deb7182f1caca79d63f8dddb2..702095aed7388e453b0b9696b0291fc090392bd8 100644
--- a/runtime/openmp/codelets/codelet_zhessq.c
+++ b/runtime/openmp/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zhessq StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zlacpy.c b/runtime/openmp/codelets/codelet_zlacpy.c
index 44ea300eb4f8675400ae2de3cd4055cbdc5104b3..e483d86d10ac5c2671f55addb415499065a754f8 100644
--- a/runtime/openmp/codelets/codelet_zlacpy.c
+++ b/runtime/openmp/codelets/codelet_zlacpy.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlacpy StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zlag2c.c b/runtime/openmp/codelets/codelet_zlag2c.c
index 26a024cd0a9b0d8ffd3aa35ead905e44d8e820df..cc3b003c0b795a3a0d77792a8d022c1a1c462b84 100644
--- a/runtime/openmp/codelets/codelet_zlag2c.c
+++ b/runtime/openmp/codelets/codelet_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlag2c StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions mixed zc -> ds
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zlange.c b/runtime/openmp/codelets/codelet_zlange.c
index 7c898916e1a394ca41df16acb95f2c9f313fcc98..5ed3ec11cf89f80cf51a44de8ccbb8856406d77a 100644
--- a/runtime/openmp/codelets/codelet_zlange.c
+++ b/runtime/openmp/codelets/codelet_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlange StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zlanhe.c b/runtime/openmp/codelets/codelet_zlanhe.c
index 094245ddf4ef68d28c2e2357b73a325318280e5e..5f9e0a77179414645cecf4de662bebb9a3eec789 100644
--- a/runtime/openmp/codelets/codelet_zlanhe.c
+++ b/runtime/openmp/codelets/codelet_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlanhe StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zlansy.c b/runtime/openmp/codelets/codelet_zlansy.c
index f4f8834c45a5febdf37aa9a94400c5c3cad6eb19..147b59da4c3634f5ebf66657975ba988c4e98d3f 100644
--- a/runtime/openmp/codelets/codelet_zlansy.c
+++ b/runtime/openmp/codelets/codelet_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlansy StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zlantr.c b/runtime/openmp/codelets/codelet_zlantr.c
index 517bf27a2375a3cd492b58bac3f35c76c055127f..994d2fb26f966b92621a1f91b7a041c09a211c8f 100644
--- a/runtime/openmp/codelets/codelet_zlantr.c
+++ b/runtime/openmp/codelets/codelet_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlantr StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zlascal.c b/runtime/openmp/codelets/codelet_zlascal.c
index 2aa990418ec83c10e2e6e2658a96636b8bee3cf7..84944c9093f5d21768788da53b9149e3970ea497 100644
--- a/runtime/openmp/codelets/codelet_zlascal.c
+++ b/runtime/openmp/codelets/codelet_zlascal.c
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlascal StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Dalal Sukkari
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zlaset.c b/runtime/openmp/codelets/codelet_zlaset.c
index 6d9eb3768fdf660bd993ed6e1f4978fb97930f3b..8884f4cbf8a37e30afbbd78097ac188267cea79e 100644
--- a/runtime/openmp/codelets/codelet_zlaset.c
+++ b/runtime/openmp/codelets/codelet_zlaset.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlaset StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zlaset2.c b/runtime/openmp/codelets/codelet_zlaset2.c
index 08e49e0ba61e438bc17f851007485a6cf00f2b6d..87fb57d9e275372ae9cd86ae62617f466c2ebf65 100644
--- a/runtime/openmp/codelets/codelet_zlaset2.c
+++ b/runtime/openmp/codelets/codelet_zlaset2.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlaset2 StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zlatro.c b/runtime/openmp/codelets/codelet_zlatro.c
index ec50bb9cfb1ab86d62e8e0bbf5800ef979b6cbb6..86c0c4b884773083383c5fb9ce7a5615c7540dda 100644
--- a/runtime/openmp/codelets/codelet_zlatro.c
+++ b/runtime/openmp/codelets/codelet_zlatro.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2014 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlatro StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zlauum.c b/runtime/openmp/codelets/codelet_zlauum.c
index 70030fc19d84452c4f5b0d67cec643ce08f61fee..3d729f974fadd7aca74a3be1a6790469b0a5bb1c 100644
--- a/runtime/openmp/codelets/codelet_zlauum.c
+++ b/runtime/openmp/codelets/codelet_zlauum.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlauum StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zplghe.c b/runtime/openmp/codelets/codelet_zplghe.c
index a785b19c2bf0dcaf26e8f667cb2dc4e1340c063a..f7721e74ca45d8c706b2984c55df581e80c81896 100644
--- a/runtime/openmp/codelets/codelet_zplghe.c
+++ b/runtime/openmp/codelets/codelet_zplghe.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplghe StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Piotr Luszczek
  * @author Pierre Lemarinier
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zplgsy.c b/runtime/openmp/codelets/codelet_zplgsy.c
index 4a3cea2f68787ab24e4b0aec63158198954f3f6f..d41878c377a5b2b4e9a8326195a2e3e27412cf22 100644
--- a/runtime/openmp/codelets/codelet_zplgsy.c
+++ b/runtime/openmp/codelets/codelet_zplgsy.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplgsy StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Piotr Luszczek
  * @author Pierre Lemarinier
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zplrnt.c b/runtime/openmp/codelets/codelet_zplrnt.c
index 139f44c8bce94b472019fa6beb9e5ae639799666..9827cc74c1cd01889c466e0a3a5aa7aa94c4fde3 100644
--- a/runtime/openmp/codelets/codelet_zplrnt.c
+++ b/runtime/openmp/codelets/codelet_zplrnt.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplrnt StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Piotr Luszczek
  * @author Pierre Lemarinier
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zplssq.c b/runtime/openmp/codelets/codelet_zplssq.c
index cec083dca98e2fe5d69829bb72feb0d2a54d7173..e41484c09702a4f9deddbf2645f904b03ad0a6e4 100644
--- a/runtime/openmp/codelets/codelet_zplssq.c
+++ b/runtime/openmp/codelets/codelet_zplssq.c
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplssq StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zpotrf.c b/runtime/openmp/codelets/codelet_zpotrf.c
index 815ac1e430e2d0c4b8b0be8bc6b5cde1862fed85..72ac47a75b6c56bc04ff96b3f51438e5e6e52179 100644
--- a/runtime/openmp/codelets/codelet_zpotrf.c
+++ b/runtime/openmp/codelets/codelet_zpotrf.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zpotrf StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zssssm.c b/runtime/openmp/codelets/codelet_zssssm.c
index db82b480eb690cad20be54444ed6afbaf0c67a37..c1fd4b896400c43abebc5da2bfc150b0db376a88 100644
--- a/runtime/openmp/codelets/codelet_zssssm.c
+++ b/runtime/openmp/codelets/codelet_zssssm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zssssm StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zsymm.c b/runtime/openmp/codelets/codelet_zsymm.c
index 76d6ec7b70665be5f78253d7016984c8a2ecb132..85bb6c0fe491cbc9e14b655cdc64e4a396295d4e 100644
--- a/runtime/openmp/codelets/codelet_zsymm.c
+++ b/runtime/openmp/codelets/codelet_zsymm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsymm StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zsyr2k.c b/runtime/openmp/codelets/codelet_zsyr2k.c
index a2a231fa4bcd441284146c82399de649fa02d10b..bedb0ef46e2d4bf7203ba46df83e1da70ab95e02 100644
--- a/runtime/openmp/codelets/codelet_zsyr2k.c
+++ b/runtime/openmp/codelets/codelet_zsyr2k.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyr2k StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zsyrk.c b/runtime/openmp/codelets/codelet_zsyrk.c
index 16e0e370da0596ee63b4420beb6ae7f67fadb8f9..797aa4b089b05621c210d9928b23b9500f7371f0 100644
--- a/runtime/openmp/codelets/codelet_zsyrk.c
+++ b/runtime/openmp/codelets/codelet_zsyrk.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyrk StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zsyssq.c b/runtime/openmp/codelets/codelet_zsyssq.c
index 86b58eb001623830450f47c006f55ea01acee0b6..bc616c81beccd9a2bc9e3711991fe1d2d7d587b6 100644
--- a/runtime/openmp/codelets/codelet_zsyssq.c
+++ b/runtime/openmp/codelets/codelet_zsyssq.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyssq StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2018-06-15
  * @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 73032cf982d18a8d41b9044ed8786fd5f27b80e5..3fb6bb2c4f2fe51b72c4b4ea729a9649fc867fec 100644
--- a/runtime/openmp/codelets/codelet_zsytrf_nopiv.c
+++ b/runtime/openmp/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsytrf_nopiv StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
@@ -19,7 +19,7 @@
  * @author Cedric Castagnede
  * @author Florent Pruvost
  * @author Marc Sergent
- * @date 2011-10-09
+ * @date 2018-06-15
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/openmp/codelets/codelet_ztplqt.c b/runtime/openmp/codelets/codelet_ztplqt.c
index 367e437a75308d151ee3c0dcb6c1e31242491071..d35487b004ef23d4aa2ecc47884dece306387762 100644
--- a/runtime/openmp/codelets/codelet_ztplqt.c
+++ b/runtime/openmp/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztplqt StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2016-12-15
+ * @date 2018-06-15
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/openmp/codelets/codelet_ztpmlqt.c b/runtime/openmp/codelets/codelet_ztpmlqt.c
index a5da0f533070ee0dc5416736ec409729f9b4c2dd..5a131e823f26abbc4e008a8278c39307fdbd96ff 100644
--- a/runtime/openmp/codelets/codelet_ztpmlqt.c
+++ b/runtime/openmp/codelets/codelet_ztpmlqt.c
@@ -4,14 +4,14 @@
  *
  * @copyright 2009-2016 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  * @brief Chameleon ztpmlqt StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2016-12-15
+ * @date 2018-06-15
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/openmp/codelets/codelet_ztpmqrt.c b/runtime/openmp/codelets/codelet_ztpmqrt.c
index 5378a2a5b5af0257991ca8ac6cb8736c8f898a00..a281b35cca6d3c16611f33754f47683349e66ec3 100644
--- a/runtime/openmp/codelets/codelet_ztpmqrt.c
+++ b/runtime/openmp/codelets/codelet_ztpmqrt.c
@@ -4,14 +4,14 @@
  *
  * @copyright 2009-2016 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  * @brief Chameleon ztpmqrt StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2016-12-15
+ * @date 2018-06-15
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/openmp/codelets/codelet_ztpqrt.c b/runtime/openmp/codelets/codelet_ztpqrt.c
index 755de21bdd376553e9e22490be44c605f41c8c20..13ce6a8f5ddf06db09483faf1be2f71f41ada1f2 100644
--- a/runtime/openmp/codelets/codelet_ztpqrt.c
+++ b/runtime/openmp/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztpqrt StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2016-12-15
+ * @date 2018-06-15
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/openmp/codelets/codelet_ztradd.c b/runtime/openmp/codelets/codelet_ztradd.c
index 384ba192da8c797e51c62f3a279001842402275e..dbf8ba72f581e67a969c75c1ca434c23d21c5f5d 100644
--- a/runtime/openmp/codelets/codelet_ztradd.c
+++ b/runtime/openmp/codelets/codelet_ztradd.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztradd StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2011-11-03
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_ztrasm.c b/runtime/openmp/codelets/codelet_ztrasm.c
index c2a017cfd0cc97bb6edff1c3836aad38993c4d11..715dc89a1d91da6444062094fe1fa75120168833 100644
--- a/runtime/openmp/codelets/codelet_ztrasm.c
+++ b/runtime/openmp/codelets/codelet_ztrasm.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrasm StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_ztrmm.c b/runtime/openmp/codelets/codelet_ztrmm.c
index bd255050d452cbb3296e2b4cfac05045c768ab8e..248865be1a32d8963fc56b531e9a77598a6ab245 100644
--- a/runtime/openmp/codelets/codelet_ztrmm.c
+++ b/runtime/openmp/codelets/codelet_ztrmm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrmm StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_ztrsm.c b/runtime/openmp/codelets/codelet_ztrsm.c
index 9db743cabb7faa272a750faf797e09fe0b9e57ef..062bfc51c012d35036a3511680ee84d3429f2f5a 100644
--- a/runtime/openmp/codelets/codelet_ztrsm.c
+++ b/runtime/openmp/codelets/codelet_ztrsm.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrsm StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-20
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_ztrssq.c b/runtime/openmp/codelets/codelet_ztrssq.c
index b4ce2a66097deefadce9153c1c8d6292cd7291df..38a69fca2afba6ad56389152e6f88f30e556a7d3 100644
--- a/runtime/openmp/codelets/codelet_ztrssq.c
+++ b/runtime/openmp/codelets/codelet_ztrssq.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrssq StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_ztrtri.c b/runtime/openmp/codelets/codelet_ztrtri.c
index cef754f89dda4359b0a0ad00c44cc24286a0d69e..ea113cdaeeea8b359a3f32e758c0eeb56cbceee5 100644
--- a/runtime/openmp/codelets/codelet_ztrtri.c
+++ b/runtime/openmp/codelets/codelet_ztrtri.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrtri StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2018-06-15
  * @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 0d1b2d1ffa0ec36f871211b507b6ddd13ac3c2e1..4bd4eec9306c27472776e856597e850fe5d4ac14 100644
--- a/runtime/openmp/codelets/codelet_ztsmlq_hetra1.c
+++ b/runtime/openmp/codelets/codelet_ztsmlq_hetra1.c
@@ -4,18 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2014 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztsmlq_hetra1 StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Azzam Haidar
- * @date 2010-11-15
+ * @author Philippe Virouleau
+ * @date 2018-06-15
  * @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 6ae8085c9998d895743a26b118d5bdd560a99eb4..1a655281b25777187c8eaa7d0997cc8dcd9b0bb4 100644
--- a/runtime/openmp/codelets/codelet_ztsmqr_hetra1.c
+++ b/runtime/openmp/codelets/codelet_ztsmqr_hetra1.c
@@ -4,18 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2014 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztsmqr_hetra1 StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Azzam Haidar
- * @date 2010-11-15
+ * @author Philippe Virouleau
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_ztstrf.c b/runtime/openmp/codelets/codelet_ztstrf.c
index 4072b5d68998d0d497e77267ab899b6a27c55874..2db3931ec0967bb9eca6067f665c7950afa29ccc 100644
--- a/runtime/openmp/codelets/codelet_ztstrf.c
+++ b/runtime/openmp/codelets/codelet_ztstrf.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztstrf StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zunmlq.c b/runtime/openmp/codelets/codelet_zunmlq.c
index 0dd8f263dcb597e85a218a8577598e75369c0d49..6de8202b2cdf5575c128e9b04445d4cb680658e2 100644
--- a/runtime/openmp/codelets/codelet_zunmlq.c
+++ b/runtime/openmp/codelets/codelet_zunmlq.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmlq StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/codelets/codelet_zunmqr.c b/runtime/openmp/codelets/codelet_zunmqr.c
index ed40c42110b843ba304eea3f001df82cc3fd52fe..93190251e3383eb2dc5042c21cce85cea68c159f 100644
--- a/runtime/openmp/codelets/codelet_zunmqr.c
+++ b/runtime/openmp/codelets/codelet_zunmqr.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmqr StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2018-06-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/openmp/control/runtime_async.c b/runtime/openmp/control/runtime_async.c
index cb88c5e00e727b4cae28dd63ff0b54bb86aa9c64..7de751289c7a7f95de6d56869844f87b6c09dbae 100644
--- a/runtime/openmp/control/runtime_async.c
+++ b/runtime/openmp/control/runtime_async.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon StarPU asynchronous routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2018-06-15
  *
  */
 #include <stdlib.h>
diff --git a/runtime/openmp/control/runtime_context.c b/runtime/openmp/control/runtime_context.c
index 19dded3962ab770e84d887ae7f25cd12cc633c8e..c8130f46a88eb3f4ed40137a565ae61947228d46 100644
--- a/runtime/openmp/control/runtime_context.c
+++ b/runtime/openmp/control/runtime_context.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon StarPU context routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Cedric Augonnet
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2018-06-15
  *
  */
 #include <stdlib.h>
diff --git a/runtime/openmp/control/runtime_control.c b/runtime/openmp/control/runtime_control.c
index 1a6c0185ce74f5e266ff12cc25b9adf1ac69e589..0f304bb38b98e35946cd99a2a9ba7b20380db336 100644
--- a/runtime/openmp/control/runtime_control.c
+++ b/runtime/openmp/control/runtime_control.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon StarPU control routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Cedric Augonnet
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2018-06-15
  *
  */
 #include <stdlib.h>
diff --git a/runtime/openmp/control/runtime_descriptor.c b/runtime/openmp/control/runtime_descriptor.c
index b6144495cd7b9c423df8ee7ba76ed11f576b818f..5fefecb6575d422ce91b03fbbddafe2682e8f3f9 100644
--- a/runtime/openmp/control/runtime_descriptor.c
+++ b/runtime/openmp/control/runtime_descriptor.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon OpenMP descriptor routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Vijay Joshi
  * @author Cedric Castagnede
  * @author Philippe Virouleau
- * @date 2018-06-21
+ * @date 2018-06-15
  *
  */
 #include <stdlib.h>
diff --git a/runtime/openmp/control/runtime_options.c b/runtime/openmp/control/runtime_options.c
index 744c31324423bcb0c051f0461ad49f16c90a85eb..d7bd49d20e5aad1ca9d011fc3d6629be77ba668f 100644
--- a/runtime/openmp/control/runtime_options.c
+++ b/runtime/openmp/control/runtime_options.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon StarPU options routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Cedric Augonnet
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2018-06-15
  *
  */
 #include <stdlib.h>
diff --git a/runtime/openmp/control/runtime_profiling.c b/runtime/openmp/control/runtime_profiling.c
index 4d8f07a95fb0ccb0144291a6ffac043260f25719..dfb9e25798bb020e50336268abbb58639f9125c8 100644
--- a/runtime/openmp/control/runtime_profiling.c
+++ b/runtime/openmp/control/runtime_profiling.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon StarPU profiling routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Cedric Augonnet
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2018-06-15
  *
  */
 #include "chameleon_openmp.h"
diff --git a/runtime/openmp/include/chameleon_openmp.h b/runtime/openmp/include/chameleon_openmp.h
index cc9a127af0d998d004336c3e2df87dda5811deac..2e93fe8f01fbf44167c694d428b9347e74a72add 100644
--- a/runtime/openmp/include/chameleon_openmp.h
+++ b/runtime/openmp/include/chameleon_openmp.h
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2014 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon OpenMP runtime main header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Philippe Virouleau
- * @date 2018-06-21
+ * @date 2018-06-15
  *
  */
-#ifndef _CHAMELEON_OPENMP_H_
-#define _CHAMELEON_OPENMP_H_
+#ifndef _chameleon_openmp_h_
+#define _chameleon_openmp_h_
 
 #include "coreblas.h"
 
@@ -30,4 +30,4 @@
 #define RTBLKADDR( desc, type, m, n ) ( (type*)RUNTIME_data_getaddr( desc, m, n ) )
 
 
-#endif /* _CHAMELEON_OPENMP_H_ */
+#endif /* _chameleon_openmp_h_ */
diff --git a/runtime/parsec/CMakeLists.txt b/runtime/parsec/CMakeLists.txt
index de97e489c2d66dedc1aed5d28695d76dca5b67cc..30787450afdfe5bbfa390ba2ea233788dadd4223 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
 #  @author Florent Pruvost
-#  @date 2012-07-13
+#  @date 2015-11-04
 #
 ###
 cmake_minimum_required(VERSION 2.8)
diff --git a/runtime/parsec/codelets/codelet_map.c b/runtime/parsec/codelets/codelet_map.c
index 6e94bff1635d81c8b5dac7725222afb861a7e2a6..55e7d79d7d279a6db0499611c4680877e59c9957 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2018-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon map PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2018-09-24
+ * @date 2018-09-25
  *
  */
 #include "chameleon_parsec.h"
diff --git a/runtime/parsec/codelets/codelet_zasum.c b/runtime/parsec/codelets/codelet_zasum.c
index 47621135647464925fc23f3a3b141d44348cbd82..ccea8174394bbbc026880d89d1f9c2009c56dde1 100644
--- a/runtime/parsec/codelets/codelet_zasum.c
+++ b/runtime/parsec/codelets/codelet_zasum.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zasum PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zaxpy.c b/runtime/parsec/codelets/codelet_zaxpy.c
index cc79a219c7074395d5a64ac2672af6f7480ffe1d..ed886e868ee8e081739bf0731846f61c683a1db6 100644
--- a/runtime/parsec/codelets/codelet_zaxpy.c
+++ b/runtime/parsec/codelets/codelet_zaxpy.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zaxpy PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zbuild.c b/runtime/parsec/codelets/codelet_zbuild.c
index cd6c149e095c8e94de09c00f80d3679cf494bae8..bd85b99b06b15c24513c6dfab51b4d9990023051 100644
--- a/runtime/parsec/codelets/codelet_zbuild.c
+++ b/runtime/parsec/codelets/codelet_zbuild.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zbuild PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
  * @author Guillaume Sylvand
- * @date 2016-09-05
+ * @date 2016-09-08
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zgeadd.c b/runtime/parsec/codelets/codelet_zgeadd.c
index 7d937857fb1b4b09c6501747397bdd32407029db..da7eb2de21b946bd5e57a414d77202082b433a83 100644
--- a/runtime/parsec/codelets/codelet_zgeadd.c
+++ b/runtime/parsec/codelets/codelet_zgeadd.c
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeadd PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Reazul Hoque
- * @date 2010-11-15
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zgelqt.c b/runtime/parsec/codelets/codelet_zgelqt.c
index 32a7dfaa96e6c629f43c21fa22d85e63243a3264..38cc714d602728fe10033cb05744151ddb924800 100644
--- a/runtime/parsec/codelets/codelet_zgelqt.c
+++ b/runtime/parsec/codelets/codelet_zgelqt.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgelqt PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zgemm.c b/runtime/parsec/codelets/codelet_zgemm.c
index e66de50acbccd70f76b951cccb7d033094c30f88..c3db187a65fdcde80fa408b8efac051f0d4c0c6a 100644
--- a/runtime/parsec/codelets/codelet_zgemm.c
+++ b/runtime/parsec/codelets/codelet_zgemm.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgemm PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zgeqrt.c b/runtime/parsec/codelets/codelet_zgeqrt.c
index 3aaaf84cf85fe02c488c5a8f546130b0b92e0a02..ca6f169c943654121c7de5fd8b3e75bb5d5507fe 100644
--- a/runtime/parsec/codelets/codelet_zgeqrt.c
+++ b/runtime/parsec/codelets/codelet_zgeqrt.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeqrt PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zgessm.c b/runtime/parsec/codelets/codelet_zgessm.c
index a4762cfa289b975da19f5065ed9988494a50e9dc..0515ccec7c52469bb67e72eb67c6f5defff39c0c 100644
--- a/runtime/parsec/codelets/codelet_zgessm.c
+++ b/runtime/parsec/codelets/codelet_zgessm.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgessm PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zgessq.c b/runtime/parsec/codelets/codelet_zgessq.c
index 80cf62f1d54564725c100a340b764375a4f38a02..eb1ffd6f66d86816206c819274f48265be2f6e88 100644
--- a/runtime/parsec/codelets/codelet_zgessq.c
+++ b/runtime/parsec/codelets/codelet_zgessq.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgessq PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zgetrf.c b/runtime/parsec/codelets/codelet_zgetrf.c
index e5bb24dfb7495565ce87b35cf6820a066d66bd22..8154ca2cf70a8e06c7449fe0d809b354e9af308d 100644
--- a/runtime/parsec/codelets/codelet_zgetrf.c
+++ b/runtime/parsec/codelets/codelet_zgetrf.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrf PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @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 55a1fe635d96c08e99211c3d31dfe8ff13242d53..d3128c04947402852262d453efd3f818d9a68eb3 100644
--- a/runtime/parsec/codelets/codelet_zgetrf_incpiv.c
+++ b/runtime/parsec/codelets/codelet_zgetrf_incpiv.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrf_incpiv PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @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 0aadb3c900ca6fdee6ece700d9ac6c161fa9a461..2ff4e9a20db1acdc7bd10d4d1a94d5d045c53f05 100644
--- a/runtime/parsec/codelets/codelet_zgetrf_nopiv.c
+++ b/runtime/parsec/codelets/codelet_zgetrf_nopiv.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrf_nopiv PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zhe2ge.c b/runtime/parsec/codelets/codelet_zhe2ge.c
index 95855c35362edf531bd95ce66c722f5155f65081..a54fb14aa91bf3b9536b4c5a1c71e60e0e92d9c5 100644
--- a/runtime/parsec/codelets/codelet_zhe2ge.c
+++ b/runtime/parsec/codelets/codelet_zhe2ge.c
@@ -4,14 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zhe2ge PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2016-12-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zhemm.c b/runtime/parsec/codelets/codelet_zhemm.c
index 17ba0e9b801e34c8df659235ec9d01eb1db7e937..a4ce4f6135f7c28f7c4977b6bdfddd7758bd7091 100644
--- a/runtime/parsec/codelets/codelet_zhemm.c
+++ b/runtime/parsec/codelets/codelet_zhemm.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zhemm PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zher2k.c b/runtime/parsec/codelets/codelet_zher2k.c
index a28253ff070ef5f7457b018a2e22efbb3b318967..1d4aec6ff21b017366afe3d49caf2d92bd2f5437 100644
--- a/runtime/parsec/codelets/codelet_zher2k.c
+++ b/runtime/parsec/codelets/codelet_zher2k.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zher2k PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zherfb.c b/runtime/parsec/codelets/codelet_zherfb.c
index 8f6166e191f0339fc7f368331bc5ccbddc8eeb3d..489e7d01695346131e187a9020fcab9f97d8bcac 100644
--- a/runtime/parsec/codelets/codelet_zherfb.c
+++ b/runtime/parsec/codelets/codelet_zherfb.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_blas PaRSEC wrapper
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
- * @date 2010-11-15
+ * @date 2016-12-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zherk.c b/runtime/parsec/codelets/codelet_zherk.c
index 36afff206991168116a718b02ac9ea340ea3efc6..4cd3f591b034f7d80934be5392841f0bb1e65578 100644
--- a/runtime/parsec/codelets/codelet_zherk.c
+++ b/runtime/parsec/codelets/codelet_zherk.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zherk PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zhessq.c b/runtime/parsec/codelets/codelet_zhessq.c
index 0001a510349b3ec0d085ee61929e0d65f0357017..238e56bcbc80cb0a74b6d55b0049bb71d32a3072 100644
--- a/runtime/parsec/codelets/codelet_zhessq.c
+++ b/runtime/parsec/codelets/codelet_zhessq.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zhessq PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zlacpy.c b/runtime/parsec/codelets/codelet_zlacpy.c
index d79617ccb3e482fb35a23b53a0b81fe2894a5115..4b5faaf1dee4533c747220e92df54392694e6b10 100644
--- a/runtime/parsec/codelets/codelet_zlacpy.c
+++ b/runtime/parsec/codelets/codelet_zlacpy.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlacpy PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zlag2c.c b/runtime/parsec/codelets/codelet_zlag2c.c
index 60696e54842a465add6208c6bbdefa6c3b1b5b0b..6c65435356d66cc24aa4977c50e12a58d745ae01 100644
--- a/runtime/parsec/codelets/codelet_zlag2c.c
+++ b/runtime/parsec/codelets/codelet_zlag2c.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlag2c PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zlange.c b/runtime/parsec/codelets/codelet_zlange.c
index 89b5c0c8f59b5907fa476907ac1041ddd3d46fbc..b66dfd7bccaf0f0782f9c9495e167e29b392ae64 100644
--- a/runtime/parsec/codelets/codelet_zlange.c
+++ b/runtime/parsec/codelets/codelet_zlange.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlange PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zlanhe.c b/runtime/parsec/codelets/codelet_zlanhe.c
index 94fbdcd42418df38071c42f1a3af531afe1fe328..5621b08cc0205a059f9401c3a208476c44643954 100644
--- a/runtime/parsec/codelets/codelet_zlanhe.c
+++ b/runtime/parsec/codelets/codelet_zlanhe.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlanhe PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zlansy.c b/runtime/parsec/codelets/codelet_zlansy.c
index 65e0103b445db0479e16e77ce56b52823f797b3e..85e23886b9e8a479f1c89746f35eed44a6091abc 100644
--- a/runtime/parsec/codelets/codelet_zlansy.c
+++ b/runtime/parsec/codelets/codelet_zlansy.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlansy PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zlantr.c b/runtime/parsec/codelets/codelet_zlantr.c
index 2b4456a6064ed1a86a37ef42fb8976e1ce586589..d4aa9b42ad2500a2e0ee1310863ee184321bd774 100644
--- a/runtime/parsec/codelets/codelet_zlantr.c
+++ b/runtime/parsec/codelets/codelet_zlantr.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlantr PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zlascal.c b/runtime/parsec/codelets/codelet_zlascal.c
index 67f705326d3848acf8eee93818953b3545c0c870..09f40b18f3a5562c44d09d81ebfd7bc98466eb4b 100644
--- a/runtime/parsec/codelets/codelet_zlascal.c
+++ b/runtime/parsec/codelets/codelet_zlascal.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlascal PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2016-12-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zlaset.c b/runtime/parsec/codelets/codelet_zlaset.c
index 0b6be5841b30d1e543a504fddbacd687af1c6404..f9e0b9566da0cb0852228f0d3603e314987e4f11 100644
--- a/runtime/parsec/codelets/codelet_zlaset.c
+++ b/runtime/parsec/codelets/codelet_zlaset.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlaset PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zlaset2.c b/runtime/parsec/codelets/codelet_zlaset2.c
index 42df500d879fd95a1def39b60a6a671b1c457ac7..731e6d4717a1d9fbb693d3c0667ef8725879748d 100644
--- a/runtime/parsec/codelets/codelet_zlaset2.c
+++ b/runtime/parsec/codelets/codelet_zlaset2.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlaset2 PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zlatro.c b/runtime/parsec/codelets/codelet_zlatro.c
index 055280383bb61b9f0ae6a0914fb359cb1cbd3c0c..af9c8cf3dffd8e857d641e7e567cdb27ff265080 100644
--- a/runtime/parsec/codelets/codelet_zlatro.c
+++ b/runtime/parsec/codelets/codelet_zlatro.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon core_blas PaRSEC wrapper
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Azzam Haidar
- * @date 2010-11-15
+ * @date 2016-12-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zlauum.c b/runtime/parsec/codelets/codelet_zlauum.c
index fff691ccc85ab94e2654a0e9cc7d9dda69c7eab3..497862ea15f5309ef64dec552bcc5b8e85aafca3 100644
--- a/runtime/parsec/codelets/codelet_zlauum.c
+++ b/runtime/parsec/codelets/codelet_zlauum.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlauum PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zplghe.c b/runtime/parsec/codelets/codelet_zplghe.c
index cf643bcd50a4b38f1cd908a27166f79eaac6234f..324270e2a6c06a32b46b5a0fc3b135ee356a4b63 100644
--- a/runtime/parsec/codelets/codelet_zplghe.c
+++ b/runtime/parsec/codelets/codelet_zplghe.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplghe PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zplgsy.c b/runtime/parsec/codelets/codelet_zplgsy.c
index 3e6d99da441242e4a04172b4b62d11e167125c67..9ab5a4faeb73e4067e91cdd8e72217d03c5c3196 100644
--- a/runtime/parsec/codelets/codelet_zplgsy.c
+++ b/runtime/parsec/codelets/codelet_zplgsy.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplgsy PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zplrnt.c b/runtime/parsec/codelets/codelet_zplrnt.c
index e84e00c0d14bd645c297b6bc1fb68f7b789ecc93..2bbeef7419167515c1bd4bffc0d6f516a3196653 100644
--- a/runtime/parsec/codelets/codelet_zplrnt.c
+++ b/runtime/parsec/codelets/codelet_zplrnt.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplrnt PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zplssq.c b/runtime/parsec/codelets/codelet_zplssq.c
index 99006c131417af6b554d8c312bf589bb0a3a4ef0..6c797829395817c83819a5cca0ab53601d25e295 100644
--- a/runtime/parsec/codelets/codelet_zplssq.c
+++ b/runtime/parsec/codelets/codelet_zplssq.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplssq PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zpotrf.c b/runtime/parsec/codelets/codelet_zpotrf.c
index d82f3f6e4cf190322a72e95b1cd192840f22f9b0..0b6b6b9b5d31d503ffcc1c8bfdf495dfe4522e3f 100644
--- a/runtime/parsec/codelets/codelet_zpotrf.c
+++ b/runtime/parsec/codelets/codelet_zpotrf.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zpotrf PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zssssm.c b/runtime/parsec/codelets/codelet_zssssm.c
index d5ccbcefa549ffb7399dffa1905e08204e050704..25d00097a9c312800b39c213fec13a37db294c35 100644
--- a/runtime/parsec/codelets/codelet_zssssm.c
+++ b/runtime/parsec/codelets/codelet_zssssm.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zssssm PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zsymm.c b/runtime/parsec/codelets/codelet_zsymm.c
index 13896c60263359161c655174b051e10c8c92d9d3..703b1b5d15d7bab0f0db10f0cb6a47c9c1934dc9 100644
--- a/runtime/parsec/codelets/codelet_zsymm.c
+++ b/runtime/parsec/codelets/codelet_zsymm.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsymm PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zsyr2k.c b/runtime/parsec/codelets/codelet_zsyr2k.c
index c563ec04baf80550dc16d6f79e5e15a177b7d978..3a44fa279e9d029d68dcc2336115855394aabe1b 100644
--- a/runtime/parsec/codelets/codelet_zsyr2k.c
+++ b/runtime/parsec/codelets/codelet_zsyr2k.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyr2k PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zsyrk.c b/runtime/parsec/codelets/codelet_zsyrk.c
index 15eb1b87c8ac3571bdd429b0418d34e7982a436a..6c1109e894db543c7b260eddb60a78ce05a19b6b 100644
--- a/runtime/parsec/codelets/codelet_zsyrk.c
+++ b/runtime/parsec/codelets/codelet_zsyrk.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyrk PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zsyssq.c b/runtime/parsec/codelets/codelet_zsyssq.c
index 2cf93e2bb35f53d4f0c6a2870b1ce32cb79e341b..9f06c6d4c35769048c1817d92fafe694d5543f09 100644
--- a/runtime/parsec/codelets/codelet_zsyssq.c
+++ b/runtime/parsec/codelets/codelet_zsyssq.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyssq PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @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 6038f9f94b1002a81e4b6a8b657f24d90e4e6a38..ae4cdc64077f11eeb79a5618ebfadb6993726702 100644
--- a/runtime/parsec/codelets/codelet_zsytrf_nopiv.c
+++ b/runtime/parsec/codelets/codelet_zsytrf_nopiv.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsytrf_nopiv PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/parsec/codelets/codelet_ztplqt.c b/runtime/parsec/codelets/codelet_ztplqt.c
index 96a2209258ebd44d6513866b6cfeef4508fcbf34..b99d4961fdae1d1750284ccbb46b51d44cbd9705 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztplqt PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2016-12-15
+ * @date 2018-01-31
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/parsec/codelets/codelet_ztpmlqt.c b/runtime/parsec/codelets/codelet_ztpmlqt.c
index ce66b3e80c4a0286ab381d85e733a5a4a7af7754..b31b3514be8603bcd2c551f7a01b82aae9304c9c 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztpmlqt PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2016-12-15
+ * @date 2018-01-31
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/parsec/codelets/codelet_ztpmqrt.c b/runtime/parsec/codelets/codelet_ztpmqrt.c
index 17311075812ee19749654e7f0c30217900825954..e8caa5d1f9b8b71f7c6c0bf9c8f2b557ef00a877 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztpmqrt PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2016-12-15
+ * @date 2016-12-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/parsec/codelets/codelet_ztpqrt.c b/runtime/parsec/codelets/codelet_ztpqrt.c
index f2308aa5bd3be488289b770b94bcb720e91a49ef..022d7014ef90ae5df0feba16e2c02e57c5773064 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztpqrt PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2016-12-15
+ * @date 2016-12-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/parsec/codelets/codelet_ztradd.c b/runtime/parsec/codelets/codelet_ztradd.c
index 267ac386a3658ff96a3f0e93e76dde86f06994d0..fdfb35729e593c483e4a43bfca2b2bc8e0f900bb 100644
--- a/runtime/parsec/codelets/codelet_ztradd.c
+++ b/runtime/parsec/codelets/codelet_ztradd.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztradd PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_ztrasm.c b/runtime/parsec/codelets/codelet_ztrasm.c
index 25baa50df0799055240ef32b5fc3ec2794841b2d..dc222f01df905923496830579dd67386ef221548 100644
--- a/runtime/parsec/codelets/codelet_ztrasm.c
+++ b/runtime/parsec/codelets/codelet_ztrasm.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrasm PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_ztrmm.c b/runtime/parsec/codelets/codelet_ztrmm.c
index 1f4ce41cd7d86c888ab6a5740beef19126b60d63..a7b16e6aa6268235bedcdc73ad0e52ca866af515 100644
--- a/runtime/parsec/codelets/codelet_ztrmm.c
+++ b/runtime/parsec/codelets/codelet_ztrmm.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrmm PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_ztrsm.c b/runtime/parsec/codelets/codelet_ztrsm.c
index e0c3676d8a811eb157c94bb4aa59c82f23a2f2e6..0d068b3c63c39ebce2294c498c7808589fea8599 100644
--- a/runtime/parsec/codelets/codelet_ztrsm.c
+++ b/runtime/parsec/codelets/codelet_ztrsm.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrsm PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_ztrssq.c b/runtime/parsec/codelets/codelet_ztrssq.c
index 18bfc229f23d6700cdb1eb666fc78f0fb9eaf1fe..f56c8b7ef10fa9a48c35856dedfc593f9589e34e 100644
--- a/runtime/parsec/codelets/codelet_ztrssq.c
+++ b/runtime/parsec/codelets/codelet_ztrssq.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrssq PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_ztrtri.c b/runtime/parsec/codelets/codelet_ztrtri.c
index 399128d2808d4fe943e6a3256e97cf68f91e7aba..c8f80aa308b634a328e139680590ac1b4901a606 100644
--- a/runtime/parsec/codelets/codelet_ztrtri.c
+++ b/runtime/parsec/codelets/codelet_ztrtri.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrtri PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @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 dbc5cfef25e852b5e76b4af907e87b0925392495..5df710c3a3c1bcc196bd83c5f1ba6b1cfbcaa335 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztsmlq_hetra1 PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Jakub Kurzak
  * @author Azzam Haidar
- * @date 2010-11-15
+ * @date 2016-12-15
  * @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 70b97494c7aebb06d8820c9db75b1c6f0f304c28..3aeddf268ce41863394771a47e7bf0051a0c36d9 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztsmqr_hetra1 PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Jakub Kurzak
  * @author Azzam Haidar
- * @date 2010-11-15
+ * @date 2016-12-15
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_ztstrf.c b/runtime/parsec/codelets/codelet_ztstrf.c
index 94ba994825c000cc8fc97c55b6a7a8f1d645874c..5cf60cee1a32379ee7d52c90bbacae3097d2ae65 100644
--- a/runtime/parsec/codelets/codelet_ztstrf.c
+++ b/runtime/parsec/codelets/codelet_ztstrf.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztstrf PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zunmlq.c b/runtime/parsec/codelets/codelet_zunmlq.c
index f37239ec75ddf9ac18c5bcec07f1e5515a6d50c3..f1c725cc3ea144e531539d39152d9ce6052b8ea9 100644
--- a/runtime/parsec/codelets/codelet_zunmlq.c
+++ b/runtime/parsec/codelets/codelet_zunmlq.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmlq PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/codelets/codelet_zunmqr.c b/runtime/parsec/codelets/codelet_zunmqr.c
index 4eff289bef3ec5fdded57f2c6fe0de72f318b7df..66eb30cdbac747fc4299d154c7c945fb73c9eead 100644
--- a/runtime/parsec/codelets/codelet_zunmqr.c
+++ b/runtime/parsec/codelets/codelet_zunmqr.c
@@ -4,15 +4,16 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmqr PaRSEC codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
+ * @date 2015-11-04
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/parsec/control/runtime_async.c b/runtime/parsec/control/runtime_async.c
index 86b93c3f7a1f3a2f006f7fcae4ac5602210012c0..0fc7a30a9cb240309df0e1bbb557457bef2358f3 100644
--- a/runtime/parsec/control/runtime_async.c
+++ b/runtime/parsec/control/runtime_async.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2012-2017 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon PaRSEC asynchronous routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
  * @author Mathieu Faverge
- * @date 2017-01-12
+ * @date 2015-11-04
  *
  */
 #include <stdlib.h>
diff --git a/runtime/parsec/control/runtime_context.c b/runtime/parsec/control/runtime_context.c
index e75177411e0d736692bfc8077690359856e4c73e..41ad7df210a8098f9a5d302eeefe37c0020ba2e9 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon PaRSEC context routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
  * @author Mathieu Faverge
- * @date 2017-01-12
+ * @date 2015-11-04
  *
  */
 #include <stdlib.h>
diff --git a/runtime/parsec/control/runtime_control.c b/runtime/parsec/control/runtime_control.c
index e42d59794897ae54386b221aa7f079cc6fb3ca9e..4719ff7a2eb56e88418642b2d97e5e1d53559e0c 100644
--- a/runtime/parsec/control/runtime_control.c
+++ b/runtime/parsec/control/runtime_control.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2012-2017 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon PaRSEC control routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
  * @author Mathieu Faverge
- * @date 2017-01-12
+ * @date 2015-11-04
  *
  */
 #include <stdio.h>
diff --git a/runtime/parsec/control/runtime_descriptor.c b/runtime/parsec/control/runtime_descriptor.c
index bbb52d3e0e77714f9657be6e611473d00a40b758..76df84146b27819cf462ce26a6ce7af3921b8c96 100644
--- a/runtime/parsec/control/runtime_descriptor.c
+++ b/runtime/parsec/control/runtime_descriptor.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2012-2017 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon PaRSEC descriptor routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
  * @author Mathieu Faverge
- * @date 2017-01-12
+ * @date 2015-11-04
  *
  */
 #include <stdlib.h>
diff --git a/runtime/parsec/control/runtime_options.c b/runtime/parsec/control/runtime_options.c
index 635b4109eaea90ff4553f5f74264c787137deb8d..0bfbbcb29c26bdd607264d7a1b97f4e087f77efb 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon PaRSEC options routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
  * @author Mathieu Faverge
- * @date 2017-01-12
+ * @date 2015-11-04
  *
  */
 #include <stdio.h>
diff --git a/runtime/parsec/control/runtime_profiling.c b/runtime/parsec/control/runtime_profiling.c
index 41a91576069dfb7e4fa9cfb912ad30768f50e059..870233220a5c12a73ff71809820848b84dc4ac4a 100644
--- a/runtime/parsec/control/runtime_profiling.c
+++ b/runtime/parsec/control/runtime_profiling.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2012-2017 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon PaRSEC profiling routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
  * @author Mathieu Faverge
- * @date 2017-01-12
+ * @date 2015-11-04
  *
  */
 #include "chameleon_parsec.h"
diff --git a/runtime/parsec/control/runtime_zlocality.c b/runtime/parsec/control/runtime_zlocality.c
index 8ec032c010ac306fec2248f32cd0692c346bde01..f381354ef8670bf5ff9da53d85ba3986dae4ca9d 100644
--- a/runtime/parsec/control/runtime_zlocality.c
+++ b/runtime/parsec/control/runtime_zlocality.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2012-2017 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon PaRSEC CHAMELEON_Complex64_t kernel locality management
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Reazul Hoque
  * @author Mathieu Faverge
- * @date 2017-01-12
+ * @date 2015-11-04
  *
  */
 #include "runtime/PaRSEC/include/chameleon_parsec.h"
diff --git a/runtime/parsec/control/runtime_zprofiling.c b/runtime/parsec/control/runtime_zprofiling.c
index fcafda34cd05718fd43baaee8197db25ade4dd79..85109d950ccb9c70be80048cb71e5bba512ba968 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 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 0.9.2
  * @author Reazul Hoque
  * @author Mathieu Faverge
- * @date 2017-01-12
+ * @date 2015-11-04
  *
  */
 #include "chameleon_parsec.h"
diff --git a/runtime/parsec/include/chameleon_parsec.h b/runtime/parsec/include/chameleon_parsec.h
index 7fea9f987a9a4c5a7369977d575cfde9a28d17f2..94a850f753596a092c12d16edcf0859c3aa1abdd 100644
--- a/runtime/parsec/include/chameleon_parsec.h
+++ b/runtime/parsec/include/chameleon_parsec.h
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2015 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon PaRSEC runtime header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Reazul Hoque
- * @date 2018-02-06
+ * @date 2017-07-31
  *
  */
 #ifndef _chameleon_parsec_h_
diff --git a/runtime/quark/CMakeLists.txt b/runtime/quark/CMakeLists.txt
index 22284c1563cf2699b2844aa6548a9c9eee3a9e30..83a38ad37b0bcab187d47e4c7d715f444464ded1 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
 #  @author Florent Pruvost
-#  @date 2012-07-13
+#  @date 2014-11-16
 #
 ###
 cmake_minimum_required(VERSION 2.8)
diff --git a/runtime/quark/codelets/codelet_map.c b/runtime/quark/codelets/codelet_map.c
index ef84d52d13d4c8b2855c273105b22f66543d79b8..872f9c7a051b7c535496dcb5bfa6a6a07d1fe39f 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2018-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon map Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2018-09-24
+ * @date 2018-09-25
  *
  */
 #include "chameleon_quark.h"
diff --git a/runtime/quark/codelets/codelet_zasum.c b/runtime/quark/codelets/codelet_zasum.c
index d3b354bca816d964c35896f966ed9e5d6727ffbc..6dd5cce039d950042fb8626f5a186da35d13e7b4 100644
--- a/runtime/quark/codelets/codelet_zasum.c
+++ b/runtime/quark/codelets/codelet_zasum.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zasum Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zaxpy.c b/runtime/quark/codelets/codelet_zaxpy.c
index 2ced4ad717b3ce18e8bb17834625ba1ba59ead51..be7fd595991dbc1bdf671fe813db39d3870e211a 100644
--- a/runtime/quark/codelets/codelet_zaxpy.c
+++ b/runtime/quark/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zaxpy Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zbuild.c b/runtime/quark/codelets/codelet_zbuild.c
index 143f5daad442aaaeec0ee429fb0db5cc46242509..d7269a6af4bf992dd10175407d62387c4b037fa2 100644
--- a/runtime/quark/codelets/codelet_zbuild.c
+++ b/runtime/quark/codelets/codelet_zbuild.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zbuild Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Piotr Luszczek
  * @author Pierre Lemarinier
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Guillaume Sylvand
- * @date 2016-09-05
+ * @date 2016-09-08
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zgeadd.c b/runtime/quark/codelets/codelet_zgeadd.c
index 935bc0ba1394e243cb4cb2c922961f56a909149b..dd8205a6ed43d16cba0691f0bb815ea479bd8ff4 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeadd Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zgelqt.c b/runtime/quark/codelets/codelet_zgelqt.c
index 45db83e556754dd6e47c7b89ac8e72c24bdf6e43..6704bd55a2956181927d622aadf9a4d1267d53f4 100644
--- a/runtime/quark/codelets/codelet_zgelqt.c
+++ b/runtime/quark/codelets/codelet_zgelqt.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgelqt Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zgemm.c b/runtime/quark/codelets/codelet_zgemm.c
index 6d1f3415940ef66e288777be3d53775c1031afff..b736b9b880ff369d3bfc00b92a020900e79e4d6c 100644
--- a/runtime/quark/codelets/codelet_zgemm.c
+++ b/runtime/quark/codelets/codelet_zgemm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgemm Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zgeqrt.c b/runtime/quark/codelets/codelet_zgeqrt.c
index 33ad21a52ac116c7aec197d68eca08cf92dbd84a..4aa554ea90b8ef64e8d550eb4244f1403ab8873b 100644
--- a/runtime/quark/codelets/codelet_zgeqrt.c
+++ b/runtime/quark/codelets/codelet_zgeqrt.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeqrt Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zgessm.c b/runtime/quark/codelets/codelet_zgessm.c
index 63b59a664ec8f384f65f594a0e3261a6c2c91206..53a6b3eb9f4746fe2f3a0d288f6710ce9d17a7bd 100644
--- a/runtime/quark/codelets/codelet_zgessm.c
+++ b/runtime/quark/codelets/codelet_zgessm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgessm Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zgessq.c b/runtime/quark/codelets/codelet_zgessq.c
index 00f0afa5444c2a93cba8eb0d480122e90fe13a47..f63b6d99a6fc597a6b97549d24860a839f6364eb 100644
--- a/runtime/quark/codelets/codelet_zgessq.c
+++ b/runtime/quark/codelets/codelet_zgessq.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgessq Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zgetrf.c b/runtime/quark/codelets/codelet_zgetrf.c
index b0e27d37a20c16a13a1b087e9d0d8eee2b28d764..86d1c324405b79290b6f7ccfedd028551c4b1bd5 100644
--- a/runtime/quark/codelets/codelet_zgetrf.c
+++ b/runtime/quark/codelets/codelet_zgetrf.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrf Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @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 9b9d29a7f021be10bc6e86801c7cc5cb5c2b0568..7a4da42d7a63e9cda85b89cb55ea6e33062bdb09 100644
--- a/runtime/quark/codelets/codelet_zgetrf_incpiv.c
+++ b/runtime/quark/codelets/codelet_zgetrf_incpiv.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrf_incpiv Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @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 c7115e7d5df13822c36c69ea86352aee56cc96fd..8dd8e65fd5cdea6892b9f21880ce693f6f0ec88d 100644
--- a/runtime/quark/codelets/codelet_zgetrf_nopiv.c
+++ b/runtime/quark/codelets/codelet_zgetrf_nopiv.c
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrf_nopiv Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Omar Zenati
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2013-02-01
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zhe2ge.c b/runtime/quark/codelets/codelet_zhe2ge.c
index df631b002c90059fc276445136e5c29f0bb6239f..fc141c5b7a0846529c59559bdc995c5f9a231b91 100644
--- a/runtime/quark/codelets/codelet_zhe2ge.c
+++ b/runtime/quark/codelets/codelet_zhe2ge.c
@@ -4,14 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zhe2ge Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2016-12-09
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zhemm.c b/runtime/quark/codelets/codelet_zhemm.c
index 50d27e8987a437dfe62eb5e784228953bcae9c6a..af368adb26d41d2d07f477374bba0fa1a836cc77 100644
--- a/runtime/quark/codelets/codelet_zhemm.c
+++ b/runtime/quark/codelets/codelet_zhemm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zhemm Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/quark/codelets/codelet_zher2k.c b/runtime/quark/codelets/codelet_zher2k.c
index e443776a24a4f17dfcf4c645776ea3bdb42571e2..c39093ddc0c00466d7122f985d918a25dc1663f9 100644
--- a/runtime/quark/codelets/codelet_zher2k.c
+++ b/runtime/quark/codelets/codelet_zher2k.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zher2k Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/quark/codelets/codelet_zherfb.c b/runtime/quark/codelets/codelet_zherfb.c
index d86fc420287368b6991311e01fa93c81958da902..3e4565b316c367ad6f36d6e51561a886a4b56be6 100644
--- a/runtime/quark/codelets/codelet_zherfb.c
+++ b/runtime/quark/codelets/codelet_zherfb.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zherfb Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zherk.c b/runtime/quark/codelets/codelet_zherk.c
index c99a799704c0b1eec6f32a757af43120bbb7d171..70254a131236f3f610d81f6bc4b61b8da2dcc11e 100644
--- a/runtime/quark/codelets/codelet_zherk.c
+++ b/runtime/quark/codelets/codelet_zherk.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zherk Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/quark/codelets/codelet_zhessq.c b/runtime/quark/codelets/codelet_zhessq.c
index 139f8fa25e15b90da2d2b89d39c034076a3f6bc0..5d797c984297b70b6bbbe570825ba76e069859f9 100644
--- a/runtime/quark/codelets/codelet_zhessq.c
+++ b/runtime/quark/codelets/codelet_zhessq.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zhessq Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/quark/codelets/codelet_zlacpy.c b/runtime/quark/codelets/codelet_zlacpy.c
index 8aa18403bf02087fb52e02508f596f7162433835..817b684529f72052efaea4b0c055ae07abab71b8 100644
--- a/runtime/quark/codelets/codelet_zlacpy.c
+++ b/runtime/quark/codelets/codelet_zlacpy.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlacpy Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zlag2c.c b/runtime/quark/codelets/codelet_zlag2c.c
index 7358e90951d87f51378b0eff66c0c2137a9b828e..23bf31b92f2230fa995e030f10b1e82a8783f3a8 100644
--- a/runtime/quark/codelets/codelet_zlag2c.c
+++ b/runtime/quark/codelets/codelet_zlag2c.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlag2c Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions mixed zc -> ds
  *
  */
diff --git a/runtime/quark/codelets/codelet_zlange.c b/runtime/quark/codelets/codelet_zlange.c
index d4d84d2e09dfc3a7a71ad57d3ce0a802cdb4d027..c1d32c4324a2b016b7d03d478c58201d60b50e5a 100644
--- a/runtime/quark/codelets/codelet_zlange.c
+++ b/runtime/quark/codelets/codelet_zlange.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlange Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zlanhe.c b/runtime/quark/codelets/codelet_zlanhe.c
index 219436a9b689bedb2637c4cab7e2f23624d8c6d0..8ff0c70d052ca78d8aaec61ff60ea4053850c5d6 100644
--- a/runtime/quark/codelets/codelet_zlanhe.c
+++ b/runtime/quark/codelets/codelet_zlanhe.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlanhe Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/quark/codelets/codelet_zlansy.c b/runtime/quark/codelets/codelet_zlansy.c
index 456946338bd624ae8d2e48ffdcde2780ee7ac363..1acef127cea59154897ff203b49ece22db649ff0 100644
--- a/runtime/quark/codelets/codelet_zlansy.c
+++ b/runtime/quark/codelets/codelet_zlansy.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlansy Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zlantr.c b/runtime/quark/codelets/codelet_zlantr.c
index 2b9907b1f79996343423ec654081797017aaec57..708f783292550191381cbb88f00581282e5c1b21 100644
--- a/runtime/quark/codelets/codelet_zlantr.c
+++ b/runtime/quark/codelets/codelet_zlantr.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlantr Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zlascal.c b/runtime/quark/codelets/codelet_zlascal.c
index 8c6e7956125c7c1254b86daa4dc3ffb521a90b80..5f73570b9640091d0a08fc643e95dbf1f5de02af 100644
--- a/runtime/quark/codelets/codelet_zlascal.c
+++ b/runtime/quark/codelets/codelet_zlascal.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlascal Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2016-11-30
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zlaset.c b/runtime/quark/codelets/codelet_zlaset.c
index ae92e8a844ef9e30b65daae3ec2a45560437143d..5b35de50f76c80b488108b629b5946a8fec49d13 100644
--- a/runtime/quark/codelets/codelet_zlaset.c
+++ b/runtime/quark/codelets/codelet_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlaset Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zlaset2.c b/runtime/quark/codelets/codelet_zlaset2.c
index 93e5565881f8469656ac3cf8c10968b6b198d31b..aa4998a40f99bfe01ad9e16763d61fe3607762a8 100644
--- a/runtime/quark/codelets/codelet_zlaset2.c
+++ b/runtime/quark/codelets/codelet_zlaset2.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlaset2 Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zlatro.c b/runtime/quark/codelets/codelet_zlatro.c
index 8875cd59dc97152cbba157f5e47b116dca08077d..220a0c6f882bfb4a0060bf405cd5d42047b9117f 100644
--- a/runtime/quark/codelets/codelet_zlatro.c
+++ b/runtime/quark/codelets/codelet_zlatro.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlatro Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Azzam Haidar
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zlauum.c b/runtime/quark/codelets/codelet_zlauum.c
index b60a9685eff30b7d09363475fd66da0807be69a0..17022ca6ad39b7e51ecf0e2546bc22bd6773e47b 100644
--- a/runtime/quark/codelets/codelet_zlauum.c
+++ b/runtime/quark/codelets/codelet_zlauum.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlauum Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zplghe.c b/runtime/quark/codelets/codelet_zplghe.c
index 7b1028c83d77539eee2a5cbde33145da22d9edae..b57d82c8a40bad4fad8e9db3153ac8832affd21e 100644
--- a/runtime/quark/codelets/codelet_zplghe.c
+++ b/runtime/quark/codelets/codelet_zplghe.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplghe Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Piotr Luszczek
  * @author Pierre Lemarinier
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/quark/codelets/codelet_zplgsy.c b/runtime/quark/codelets/codelet_zplgsy.c
index f4fff3d81b34ca4524d4680db98c893cab310e77..60eee5385aa74edecb2773eeabc8aa7e1038aa45 100644
--- a/runtime/quark/codelets/codelet_zplgsy.c
+++ b/runtime/quark/codelets/codelet_zplgsy.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplgsy Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Piotr Luszczek
  * @author Pierre Lemarinier
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zplrnt.c b/runtime/quark/codelets/codelet_zplrnt.c
index 8dc58fdebe73f067db8b9946a8996bbed6304741..455c0a8d01288ab104ca9b8f5aeea129f39c37b1 100644
--- a/runtime/quark/codelets/codelet_zplrnt.c
+++ b/runtime/quark/codelets/codelet_zplrnt.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplrnt Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Piotr Luszczek
  * @author Pierre Lemarinier
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zplssq.c b/runtime/quark/codelets/codelet_zplssq.c
index 14418c58fdf30c1c4fa35e71d892c9cceb000cde..8744b7b3ec319ce347abd8f40d101cb1a92b3e07 100644
--- a/runtime/quark/codelets/codelet_zplssq.c
+++ b/runtime/quark/codelets/codelet_zplssq.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplssq Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zpotrf.c b/runtime/quark/codelets/codelet_zpotrf.c
index b2910da29d99ec5ecddcf54ce01ba0b4a54be950..b3bb0256c30730c23c091e891d7d4de88594158e 100644
--- a/runtime/quark/codelets/codelet_zpotrf.c
+++ b/runtime/quark/codelets/codelet_zpotrf.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zpotrf Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zssssm.c b/runtime/quark/codelets/codelet_zssssm.c
index 878b17a56d17bfa78b0d832d3990ef13867dd1c0..bc5b3ae5caee9fbc235c415b92d9ea2dd8185be2 100644
--- a/runtime/quark/codelets/codelet_zssssm.c
+++ b/runtime/quark/codelets/codelet_zssssm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zssssm Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zsymm.c b/runtime/quark/codelets/codelet_zsymm.c
index 1a784fcbce69c4c5a69ee27aafe18130b1f97f7e..acb3cd4491120b222e45709ba40158e55d966138 100644
--- a/runtime/quark/codelets/codelet_zsymm.c
+++ b/runtime/quark/codelets/codelet_zsymm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsymm Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zsyr2k.c b/runtime/quark/codelets/codelet_zsyr2k.c
index 2111951b4f4af93ee92a7d7e9e1882345652ac98..66da8d9c6853843f4d89ad5efbaa8676af61133f 100644
--- a/runtime/quark/codelets/codelet_zsyr2k.c
+++ b/runtime/quark/codelets/codelet_zsyr2k.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyr2k Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zsyrk.c b/runtime/quark/codelets/codelet_zsyrk.c
index 4393ff64b20663e7178865e4ee7a680310484384..d32372f7af30f5f9dfee03c4f025891078017e1b 100644
--- a/runtime/quark/codelets/codelet_zsyrk.c
+++ b/runtime/quark/codelets/codelet_zsyrk.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyrk Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zsyssq.c b/runtime/quark/codelets/codelet_zsyssq.c
index 1c40b80b57cb3eb5d1cd687ec7e920d29db288c4..9611e2082f9fd7c971f196d3318c66edb4353a31 100644
--- a/runtime/quark/codelets/codelet_zsyssq.c
+++ b/runtime/quark/codelets/codelet_zsyssq.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyssq Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @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 34c6a0de17f874efbaf9ac5dfce50e944763af1f..cf41a06c0130af5d15f88df5a1796df115aa2e5a 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsytrf_nopiv Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
@@ -19,7 +19,7 @@
  * @author Cedric Castagnede
  * @author Florent Pruvost
  * @author Marc Sergent
- * @date 2011-10-09
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/quark/codelets/codelet_ztplqt.c b/runtime/quark/codelets/codelet_ztplqt.c
index 98b153433cd0382c262247eb2867ffd3229611a6..e151f0a9c69effb189d71aca391e9ce392a665e5 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztplqt Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2018-11-08
+ * @date 2018-01-31
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/quark/codelets/codelet_ztpmlqt.c b/runtime/quark/codelets/codelet_ztpmlqt.c
index fa435550dbb7cea349898f43b5e8fa9ec71c8ef4..d2ccd5fa18c8cb6da6598193278f0b2cbde3cd02 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztpmlqt Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2018-11-08
+ * @date 2018-01-31
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/quark/codelets/codelet_ztpmqrt.c b/runtime/quark/codelets/codelet_ztpmqrt.c
index bdf6627273065b4bdf18d93f07384628d5b113f7..ac396d88ad5247bbcac415351be9faa4daa6741d 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztpmqrt Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2018-11-08
+ * @date 2016-12-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/quark/codelets/codelet_ztpqrt.c b/runtime/quark/codelets/codelet_ztpqrt.c
index b508e548c371ce446c30dd6e40ec8ed4f63ed23c..814300de138185d20c137a34843010900d473e17 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztpqrt Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2018-11-08
+ * @date 2016-12-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/quark/codelets/codelet_ztradd.c b/runtime/quark/codelets/codelet_ztradd.c
index 8c42160bcfc46948e83417150d49eb6bd292a137..d804d95990d42441021b903291179a59261f2c90 100644
--- a/runtime/quark/codelets/codelet_ztradd.c
+++ b/runtime/quark/codelets/codelet_ztradd.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztradd Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2011-11-03
+ * @date 2015-11-03
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_ztrasm.c b/runtime/quark/codelets/codelet_ztrasm.c
index 7141901a9ecd6792e01f15d293ff7a538dee04e0..bed2262809381256aa3c9c731df359b11803120f 100644
--- a/runtime/quark/codelets/codelet_ztrasm.c
+++ b/runtime/quark/codelets/codelet_ztrasm.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrasm Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_ztrmm.c b/runtime/quark/codelets/codelet_ztrmm.c
index 975f3245acec99d216a47c647a921b08aa05354f..5697128bf89e59fc63a4f70cd364367b45e75e92 100644
--- a/runtime/quark/codelets/codelet_ztrmm.c
+++ b/runtime/quark/codelets/codelet_ztrmm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrmm Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_ztrsm.c b/runtime/quark/codelets/codelet_ztrsm.c
index 9319cc384b21f9c0db9899b113091d4fbe94d190..ce15a4ca1c890f446e5c88866e1b72859380777c 100644
--- a/runtime/quark/codelets/codelet_ztrsm.c
+++ b/runtime/quark/codelets/codelet_ztrsm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrsm Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_ztrssq.c b/runtime/quark/codelets/codelet_ztrssq.c
index 0f35454ae1ff5c39435505ce180603f0cebf39b0..92cac805f8dd2c791ccafaa1b0c88a6abb7a36fd 100644
--- a/runtime/quark/codelets/codelet_ztrssq.c
+++ b/runtime/quark/codelets/codelet_ztrssq.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrssq Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_ztrtri.c b/runtime/quark/codelets/codelet_ztrtri.c
index 16fbdbf0f3f330d22ab5ef7592b09705093a894a..edc02bc7f2ab8cbfb3d66238834b55cc0f7b54a6 100644
--- a/runtime/quark/codelets/codelet_ztrtri.c
+++ b/runtime/quark/codelets/codelet_ztrtri.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrtri Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @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 bc94ca6995de4ee23b68ecc5bd9c834ccd76f6b3..6b68cfed4e9c7134b8d0bf99730f6c5a561e9c83 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztsmlq_hetra1 Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Jakub Kurzak
  * @author Azzam Haidar
- * @date 2010-11-15
+ * @date 2016-12-09
  * @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 d01b716f0409a8cb1d5b1336ff105590055212ca..879302364314166cf8f86d2fe98b820cdd8b0aea 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztsmqr_hetra1 Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Jakub Kurzak
  * @author Azzam Haidar
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_ztstrf.c b/runtime/quark/codelets/codelet_ztstrf.c
index 1c31704e225257ce1ca589a7b5c64957a78c0462..e9671f4daa0a4652c9a4cb32cc044f7999c9d82c 100644
--- a/runtime/quark/codelets/codelet_ztstrf.c
+++ b/runtime/quark/codelets/codelet_ztstrf.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztstrf Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zunmlq.c b/runtime/quark/codelets/codelet_zunmlq.c
index af020eaec18244930eda9dd4691b7e54a29d78cb..76141454b62b0d2b38ffb5d46a301c61be1adecd 100644
--- a/runtime/quark/codelets/codelet_zunmlq.c
+++ b/runtime/quark/codelets/codelet_zunmlq.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmlq Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/codelets/codelet_zunmqr.c b/runtime/quark/codelets/codelet_zunmqr.c
index 8407d8967bb53834c3ae219cf2429f7faea41c6a..75968addd240092ec330aef0adadf301f5315ae9 100644
--- a/runtime/quark/codelets/codelet_zunmqr.c
+++ b/runtime/quark/codelets/codelet_zunmqr.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmqr Quark codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/quark/control/runtime_async.c b/runtime/quark/control/runtime_async.c
index e28314f0df04b4cc2ff1571791ee2e66076d5cf2..fcb84fd326a473a8608bb7ced138eb615cbc8d11 100644
--- a/runtime/quark/control/runtime_async.c
+++ b/runtime/quark/control/runtime_async.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon Quark asynchronous routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Jakub Kurzak
  * @author Vijay Joshi
  * @author Cedric Castagnede
- * @date 2011-10-29
+ * @date 2015-05-22
  *
  */
 #include <stdlib.h>
diff --git a/runtime/quark/control/runtime_context.c b/runtime/quark/control/runtime_context.c
index 93868c6fc1921f7f0a35c0801efbb65644bec1ef..d84ddf00d2416360e61edd2b1e0dc873eed6c2d2 100644
--- a/runtime/quark/control/runtime_context.c
+++ b/runtime/quark/control/runtime_context.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon Quark context routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Vijay Joshi
  * @author Cedric Castagnede
- * @date 2011-10-29
+ * @date 2015-05-22
  *
  */
 #include <stdlib.h>
diff --git a/runtime/quark/control/runtime_control.c b/runtime/quark/control/runtime_control.c
index 4946631083e7ac7c3bdebe8c32a4c47ca8868552..e153b908111e1964789465787d7cbccd0491c3c1 100644
--- a/runtime/quark/control/runtime_control.c
+++ b/runtime/quark/control/runtime_control.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon Quark control routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Vijay Joshi
  * @author Cedric Castagnede
- * @date 2012-09-15
+ * @date 2015-05-22
  *
  */
 #include <stdio.h>
diff --git a/runtime/quark/control/runtime_descriptor.c b/runtime/quark/control/runtime_descriptor.c
index 951f362c9d273b6e53b530bf6514a9d39ac331da..cb4d198ba479155c69e8aa7778166bfba0b51927 100644
--- a/runtime/quark/control/runtime_descriptor.c
+++ b/runtime/quark/control/runtime_descriptor.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon Quark descriptor routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Vijay Joshi
  * @author Cedric Castagnede
- * @date 2012-09-15
+ * @date 2015-05-22
  *
  */
 #include <stdlib.h>
diff --git a/runtime/quark/control/runtime_options.c b/runtime/quark/control/runtime_options.c
index c9a66a8ae03c2b11010e948e6ca8ef5f1f6d945a..816319870679e1889d1d0e3589b32284ab33aec7 100644
--- a/runtime/quark/control/runtime_options.c
+++ b/runtime/quark/control/runtime_options.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon Quark options routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Vijay Joshi
  * @author Cedric Castagnede
- * @date 2011-10-29
+ * @date 2015-05-22
  *
  */
 #include <stdio.h>
diff --git a/runtime/quark/control/runtime_profiling.c b/runtime/quark/control/runtime_profiling.c
index 44978c3faad855c7bb24663e3b2f788a47ac68d8..685a81c407f67afe798bd09884c035506448cbd6 100644
--- a/runtime/quark/control/runtime_profiling.c
+++ b/runtime/quark/control/runtime_profiling.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon Quark profiling routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Vijay Joshi
  * @author Cedric Castagnede
- * @date 2011-10-29
+ * @date 2015-05-22
  *
  */
 #include "chameleon_quark.h"
diff --git a/runtime/quark/control/runtime_zlocality.c b/runtime/quark/control/runtime_zlocality.c
index 10c61649ebf1417613221f4c53cfce14f3f920ad..b0f4bfca2f72d7eeb34c3f9496af208446180656 100644
--- a/runtime/quark/control/runtime_zlocality.c
+++ b/runtime/quark/control/runtime_zlocality.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 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 0.9.2
  * @author Vijay Joshi
- * @date 2011-10-29
+ * @date 2015-05-22
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/quark/control/runtime_zprofiling.c b/runtime/quark/control/runtime_zprofiling.c
index 7d2e176a9b47724fa5f09a97faef60b6c1b3d931..9e9ccea93ffba578ad803689c3aed794382fdb7e 100644
--- a/runtime/quark/control/runtime_zprofiling.c
+++ b/runtime/quark/control/runtime_zprofiling.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 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 0.9.2
  * @author Mathieu Faverge
  * @author Cedric Augonnet
  * @author Cedric Castagnede
- * @date 2011-06-01
+ * @date 2015-05-22
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/quark/include/chameleon_quark.h b/runtime/quark/include/chameleon_quark.h
index fac669ae05d427e14a8a09a4717a24ebc376e8b5..4cc04939c869f35d4b74ae03e6d88c39f01fa07b 100644
--- a/runtime/quark/include/chameleon_quark.h
+++ b/runtime/quark/include/chameleon_quark.h
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon Quark runtime main header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2011-06-01
+ * @date 2017-07-31
  *
  */
 #ifndef _chameleon_quark_h_
diff --git a/runtime/quark/include/core_blas_dag.h b/runtime/quark/include/core_blas_dag.h
index 649330aa1871b6e60cd322ba34f49ba9d4839af8..f5ba7073daff43ba230d8b071aeb4a4f0d0c4240 100644
--- a/runtime/quark/include/core_blas_dag.h
+++ b/runtime/quark/include/core_blas_dag.h
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon Quark DAG generation header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2018-11-08
+ * @date 2014-11-16
  *
  */
 #ifndef _core_blas_dag_h_
diff --git a/runtime/starpu/CMakeLists.txt b/runtime/starpu/CMakeLists.txt
index d25a9839bc4de2c83bbef8261234227eeb4fbd98..ff990638938b710275c6952057b45832159b71b1 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
 #  @author Florent Pruvost
-#  @date 2012-07-13
+#  @date 2014-11-16
 #
 ###
 cmake_minimum_required(VERSION 2.8)
diff --git a/runtime/starpu/codelets/codelet_map.c b/runtime/starpu/codelets/codelet_map.c
index b3d2856e0b2740583dd65a5681073691195afb55..3d1c3e8e2bfab789e6cf685a41b6cf37e349038f 100644
--- a/runtime/starpu/codelets/codelet_map.c
+++ b/runtime/starpu/codelets/codelet_map.c
@@ -2,14 +2,14 @@
  *
  * @file starpu/codelet_map.c
  *
- * @copyright 2018-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2018-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon map StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @date 2018-09-24
  *
diff --git a/runtime/starpu/codelets/codelet_zasum.c b/runtime/starpu/codelets/codelet_zasum.c
index 6bfaf2c136f960c7cb7286f3eb81cae9c40fd263..1cbd3e6b2038b02ec0853b60acb9686b948bf893 100644
--- a/runtime/starpu/codelets/codelet_zasum.c
+++ b/runtime/starpu/codelets/codelet_zasum.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zasum StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zaxpy.c b/runtime/starpu/codelets/codelet_zaxpy.c
index 5280eae12a4c72871b2db533b344689a0b8a100f..38368ffff4a358a11a762ad46b597c9c790f5b5d 100644
--- a/runtime/starpu/codelets/codelet_zaxpy.c
+++ b/runtime/starpu/codelets/codelet_zaxpy.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zaxpy StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Florent Pruvost
- * @date 2014-07-18
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zbuild.c b/runtime/starpu/codelets/codelet_zbuild.c
index a2610a9bc8aa96b73a370c7703a2eefad17b90a9..d10574c7ce96c3695b8f1c8291f2b07152f3ff05 100644
--- a/runtime/starpu/codelets/codelet_zbuild.c
+++ b/runtime/starpu/codelets/codelet_zbuild.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zbuild StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Piotr Luszczek
  * @author Pierre Lemarinier
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
  * @author Guillaume Sylvand
- * @date 2016-09-05
+ * @date 2016-09-08
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zcallback.c b/runtime/starpu/codelets/codelet_zcallback.c
index 745b122e3f11a4c9d92a126369fb736d9b8bb4fe..0c31aa653b51f61ac2f61f1860d68bc00917f37a 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zcallback StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  *  @author Mathieu Faverge
  *  @author Cedric Augonnet
  *  @author Florent Pruvost
- *  @date 2018-11-08
+ *  @date 2014-11-16
  *  @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zgeadd.c b/runtime/starpu/codelets/codelet_zgeadd.c
index eb0adebe51e8fe29593cd50d8d59437a59f37778..d4105c89d00796501246fdd971d7abfb0a0b2c15 100644
--- a/runtime/starpu/codelets/codelet_zgeadd.c
+++ b/runtime/starpu/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeadd StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zgelqt.c b/runtime/starpu/codelets/codelet_zgelqt.c
index abdf1954c9f9a5d587e5baf8360915fc160dbe58..2bdf26fe7b19280cd9925eed5b6a02719c57ffd2 100644
--- a/runtime/starpu/codelets/codelet_zgelqt.c
+++ b/runtime/starpu/codelets/codelet_zgelqt.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgelqt StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zgemm.c b/runtime/starpu/codelets/codelet_zgemm.c
index fed1350a71df6d7c1b0881dd92639b88e4363356..3ac4d9ee0bc5fd015626f673fb9f4c63a14a2caa 100644
--- a/runtime/starpu/codelets/codelet_zgemm.c
+++ b/runtime/starpu/codelets/codelet_zgemm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgemm StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zgeqrt.c b/runtime/starpu/codelets/codelet_zgeqrt.c
index 1ff57d18546e4bec5670e25dcd00e6a32368ba06..ff78c7ec5761747cc416e3b160acca4b3ca71ebc 100644
--- a/runtime/starpu/codelets/codelet_zgeqrt.c
+++ b/runtime/starpu/codelets/codelet_zgeqrt.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeqrt StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zgessm.c b/runtime/starpu/codelets/codelet_zgessm.c
index 72736b064f50833b271001bec25499d6636cc1fd..e4278006bf08b2f076576df2a5570892bae9e30d 100644
--- a/runtime/starpu/codelets/codelet_zgessm.c
+++ b/runtime/starpu/codelets/codelet_zgessm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgessm StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zgessq.c b/runtime/starpu/codelets/codelet_zgessq.c
index e22f803bc469664416e80c8cd3dd0ab7f579652b..3c37cb1c6858ab4af43475fd19e17f199d2cea65 100644
--- a/runtime/starpu/codelets/codelet_zgessq.c
+++ b/runtime/starpu/codelets/codelet_zgessq.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgessq StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zgetrf.c b/runtime/starpu/codelets/codelet_zgetrf.c
index 977e8c2c5bd10b8d87116559ec2717a063321b74..6711c4de7feb8e6e0cc8a4c328811bd83100737d 100644
--- a/runtime/starpu/codelets/codelet_zgetrf.c
+++ b/runtime/starpu/codelets/codelet_zgetrf.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrf StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @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 66a5201ca6bbc77567500ac5f5d987048e92aa13..5e033500f213eb2c3dd653ed65928eee05ba221d 100644
--- a/runtime/starpu/codelets/codelet_zgetrf_incpiv.c
+++ b/runtime/starpu/codelets/codelet_zgetrf_incpiv.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrf_incpiv StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @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 3efbe362e5ffeb6cd86998c26ac7528809379c11..4b108067c9ff00a95de6ff05fc0d5249ef233c51 100644
--- a/runtime/starpu/codelets/codelet_zgetrf_nopiv.c
+++ b/runtime/starpu/codelets/codelet_zgetrf_nopiv.c
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgetrf_nopiv StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Omar Zenati
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2013-02-01
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zhe2ge.c b/runtime/starpu/codelets/codelet_zhe2ge.c
index 11ce2183419c09dd3d9e89ee53d9801d1206d986..c1d97a6681b648d269291b1327abc088d0b0689a 100644
--- a/runtime/starpu/codelets/codelet_zhe2ge.c
+++ b/runtime/starpu/codelets/codelet_zhe2ge.c
@@ -4,14 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zhe2ge StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2016-12-09
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zhemm.c b/runtime/starpu/codelets/codelet_zhemm.c
index 4f769835253ae243d2c48eb0f88dccb2f9c26008..3dbcae1b3f21825805d002efce8d73b1bfd25abd 100644
--- a/runtime/starpu/codelets/codelet_zhemm.c
+++ b/runtime/starpu/codelets/codelet_zhemm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zhemm StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zher2k.c b/runtime/starpu/codelets/codelet_zher2k.c
index 24553aba498fb368fc9cdd238a79af32e87bb670..2cf491f625f86ecfdac2d699811c428983adbf81 100644
--- a/runtime/starpu/codelets/codelet_zher2k.c
+++ b/runtime/starpu/codelets/codelet_zher2k.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zher2k StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zherfb.c b/runtime/starpu/codelets/codelet_zherfb.c
index d833149236288da24c4dd978d4ec3bf199f39b72..8974ad76539a490280b56d4e8a3b6e3845c5d840 100644
--- a/runtime/starpu/codelets/codelet_zherfb.c
+++ b/runtime/starpu/codelets/codelet_zherfb.c
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zherfb StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zherk.c b/runtime/starpu/codelets/codelet_zherk.c
index d8709bac154d2fc755b8328ab054e273d0db26ca..059705fd2204325ea5d00266b8a2b021b2309fc9 100644
--- a/runtime/starpu/codelets/codelet_zherk.c
+++ b/runtime/starpu/codelets/codelet_zherk.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zherk StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zhessq.c b/runtime/starpu/codelets/codelet_zhessq.c
index c2ebde6af7fcbf0a94f1da2fac293318fb25204f..724f5e6fba78f76a62541b8e1a0e40f207716fe8 100644
--- a/runtime/starpu/codelets/codelet_zhessq.c
+++ b/runtime/starpu/codelets/codelet_zhessq.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zhessq StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zlacpy.c b/runtime/starpu/codelets/codelet_zlacpy.c
index 9c53e6e4efd3a0981a970b6307d6daafcf91b4f8..9893f4f290cfd07d456005e46f424c6a209b5bd7 100644
--- a/runtime/starpu/codelets/codelet_zlacpy.c
+++ b/runtime/starpu/codelets/codelet_zlacpy.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlacpy StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zlag2c.c b/runtime/starpu/codelets/codelet_zlag2c.c
index 46eea274085fcd6e422dba232af80961419e8cd3..79a12d480a51a0f53918367f0f2d0873a13f388f 100644
--- a/runtime/starpu/codelets/codelet_zlag2c.c
+++ b/runtime/starpu/codelets/codelet_zlag2c.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlag2c StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions mixed zc -> ds
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zlange.c b/runtime/starpu/codelets/codelet_zlange.c
index 4b389bbb2821528c6ea6379b389c90db6bc1e05b..7d6297db67933f75d850900e694168d6d48cfec1 100644
--- a/runtime/starpu/codelets/codelet_zlange.c
+++ b/runtime/starpu/codelets/codelet_zlange.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlange StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zlanhe.c b/runtime/starpu/codelets/codelet_zlanhe.c
index 4fc51d3d0c0de634e66a0a190d4b64d5cd7963e0..6ad883725578571a439537b14c7c13ca755ba9f9 100644
--- a/runtime/starpu/codelets/codelet_zlanhe.c
+++ b/runtime/starpu/codelets/codelet_zlanhe.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlanhe StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zlansy.c b/runtime/starpu/codelets/codelet_zlansy.c
index fdea83309d17af28ab3dd368a87d3cd48bbdf3a0..cba12c33f9ecbb44da1dcc1fdb63520099dac552 100644
--- a/runtime/starpu/codelets/codelet_zlansy.c
+++ b/runtime/starpu/codelets/codelet_zlansy.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlansy StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zlantr.c b/runtime/starpu/codelets/codelet_zlantr.c
index 078b81d6bcc73de624e4922bef9853ddb4bed5a7..f766962978b7003c264bea66aaf20c4bb8db8e2a 100644
--- a/runtime/starpu/codelets/codelet_zlantr.c
+++ b/runtime/starpu/codelets/codelet_zlantr.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlantr StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zlascal.c b/runtime/starpu/codelets/codelet_zlascal.c
index f625d883067e3aeb99fda6989bfbd3390dc064cb..19b761154f8c8055d4c610d5cf345be7eb1ebe10 100644
--- a/runtime/starpu/codelets/codelet_zlascal.c
+++ b/runtime/starpu/codelets/codelet_zlascal.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlascal StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Dalal Sukkari
- * @date 2010-11-15
+ * @date 2016-11-30
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zlaset.c b/runtime/starpu/codelets/codelet_zlaset.c
index 9108167de991387c9ac6d0fc1c6d409ede9b4ba5..2ad9dc2e95f0727791087ab0e13c55a28009387e 100644
--- a/runtime/starpu/codelets/codelet_zlaset.c
+++ b/runtime/starpu/codelets/codelet_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlaset StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zlaset2.c b/runtime/starpu/codelets/codelet_zlaset2.c
index 0e67ee39d2fdbc81cbd43fbadf65d11444d5401f..2cba6a54722c8e435c20d16d4a50b6657fa22177 100644
--- a/runtime/starpu/codelets/codelet_zlaset2.c
+++ b/runtime/starpu/codelets/codelet_zlaset2.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlaset2 StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zlatro.c b/runtime/starpu/codelets/codelet_zlatro.c
index 063b7aea8cd4d32783e69f81a079eea7f2381ff3..5c635e08f52412b7e14ceab916f18288e91906fe 100644
--- a/runtime/starpu/codelets/codelet_zlatro.c
+++ b/runtime/starpu/codelets/codelet_zlatro.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlatro StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zlauum.c b/runtime/starpu/codelets/codelet_zlauum.c
index 2344c5171b897ddf8da452b9f7c047fa1b6fc44b..361be4a06f308f3a02451406f117d88dd941d40e 100644
--- a/runtime/starpu/codelets/codelet_zlauum.c
+++ b/runtime/starpu/codelets/codelet_zlauum.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlauum StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zplghe.c b/runtime/starpu/codelets/codelet_zplghe.c
index 345d18a24e39f606431c9e2d71783982e2117905..39cf745658c2ed12eea6df5b58bafac121002d36 100644
--- a/runtime/starpu/codelets/codelet_zplghe.c
+++ b/runtime/starpu/codelets/codelet_zplghe.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplghe StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Piotr Luszczek
  * @author Pierre Lemarinier
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zplgsy.c b/runtime/starpu/codelets/codelet_zplgsy.c
index 9141ecd0fce9abd5b18c0d841eb64bec4da10afa..216e61f39bae2e526ce7e070ed4d16cd5f47d4ee 100644
--- a/runtime/starpu/codelets/codelet_zplgsy.c
+++ b/runtime/starpu/codelets/codelet_zplgsy.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplgsy StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Piotr Luszczek
  * @author Pierre Lemarinier
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zplrnt.c b/runtime/starpu/codelets/codelet_zplrnt.c
index d824485dac38087d5bf3189bdf24a49bbd6360b0..f3b984c6b82b7e92fc3cdb7d99bb065d068c1561 100644
--- a/runtime/starpu/codelets/codelet_zplrnt.c
+++ b/runtime/starpu/codelets/codelet_zplrnt.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplrnt StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Piotr Luszczek
  * @author Pierre Lemarinier
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zplssq.c b/runtime/starpu/codelets/codelet_zplssq.c
index 2fe5d2a7fdd0ea9d671a5a785d6a25141714d510..683aedf2f070bccb037af1139abdd9d3c24ab15c 100644
--- a/runtime/starpu/codelets/codelet_zplssq.c
+++ b/runtime/starpu/codelets/codelet_zplssq.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zplssq StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zpotrf.c b/runtime/starpu/codelets/codelet_zpotrf.c
index bbfe817742d59742d2945aeb77ca71b0d399ad4f..9de8abdd589fab16a31e65c4244181718a6820ba 100644
--- a/runtime/starpu/codelets/codelet_zpotrf.c
+++ b/runtime/starpu/codelets/codelet_zpotrf.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zpotrf StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zssssm.c b/runtime/starpu/codelets/codelet_zssssm.c
index ecae613ee3f5b83fb78c25cf5ac9282609c3429b..33f7a5eca696a58bd63251fbd14f36334760a9f0 100644
--- a/runtime/starpu/codelets/codelet_zssssm.c
+++ b/runtime/starpu/codelets/codelet_zssssm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zssssm StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zsymm.c b/runtime/starpu/codelets/codelet_zsymm.c
index 49d3af5d9700e90f9b01056514195bf276cd3450..88d161a263203507f9b2d424e71cac82c0606071 100644
--- a/runtime/starpu/codelets/codelet_zsymm.c
+++ b/runtime/starpu/codelets/codelet_zsymm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsymm StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zsyr2k.c b/runtime/starpu/codelets/codelet_zsyr2k.c
index 27b63010a7daea7d8632cc835a7135ff6876e542..26e135bf777cd05e9f0485eccdc0b9a35e9a4ca8 100644
--- a/runtime/starpu/codelets/codelet_zsyr2k.c
+++ b/runtime/starpu/codelets/codelet_zsyr2k.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyr2k StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zsyrk.c b/runtime/starpu/codelets/codelet_zsyrk.c
index e089904530812ab76b4828b0123021b1e8f09131..3d336854676c56369f8e881a2b2413ad4a738601 100644
--- a/runtime/starpu/codelets/codelet_zsyrk.c
+++ b/runtime/starpu/codelets/codelet_zsyrk.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyrk StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zsyssq.c b/runtime/starpu/codelets/codelet_zsyssq.c
index 3f07e618d18c5ca86ddaa65cce78bc10ca0f1227..543b6e1b6b5ef298c47f9dee64c1481596df35a5 100644
--- a/runtime/starpu/codelets/codelet_zsyssq.c
+++ b/runtime/starpu/codelets/codelet_zsyssq.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyssq StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @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 06c4775e74f53dc4f288fa31b85e3993be9839da..1200f2f77f5733a7b3abae10cde62436d91ecaa7 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsytrf_nopiv StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
@@ -19,7 +19,7 @@
  * @author Cedric Castagnede
  * @author Florent Pruvost
  * @author Marc Sergent
- * @date 2011-10-09
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/runtime/starpu/codelets/codelet_ztplqt.c b/runtime/starpu/codelets/codelet_ztplqt.c
index 8132a27dde9d032918c933b45da63493ae72568e..e15fde66405e838e6b11569f3d28e4627c616610 100644
--- a/runtime/starpu/codelets/codelet_ztplqt.c
+++ b/runtime/starpu/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztplqt StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2016-12-15
+ * @date 2018-01-31
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/starpu/codelets/codelet_ztpmlqt.c b/runtime/starpu/codelets/codelet_ztpmlqt.c
index 54a24a070c666a25b366ad5af07bd101bc297390..025c60f0c841f7975756d0b6a542f1b07527a6ed 100644
--- a/runtime/starpu/codelets/codelet_ztpmlqt.c
+++ b/runtime/starpu/codelets/codelet_ztpmlqt.c
@@ -4,14 +4,14 @@
  *
  * @copyright 2009-2016 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  * @brief Chameleon ztpmlqt StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2018-11-07
+ * @date 2018-01-31
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/starpu/codelets/codelet_ztpmqrt.c b/runtime/starpu/codelets/codelet_ztpmqrt.c
index c94a33b43b0b4ed4d983b0d36384f962f1cbb413..b149751e669b7bbcb20b0ac67c7f841e75f08ebd 100644
--- a/runtime/starpu/codelets/codelet_ztpmqrt.c
+++ b/runtime/starpu/codelets/codelet_ztpmqrt.c
@@ -4,14 +4,14 @@
  *
  * @copyright 2009-2016 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  * @brief Chameleon ztpmqrt StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2018-11-07
+ * @date 2016-12-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/starpu/codelets/codelet_ztpqrt.c b/runtime/starpu/codelets/codelet_ztpqrt.c
index 143d613eb360ff65cb1ec52489c6791a2ed23cf9..dbe95343f69b69fff712778012297dae693774f8 100644
--- a/runtime/starpu/codelets/codelet_ztpqrt.c
+++ b/runtime/starpu/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztpqrt StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
- * @date 2016-12-15
+ * @date 2016-12-16
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/starpu/codelets/codelet_ztradd.c b/runtime/starpu/codelets/codelet_ztradd.c
index 57fa58e178e0771e45c2788c270a442dff96bb53..8204416f54df65b1e8360494b195d608e8a62beb 100644
--- a/runtime/starpu/codelets/codelet_ztradd.c
+++ b/runtime/starpu/codelets/codelet_ztradd.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztradd StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2011-11-03
+ * @date 2015-11-03
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_ztrasm.c b/runtime/starpu/codelets/codelet_ztrasm.c
index 1ca5a1a6a0ebf413c4bf8d5a77cc7d028592e6a6..d2528c34991cf31e6a8f03841f33fc54e255d2fd 100644
--- a/runtime/starpu/codelets/codelet_ztrasm.c
+++ b/runtime/starpu/codelets/codelet_ztrasm.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrasm StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_ztrmm.c b/runtime/starpu/codelets/codelet_ztrmm.c
index b9f553b645f2c250f717ec150d52f61cdea5b59d..32fb27c694039899e7213766fa664d6c0c1db14e 100644
--- a/runtime/starpu/codelets/codelet_ztrmm.c
+++ b/runtime/starpu/codelets/codelet_ztrmm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrmm StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_ztrsm.c b/runtime/starpu/codelets/codelet_ztrsm.c
index 83310ab1bbffd079e5fa8932d859fa48a1be9fe2..03c5541102c9586be714cf58363b433c2b6b9c5d 100644
--- a/runtime/starpu/codelets/codelet_ztrsm.c
+++ b/runtime/starpu/codelets/codelet_ztrsm.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrsm StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_ztrssq.c b/runtime/starpu/codelets/codelet_ztrssq.c
index e7d0de9985f22b19bfb12561b28ce00935067296..110ba50019a183ee1a1f8ef6f08708cf782ce9b9 100644
--- a/runtime/starpu/codelets/codelet_ztrssq.c
+++ b/runtime/starpu/codelets/codelet_ztrssq.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrssq StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_ztrtri.c b/runtime/starpu/codelets/codelet_ztrtri.c
index 804d21b0204d0b0f2700ec59c7372a4e7a355593..1106e602f6f7fa3ee66b27e41d0e3579ede720ff 100644
--- a/runtime/starpu/codelets/codelet_ztrtri.c
+++ b/runtime/starpu/codelets/codelet_ztrtri.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrtri StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Julien Langou
  * @author Henricus Bouwmeester
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @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 4e82f101c56bdf38e67e5eaf86ac242873f5bae7..b5cad6b05299feba6d9ad38eab0f15c41f4fbfd2 100644
--- a/runtime/starpu/codelets/codelet_ztsmlq_hetra1.c
+++ b/runtime/starpu/codelets/codelet_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztsmlq_hetra1 StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Azzam Haidar
- * @date 2018-11-07
+ * @date 2016-12-09
  * @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 66fa69daba82900221e05c6161ff5cc78ebb1c0f..0320559bdcccdb670b9148b49acd338ddcd2a191 100644
--- a/runtime/starpu/codelets/codelet_ztsmqr_hetra1.c
+++ b/runtime/starpu/codelets/codelet_ztsmqr_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztsmqr_hetra1 StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Azzam Haidar
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_ztstrf.c b/runtime/starpu/codelets/codelet_ztstrf.c
index 7e1dfd92a31d58f5c03f57759f484b8b14aabd12..4d740fc8689fc25cff1955ffad9ce7438bc0501e 100644
--- a/runtime/starpu/codelets/codelet_ztstrf.c
+++ b/runtime/starpu/codelets/codelet_ztstrf.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztstrf StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zunmlq.c b/runtime/starpu/codelets/codelet_zunmlq.c
index 046b4e568756e9cc36e2249bc6d485a8d9843e28..bab65bfcc38c2b2a746795c1f3557c4fcdf09cf9 100644
--- a/runtime/starpu/codelets/codelet_zunmlq.c
+++ b/runtime/starpu/codelets/codelet_zunmlq.c
@@ -4,23 +4,23 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmlq StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/codelets/codelet_zunmqr.c b/runtime/starpu/codelets/codelet_zunmqr.c
index afa04149b405938eb777ef409fb801a907ebf9f0..ed8cbccd519f89787f064f3eab4644696dda67cd 100644
--- a/runtime/starpu/codelets/codelet_zunmqr.c
+++ b/runtime/starpu/codelets/codelet_zunmqr.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zunmqr StarPU codelet
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Jakub Kurzak
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/control/runtime_async.c b/runtime/starpu/control/runtime_async.c
index 231f2efb6b066847cf8e1ee796ad6fabc0ce6944..91ed1f32082916710e5f1821e0b34ff9fb227d42 100644
--- a/runtime/starpu/control/runtime_async.c
+++ b/runtime/starpu/control/runtime_async.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon StarPU asynchronous routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2015-05-22
  *
  */
 #include <stdlib.h>
diff --git a/runtime/starpu/control/runtime_context.c b/runtime/starpu/control/runtime_context.c
index 2bf597b24c4d2f2a1a8f5003f6a1a5e6761c5de5..69a29fe31a1d1eba37d6e43be438b201c6e3d651 100644
--- a/runtime/starpu/control/runtime_context.c
+++ b/runtime/starpu/control/runtime_context.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon StarPU context routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Cedric Augonnet
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2015-05-22
  *
  */
 #include <stdlib.h>
diff --git a/runtime/starpu/control/runtime_control.c b/runtime/starpu/control/runtime_control.c
index 96409c831b583bc1a513d691ef6538c32671f117..52c790e727c7d9d3497ce7163c3a872f3199943e 100644
--- a/runtime/starpu/control/runtime_control.c
+++ b/runtime/starpu/control/runtime_control.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon StarPU control routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Cedric Augonnet
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2015-05-22
  *
  */
 #include <stdio.h>
diff --git a/runtime/starpu/control/runtime_descriptor.c b/runtime/starpu/control/runtime_descriptor.c
index c8ffd2e6b2cf32005f7838c6d4bee3e6e72d526b..df527bbf58a740e5bd9548ee803a535d31cbaa1d 100644
--- a/runtime/starpu/control/runtime_descriptor.c
+++ b/runtime/starpu/control/runtime_descriptor.c
@@ -11,11 +11,11 @@
  *
  * @brief Chameleon StarPU descriptor routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Cedric Augonnet
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2015-05-22
  *
  */
 #include <stdlib.h>
diff --git a/runtime/starpu/control/runtime_options.c b/runtime/starpu/control/runtime_options.c
index 8c833bd181864ea62e39f471003dd916aced9e09..221c07e1ddd7bc592d3ac30d09e82663a390d61b 100644
--- a/runtime/starpu/control/runtime_options.c
+++ b/runtime/starpu/control/runtime_options.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon StarPU options routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Cedric Augonnet
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2015-05-22
  *
  */
 #include <stdio.h>
diff --git a/runtime/starpu/control/runtime_profiling.c b/runtime/starpu/control/runtime_profiling.c
index 7887e85c5fcf3c70072911e710ced237052cb9d6..acba26abf071937a0d216ca1c9f3ccde22301955 100644
--- a/runtime/starpu/control/runtime_profiling.c
+++ b/runtime/starpu/control/runtime_profiling.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon StarPU profiling routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Cedric Augonnet
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2015-05-22
  *
  */
 #include <math.h>
diff --git a/runtime/starpu/control/runtime_workspace.c b/runtime/starpu/control/runtime_workspace.c
index 158c141174a4290cc37cb2e8619a52242e7d3c9e..43028b5ae69f4476a7c18874455fb645299db29e 100644
--- a/runtime/starpu/control/runtime_workspace.c
+++ b/runtime/starpu/control/runtime_workspace.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon StarPU workspaces routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Cedric Augonnet
  * @author Mathieu Faverge
- * @date 2011-06-01
+ * @date 2015-05-22
  *
  */
 #include "chameleon_starpu.h"
diff --git a/runtime/starpu/control/runtime_zlocality.c b/runtime/starpu/control/runtime_zlocality.c
index 025e300c62775d79287593f316fb5671dea40345..76801f2831b2850567968b1aad88fa0c313a6920 100644
--- a/runtime/starpu/control/runtime_zlocality.c
+++ b/runtime/starpu/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 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 0.9.2
  * @author Cedric Augonnet
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2018-11-08
+ * @date 2015-05-22
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/starpu/control/runtime_zprofiling.c b/runtime/starpu/control/runtime_zprofiling.c
index 848746b7f5e4a9c64f060d06393983382907e0f1..be99da3fceee4d405e86f0fc1a0ffe9f28764d55 100644
--- a/runtime/starpu/control/runtime_zprofiling.c
+++ b/runtime/starpu/control/runtime_zprofiling.c
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 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 0.9.2
  * @author Cedric Augonnet
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2018-11-08
+ * @date 2015-05-22
  * @precisions normal z -> s d c
  *
  */
diff --git a/runtime/starpu/include/chameleon_starpu.h.in b/runtime/starpu/include/chameleon_starpu.h.in
index a9e781d9dd88c9d1ea10b5dd98f077cf9c9d6d20..1a07cc8021fe0b7bfebfc38f665eaf23b4ce4ecf 100644
--- a/runtime/starpu/include/chameleon_starpu.h.in
+++ b/runtime/starpu/include/chameleon_starpu.h.in
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon StarPU runtime header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Cedric Castagnede
  * @author Florent Pruvost
- * @date 2011-06-01
+ * @date 2017-07-31
  *
  */
 #ifndef _chameleon_starpu_h_
diff --git a/runtime/starpu/include/runtime_codelet_profile.h b/runtime/starpu/include/runtime_codelet_profile.h
index f918a473a4af060ebcaf703f33a6d39a6ac526f4..bd440c46c3945df60ba40c5dfa2d508f6604e1ea 100644
--- a/runtime/starpu/include/runtime_codelet_profile.h
+++ b/runtime/starpu/include/runtime_codelet_profile.h
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon StarPU codelet profiling header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Cedric Augonnet
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2011-06-01
+ * @date 2015-05-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 b97e06ba890fc9806131e4446a6e2dfd8268204d..d9c6e915e31350c6ea37a78695c550478aa9a252 100644
--- a/runtime/starpu/include/runtime_codelet_z.h
+++ b/runtime/starpu/include/runtime_codelet_z.h
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon StarPU CHAMELEON_Complex64_t codelets header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Cedric Augonnet
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2018-11-08
+ * @date 2015-05-22
  * @precisions normal z -> c d s
  *
  */
diff --git a/runtime/starpu/include/runtime_codelets.h b/runtime/starpu/include/runtime_codelets.h
index 5971d58cd5a621791d969febc305fb12cd6af5a9..a6872444962561263d35b8941f3f5423e6bb97e8 100644
--- a/runtime/starpu/include/runtime_codelets.h
+++ b/runtime/starpu/include/runtime_codelets.h
@@ -4,18 +4,18 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon StarPU codelets main header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Cedric Augonnet
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2011-06-01
+ * @date 2015-05-22
  *
  */
 #ifndef _runtime_codelets_h_
diff --git a/runtime/starpu/include/runtime_profiling.h b/runtime/starpu/include/runtime_profiling.h
index ead440fc22e6dcb20cde339782e2aee66a37982f..c6bdc7a30959323cdc2f5aadcc58aabee864e32d 100644
--- a/runtime/starpu/include/runtime_profiling.h
+++ b/runtime/starpu/include/runtime_profiling.h
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 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 0.9.2
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2011-06-01
+ * @date 2015-05-22
  *
  */
 #ifndef _runtime_profiling_h_
diff --git a/runtime/starpu/include/runtime_workspace.h b/runtime/starpu/include/runtime_workspace.h
index 1bd5ce0919875685d69dcdb03cab3eea9ec246ec..548d41505eafcb8b3cf3a18d16b618b2e5dc1c7a 100644
--- a/runtime/starpu/include/runtime_workspace.h
+++ b/runtime/starpu/include/runtime_workspace.h
@@ -4,16 +4,16 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon StarPU workspace header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Cedric Augonnet
- * @date 2011-06-01
+ * @date 2015-05-22
  *
  */
 #ifndef _runtime_workspace_h_
diff --git a/simucore/CMakeLists.txt b/simucore/CMakeLists.txt
index 6f1cd7311490a3850c464dacdf53adea4d92062b..103fb86a68d7c5155623e2085d2a0afb2924de9a 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
 #                      Univ. Bordeaux. All rights reserved.
 #
 ###
@@ -17,8 +17,8 @@
 #     Univ. of California Berkeley,
 #     Univ. of Colorado Denver.
 #
-#  @version 1.0.0
-#  @date 2014-10-02
+#  @version 0.9.2
+#  @date 2014-11-16
 #
 ###
 
diff --git a/testing/CMakeLists.txt b/testing/CMakeLists.txt
index f04b0eff6cf7771070e36fdd66a04d42b8dae2d7..40b853364f44b0f3b1e8ba56c4024bfffe291714 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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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.0.0
+# @version 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
-#  @date 2012-07-13
+#  @date 2014-11-16
 #
 ###
 if (CHAMELEON_SIMULATION)
diff --git a/testing/lin/CMakeLists.txt b/testing/lin/CMakeLists.txt
index d8dd82adbe9bb43d7247d39ec97ec8e30cc94d8e..dcce2cdda87aa309ac0d9dc803e26cd54ab433e5 100644
--- a/testing/lin/CMakeLists.txt
+++ b/testing/lin/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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.0.0
+# @version 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
diff --git a/testing/testing_zauxiliary.c b/testing/testing_zauxiliary.c
index 6ebe3771565b4227002a8cd0fa6778e2c52bd14b..a880d6e7152042fd1d07be5f361befe7b99d4f71 100644
--- a/testing/testing_zauxiliary.c
+++ b/testing/testing_zauxiliary.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon CHAMELEON_Complex64_t auxiliary testings routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Cédric Castagnède
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_zauxiliary.h b/testing/testing_zauxiliary.h
index a6b14d3a1ec1fc139e2a195adc48a29783394457..30b4bc004f989dfb5441be8483bc18e88d64264a 100644
--- a/testing/testing_zauxiliary.h
+++ b/testing/testing_zauxiliary.h
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon CHAMELEON_Complex64_t auxiliary testings header
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Cédric Castagnède
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_zgeadd.c b/testing/testing_zgeadd.c
index 81f4fe0e87bb8bf0003f44d478304850ec017439..47fb94f94ea0665969ee17e19701ebc4a276d182 100644
--- a/testing/testing_zgeadd.c
+++ b/testing/testing_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeadd testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2015-11-03
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_zgels.c b/testing/testing_zgels.c
index 6316ab1f5236c2367ea4613fb5251834ea7cbde9..61c6bf31dc53ff7e1df9c1d3fc052214a63bc64b 100644
--- a/testing/testing_zgels.c
+++ b/testing/testing_zgels.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgels testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Bilel Hadri
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_zgels_hqr.c b/testing/testing_zgels_hqr.c
index 91b6d78d24e48a8c050218e56f0ed0def870d0db..5baf40951c2704cbb1b9e302b3b2750af8c6635f 100644
--- a/testing/testing_zgels_hqr.c
+++ b/testing/testing_zgels_hqr.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgels_hqr testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Boucherie Raphael
- * @date 2017-05-17
+ * @date 2017-05-22
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_zgels_systolic.c b/testing/testing_zgels_systolic.c
index 7862ee0fd1ae36dcb8044c57ddd0cebb439e2fd0..329f5bc203c49618cf33fc3b108c067ddfd28385 100644
--- a/testing/testing_zgels_systolic.c
+++ b/testing/testing_zgels_systolic.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgels_systolic testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Boucherie Raphael
- * @date 2017-05-17
+ * @date 2017-05-22
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_zgemm.c b/testing/testing_zgemm.c
index 6a9be91dadf612473fbaf4bf3b137a13e91aae2c..7244302ce95ec536e739cee892e370e49c4054bb 100644
--- a/testing/testing_zgemm.c
+++ b/testing/testing_zgemm.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgemm testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_zgeqrf_qdwh.c b/testing/testing_zgeqrf_qdwh.c
index 7e2330490603956fa943d5fb64b8a39e677dbcd1..f6b93510f89b4a967e23d5e6c6e32a872e8d6fcb 100644
--- a/testing/testing_zgeqrf_qdwh.c
+++ b/testing/testing_zgeqrf_qdwh.c
@@ -4,22 +4,22 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgeqrf_qdwh testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Bilel Hadri
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2017-01-12
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_zgesv_incpiv.c b/testing/testing_zgesv_incpiv.c
index d382a505375996552256dc6da204a91fb4c43a47..fe8fd06dac96500258c1b5094a5697100f9dfb6f 100644
--- a/testing/testing_zgesv_incpiv.c
+++ b/testing/testing_zgesv_incpiv.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgesv_incpiv testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Bilel Hadri, Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_zgesvd.c b/testing/testing_zgesvd.c
index fd60eacd25a82d66a1da2b7b14ce92c285045a47..4884ceca0cbfaf49795fe373f9ed61b408e02d89 100644
--- a/testing/testing_zgesvd.c
+++ b/testing/testing_zgesvd.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zgesvd testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Azzam Haidar
  * @author Hatem Ltaief
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_zheevd.c b/testing/testing_zheevd.c
index 83ec273de60f7306e9ad6007f516b0b943a46361..d38d3e68f68b4ad8eb483ec5cd1bd9cabbac8028 100644
--- a/testing/testing_zheevd.c
+++ b/testing/testing_zheevd.c
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zheevd testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Hatem Ltaief
  * @author Azzam Haidar
- * @date 2010-11-15
+ * @date 2016-12-09
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_zhemm.c b/testing/testing_zhemm.c
index b9d19d03a5e3d5ea2eaec5fa2ab2ae323f83b24f..ae952609160af5fb4ad2cb8e503c755ea1864450 100644
--- a/testing/testing_zhemm.c
+++ b/testing/testing_zhemm.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zhemm testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/testing/testing_zher2k.c b/testing/testing_zher2k.c
index 16e72cfed80e75d2350fc1ef3281f74b5e618c82..b8128bf9f74eb93442db704a4477b0fe2e3fbaa0 100644
--- a/testing/testing_zher2k.c
+++ b/testing/testing_zher2k.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zher2k testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/testing/testing_zherk.c b/testing/testing_zherk.c
index 1563fa5714ab1c626e7030b16f52197cbe13ff42..72c026a4b3b94fd78dfd5d0641b5c7bec4a43fff 100644
--- a/testing/testing_zherk.c
+++ b/testing/testing_zherk.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zherk testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/testing/testing_zlange.c b/testing/testing_zlange.c
index 34fde1bc404d355b4083eaeed9234ea2ebc8106b..48787834fa277d75d8b49a7b6680bc48bd33dffc 100644
--- a/testing/testing_zlange.c
+++ b/testing/testing_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zlange testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.6.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.6.0 for CHAMELEON 0.9.2
  * @author Emmanuel Agullo
  * @author Mathieu Faverge
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_zpemv.c b/testing/testing_zpemv.c
index 6c44c6dec84fb9f39aa41885e73ca3c4037bf998..0e35f56d57950857c1a582b4fdd9481723f73f03 100644
--- a/testing/testing_zpemv.c
+++ b/testing/testing_zpemv.c
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zpemv testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Dulceneia Becker
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2011-10-06
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_zposv.c b/testing/testing_zposv.c
index 1c6835daeccc6152cc95ad3c1861436253d4d9df..25f740afbcb8dfe92c702af6400bc00d52c554a0 100644
--- a/testing/testing_zposv.c
+++ b/testing/testing_zposv.c
@@ -4,21 +4,21 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zposv testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Bilel Hadri, Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_zpotri.c b/testing/testing_zpotri.c
index 24f7d170fa48b53769df6a56de3218030fafea8b..dee0db509dcff60a90c4e17f9151c42fea54358b 100644
--- a/testing/testing_zpotri.c
+++ b/testing/testing_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zpotri testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Hatem Ltaief
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_zsymm.c b/testing/testing_zsymm.c
index c2c7e25c2eb5f7aef9f3b18d3d8bb83f920c903a..af7b75c8eda6dcef80c605ba99da28aaa5cfe72d 100644
--- a/testing/testing_zsymm.c
+++ b/testing/testing_zsymm.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsymm testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_zsyr2k.c b/testing/testing_zsyr2k.c
index f801117ea888418adeaf826a6a9bb56d972fd577..0f16cbaffc192899494b48224a2f402e95548f55 100644
--- a/testing/testing_zsyr2k.c
+++ b/testing/testing_zsyr2k.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyr2k testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_zsyrk.c b/testing/testing_zsyrk.c
index c3ebe8c33614ccd660be75233892b4de3ea73a3c..aadcfb491148315868309ea160617f7bdfc755b8 100644
--- a/testing/testing_zsyrk.c
+++ b/testing/testing_zsyrk.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon zsyrk testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_ztrmm.c b/testing/testing_ztrmm.c
index 07218469ddd02bf7f5f075b89e7f415e54c99b73..950fa0c5bb490a1c609e83d09bfb44e5deb5e5a2 100644
--- a/testing/testing_ztrmm.c
+++ b/testing/testing_ztrmm.c
@@ -4,20 +4,20 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrmm testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/testing/testing_ztrsm.c b/testing/testing_ztrsm.c
index 74ce2fe555074cb2a774b0df4ee8079e280333aa..975147964c36a11c2e417ec7ea9993a002af3279 100644
--- a/testing/testing_ztrsm.c
+++ b/testing/testing_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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon ztrsm testing
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @comment This file has been automatically generated
- *          from Plasma 2.5.0 for CHAMELEON 1.0.0
+ *          from Plasma 2.5.0 for CHAMELEON 0.9.2
  * @author Mathieu Faverge
  * @author Emmanuel Agullo
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/CMakeLists.txt b/timing/CMakeLists.txt
index ace5653ac5ce455bc104f6faee6022d4742834e2..cbe827665a7af49d0f1e77d7445b0ca350937a5a 100644
--- a/timing/CMakeLists.txt
+++ b/timing/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-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+# @copyright 2012-2019 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.0.0
+# @version 0.9.2
 #  @author Cedric Castagnede
 #  @author Emmanuel Agullo
 #  @author Mathieu Faverge
-#  @date 2012-07-13
+#  @date 2014-11-16
 #
 ###
 
diff --git a/timing/flops.h b/timing/flops.h
index f5f73d16b01dddd286790c637b35d865de4df019..13c62cedb2b3b214c8b7a0a1ed75604ef737bed7 100644
--- a/timing/flops.h
+++ b/timing/flops.h
@@ -4,17 +4,17 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  *  File provided by Univ. of Tennessee,
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Cedric Castagnede
- * @date 2010-12-20
+ * @date 2014-11-16
  *
  */
 /*
diff --git a/timing/time_zgelqf.c b/timing/time_zgelqf.c
index 45c69f04605ac578a9adf044b7d4e091de3b1422..bbe2cc2a8c5438f344eb4aa548b6bb56a242ce22 100644
--- a/timing/time_zgelqf.c
+++ b/timing/time_zgelqf.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2016-04-13
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgelqf_tile.c b/timing/time_zgelqf_tile.c
index bc4723bafcdf0c1675163d4ceec68c0c6bfbee1e..0acbd3de45b3b75bdbe5e70c6e810aca34899e09 100644
--- a/timing/time_zgelqf_tile.c
+++ b/timing/time_zgelqf_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2016-04-13
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgels.c b/timing/time_zgels.c
index 30a3ad5e1ef20419a21c1a066d5928901b5b8864..fbf9f8f6bc6cb85984a515ee0c5595211fe3ec0c 100644
--- a/timing/time_zgels.c
+++ b/timing/time_zgels.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgels_tile.c b/timing/time_zgels_tile.c
index 0d628287bf3df8a03f4b992913399bc69419b8bd..c2ca584864dab0860f8803da8ccf987e3cfce7bf 100644
--- a/timing/time_zgels_tile.c
+++ b/timing/time_zgels_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgemm.c b/timing/time_zgemm.c
index f48fe1826f7d356dfb071b51ac8e55c8f0ff481a..1b332945a702549770c0e31067ea6f94fc268280 100644
--- a/timing/time_zgemm.c
+++ b/timing/time_zgemm.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgemm_tile.c b/timing/time_zgemm_tile.c
index 996b626d6a429beb905c124e7b5d9ed836df4708..b558d493987a14211105e306b5688c85534c7a5a 100644
--- a/timing/time_zgemm_tile.c
+++ b/timing/time_zgemm_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgeqrf.c b/timing/time_zgeqrf.c
index 89e3534e40e2a50908d50807b83a39a71855ba57..d167515bfc2bafdb206032bb0444e5407d844b32 100644
--- a/timing/time_zgeqrf.c
+++ b/timing/time_zgeqrf.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgeqrf_hqr.c b/timing/time_zgeqrf_hqr.c
index 6b4f60459eb30a8f66227f10dc9d6e99ffb709fa..b7c16942516e9bae809fdc964af161fbbb9e58fb 100644
--- a/timing/time_zgeqrf_hqr.c
+++ b/timing/time_zgeqrf_hqr.c
@@ -4,15 +4,15 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Raphael Boucherie
- * @date 2017-06-08
+ * @date 2017-05-29
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgeqrf_hqr_tile.c b/timing/time_zgeqrf_hqr_tile.c
index 3af4530fda76f4f84e0b4b47cf9c8694d8beb177..a4ebcc1c97e328def67be6c683a3eebd88e9b041 100644
--- a/timing/time_zgeqrf_hqr_tile.c
+++ b/timing/time_zgeqrf_hqr_tile.c
@@ -4,15 +4,15 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Raphael Boucherie
- * @date 2017-06-08
+ * @date 2017-06-13
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgeqrf_tile.c b/timing/time_zgeqrf_tile.c
index dc257558bca9ee6864e9077f851f33256e5d6c4e..1e117c5e561632b895edbdbe4e879b22d2221475 100644
--- a/timing/time_zgeqrf_tile.c
+++ b/timing/time_zgeqrf_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgeqrs_tile.c b/timing/time_zgeqrs_tile.c
index 78b008c1ad6f4b80f434cc588acd05f103e8672c..39cf2d2ac15646df1600b92945dab80a47f94462 100644
--- a/timing/time_zgeqrs_tile.c
+++ b/timing/time_zgeqrs_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2015-07-28
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgesv_incpiv.c b/timing/time_zgesv_incpiv.c
index b32c8a50e2146cddc5ca4a11b5a6c47915f982f7..8daba23528aec299c9f60259cd5b276c51e4345d 100644
--- a/timing/time_zgesv_incpiv.c
+++ b/timing/time_zgesv_incpiv.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgesv_incpiv_tile.c b/timing/time_zgesv_incpiv_tile.c
index 7bd220fdf4b8198c606743e90d050a2d0652e56b..cb23145ad351a3b31a68a7206284cf768630e4af 100644
--- a/timing/time_zgesv_incpiv_tile.c
+++ b/timing/time_zgesv_incpiv_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgesv_nopiv.c b/timing/time_zgesv_nopiv.c
index e5df487d461eb7ef759a2f1c5fbd820beac28817..c64107f5fbaf9e32863b542d43af5f97c7974435 100644
--- a/timing/time_zgesv_nopiv.c
+++ b/timing/time_zgesv_nopiv.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgesv_nopiv_tile.c b/timing/time_zgesv_nopiv_tile.c
index 9ca418ad23bdb7c383d74b9c7a72370b24f1804e..5e97094793ba3e07cdb511117aa5df48bdad4a44 100644
--- a/timing/time_zgesv_nopiv_tile.c
+++ b/timing/time_zgesv_nopiv_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgesvd_tile.c b/timing/time_zgesvd_tile.c
index 0d3c39cc35f2e2192f20837c16480fc0e49a3c34..3803d670347768498d1c01769c811da0abcc4f26 100644
--- a/timing/time_zgesvd_tile.c
+++ b/timing/time_zgesvd_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2016-12-09
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgetrf_incpiv.c b/timing/time_zgetrf_incpiv.c
index 0f7c9c5b8b712c30f4997c84e645be67e7698267..2e13d00f16080de6cbfcdacb5871587f997cdf1c 100644
--- a/timing/time_zgetrf_incpiv.c
+++ b/timing/time_zgetrf_incpiv.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgetrf_incpiv_tile.c b/timing/time_zgetrf_incpiv_tile.c
index 1e8f7a29acbb576aac419dc36fdce2a1359356c3..619aacb392c0544043ca3b262810d4ab22f91ad5 100644
--- a/timing/time_zgetrf_incpiv_tile.c
+++ b/timing/time_zgetrf_incpiv_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgetrf_nopiv.c b/timing/time_zgetrf_nopiv.c
index c4597ed015061c925a7bea4b5ef6a92464ee99da..24c267a9c3d35a0ac1c512eeb51cd91fde8fb88e 100644
--- a/timing/time_zgetrf_nopiv.c
+++ b/timing/time_zgetrf_nopiv.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgetrf_nopiv_tile.c b/timing/time_zgetrf_nopiv_tile.c
index 1f09dc220d3767abf9fb7331dac0df39a67362b7..f56cd95e99e954abf3892b1d61a5fee103d3fbb3 100644
--- a/timing/time_zgetrf_nopiv_tile.c
+++ b/timing/time_zgetrf_nopiv_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgetri_tile.c b/timing/time_zgetri_tile.c
index 4c37f34ebe736be31db4784c4b4b40bf34531d0a..b64c5707952953268251b4821a82d04cffa2023b 100644
--- a/timing/time_zgetri_tile.c
+++ b/timing/time_zgetri_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgetrs_incpiv_tile.c b/timing/time_zgetrs_incpiv_tile.c
index 10d4203f11ce27cdd02d508e9dbe750599aa8a96..310962f3a00bebadb68c8744c57b18bfe6ce9a36 100644
--- a/timing/time_zgetrs_incpiv_tile.c
+++ b/timing/time_zgetrs_incpiv_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2015-07-28
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zgetrs_nopiv_tile.c b/timing/time_zgetrs_nopiv_tile.c
index 661e4e9ae3caa759d45352bf440c796f9e8a6424..4ebcfbd278afbd6983d58102f77a43e17c5deb0f 100644
--- a/timing/time_zgetrs_nopiv_tile.c
+++ b/timing/time_zgetrs_nopiv_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2015-07-28
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zheevd_tile.c b/timing/time_zheevd_tile.c
index cb7bf1d0fcfc924ec0b5d5d07c2d3500165d78eb..74bfd566211061172bb6cd2470993094d44ae49c 100644
--- a/timing/time_zheevd_tile.c
+++ b/timing/time_zheevd_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2016-12-09
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zlange.c b/timing/time_zlange.c
index da0d670a174e78aabf8dfb4621ce21a1039776e4..8db08f78152ac1fe0d27e97fae0fec97dc1a373c 100644
--- a/timing/time_zlange.c
+++ b/timing/time_zlange.c
@@ -4,12 +4,14 @@
  *
  * @Copyright 2009-2014 The University of Tennessee and The University
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zlange_tile.c b/timing/time_zlange_tile.c
index ddb74f321c0bbbd9f6b157b33dd6784ca49a82ff..147c5955902ad793b4fe351e5640b8d308d084c4 100644
--- a/timing/time_zlange_tile.c
+++ b/timing/time_zlange_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zposv.c b/timing/time_zposv.c
index f933c62281bd2a62f4e5c226baa9edfa20f61dc4..5ca0f40fe173edd57a4847f83c13007ff21a91ae 100644
--- a/timing/time_zposv.c
+++ b/timing/time_zposv.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zposv_tile.c b/timing/time_zposv_tile.c
index 417873ddc317e96ee9900f3ededb2f9d82710732..2f032d5a36e2d8f9a72b579ef146f110caad86f3 100644
--- a/timing/time_zposv_tile.c
+++ b/timing/time_zposv_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zpotrf.c b/timing/time_zpotrf.c
index d64178f97243551eea09a5898dfde4a5512408ad..78900b1f423e92bca2f86aaea7e086d44eaa0905 100644
--- a/timing/time_zpotrf.c
+++ b/timing/time_zpotrf.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverges
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zpotrf_tile.c b/timing/time_zpotrf_tile.c
index 67e95738955c0575092566eeafbe94a21179f18c..9799baeedc9e992f90da0ba2ac0d9b61e7a44780 100644
--- a/timing/time_zpotrf_tile.c
+++ b/timing/time_zpotrf_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zpotri_tile.c b/timing/time_zpotri_tile.c
index 192068d391cfcd2a07eb40306abee61b728bd068..97f7097388bcb752d2a2af90db3f36d4377336b4 100644
--- a/timing/time_zpotri_tile.c
+++ b/timing/time_zpotri_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zpotrs_tile.c b/timing/time_zpotrs_tile.c
index 6df7c5b2e7b67d2777630867890e32c6f542063b..f937d48340fffda4f8719ef1c8e0e69729f99fb5 100644
--- a/timing/time_zpotrs_tile.c
+++ b/timing/time_zpotrs_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2015-07-28
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/time_zsytrf_tile.c b/timing/time_zsytrf_tile.c
index 28f7ab529922a78983da058c8b4387e1aaf0de0b..38c3d1c5b8852d9ea7215fb03f96c4f286e3d73f 100644
--- a/timing/time_zsytrf_tile.c
+++ b/timing/time_zsytrf_tile.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c
  *
  */
diff --git a/timing/time_ztrsm.c b/timing/time_ztrsm.c
index cb4a411b0214674dd06f2f32a9a963bf921852ad..12e488196b1425eae26dbc512bafa26dfe9f540e 100644
--- a/timing/time_ztrsm.c
+++ b/timing/time_ztrsm.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/timing.c b/timing/timing.c
index 771173b2492abc96b0c9e2845d2c22bcf6edf703..dfb85242be31804dca89c7f84386b2ca309ac5f3 100644
--- a/timing/timing.c
+++ b/timing/timing.c
@@ -4,19 +4,19 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
  * @brief Chameleon auxiliary routines
  *
- * @version 1.0.0
+ * @version 0.9.2
  * @author Mathieu Faverge
  * @author Raphael Boucherie
  * @author Dulceneia Becker
  * @author Cedric Castagnede
- * @date 2010-11-15
+ * @date 2014-11-16
  *
  */
 #if defined( _WIN32 ) || defined( _WIN64 )
diff --git a/timing/timing.h b/timing/timing.h
index bd5c4b33dcc09510af500a8da508bf0601a0c8dc..2ffbb9573e14fad5f77520a83304ab7df118e95e 100644
--- a/timing/timing.h
+++ b/timing/timing.h
@@ -4,10 +4,12 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2014-11-16
  *
  */
 #ifndef _timing_h_
diff --git a/timing/timing_zauxiliary.c b/timing/timing_zauxiliary.c
index 9fa3e969ed01d3e9628248b87e21771d886a0f53..f804164b649d2768ccbc3ad817ef29d977a1e6c1 100644
--- a/timing/timing_zauxiliary.c
+++ b/timing/timing_zauxiliary.c
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2015-03-24
  * @precisions normal z -> c d s
  *
  */
diff --git a/timing/timing_zauxiliary.h b/timing/timing_zauxiliary.h
index 7e3cca968e7d4185edf7468c772cff32d84ca46d..2c9957f52c9222034a8308add3867a1e5050cf94 100644
--- a/timing/timing_zauxiliary.h
+++ b/timing/timing_zauxiliary.h
@@ -4,12 +4,14 @@
  *
  * @copyright 2009-2014 The University of Tennessee and The University of
  *                      Tennessee Research Foundation. All rights reserved.
- * @copyright 2012-2018 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+ * @copyright 2012-2019 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
  *                      Univ. Bordeaux. All rights reserved.
  *
  ***
  *
- * @version 1.0.0
+ * @version 0.9.2
+ * @author Mathieu Faverge
+ * @date 2015-03-24
  * @precisions normal z -> c d s
  *
  */
diff --git a/tools/analysis.sh b/tools/analysis.sh
index 2359771ec8392bba8243a976e9d0a16b10ee6997..4c549d00fe3915c03ad9ca62951098932af817ab 100755
--- a/tools/analysis.sh
+++ b/tools/analysis.sh
@@ -12,10 +12,10 @@
 ./tools/find_sources.sh
 
 # Generate coverage xml output
-lcov -a $PWD/chameleon_starpu.lcov
-     -a $PWD/chameleon_starpu_simgrid.lcov
-     -a $PWD/chameleon_quark.lcov
-     -a $PWD/chameleon_parsec.lcov
+lcov -a $PWD/chameleon_starpu.lcov \
+     -a $PWD/chameleon_starpu_simgrid.lcov \
+     -a $PWD/chameleon_quark.lcov \
+     -a $PWD/chameleon_parsec.lcov \
      -o $PWD/chameleon.lcov
 lcov --summary chameleon.lcov
 lcov_cobertura.py chameleon.lcov --output chameleon_coverage.xml
@@ -26,38 +26,34 @@ export UNDEFINITIONS="-UCHAMELEON_USE_OPENCL -UWIN32 -UWIN64 -U_MSC_EXTENSIONS -
 # run cppcheck analysis
 cppcheck -v -f --language=c --platform=unix64 --enable=all --xml --xml-version=2 --suppress=missingInclude ${UNDEFINITIONS} --file-list=./filelist.txt 2> chameleon_cppcheck.xml
 
-# run rats analysis
-rats -w 3 --xml  `cat filelist.txt` > chameleon_rats.xml
-
 # create the sonarqube config file
 cat > sonar-project.properties << EOF
 sonar.host.url=https://sonarqube.bordeaux.inria.fr/sonarqube
 sonar.login=$SONARQUBE_LOGIN
 
-sonar.links.homepage=https://gitlab.inria.fr/solverstack/chameleon
-sonar.links.scm=https://gitlab.inria.fr/solverstack/chameleon.git
-sonar.links.ci=https://gitlab.inria.fr/solverstack/chameleon/pipelines
-sonar.links.issue=https://gitlab.inria.fr/solverstack/chameleon/issues
+sonar.links.homepage=$CI_PROJECT_URL
+sonar.links.scm=$CI_REPOSITORY_URL
+sonar.links.ci=https://gitlab.inria.fr/$CI_PROJECT_NAMESPACE/chameleon/pipelines
+sonar.links.issue=https://gitlab.inria.fr/$CI_PROJECT_NAMESPACE/chameleon/issues
 
-sonar.projectKey=hiepacs:chameleon:gitlab:master
+sonar.projectKey=hiepacs:chameleon:gitlab:$CI_PROJECT_NAMESPACE:$CI_COMMIT_REF_NAME
 sonar.projectDescription=Dense linear algebra subroutines for heterogeneous and distributed architectures
-sonar.projectVersion=master
+sonar.projectVersion=0.9
 
 sonar.language=c
-sonar.sources=build, compute, control, coreblas, example, include, runtime, testing, timing
-sonar.inclusions=`cat filelist.txt | xargs echo | sed 's/ /, /g'`
-sonar.c.includeDirectories=$(echo | gcc -E -Wp,-v - 2>&1 | grep "^ " | tr '\n' ',').,include,coreblas/include,runtime/parsec/include,runtime/quark/include,runtime/starpu/include,build,build/control,build/coreblas,build/coreblas/include,build/include,build/runtime/parsec/include,build/runtime/quark/include,build/runtime/starpu/include,hqr/include,$PARSEC_DIR/include,$QUARK_DIR/include,$STARPU_DIR/include/starpu/1.2,$SIMGRID_DIR/include
+sonar.sources=build-openmp, build-parsec, build-quark, build-starpu, build-starpu_simgrid, compute, control, coreblas, example, include, runtime, testing, timing
+sonar.inclusions=`cat filelist.txt | sed ':a;N;$!ba;s/\n/, /g'`
+sonar.c.includeDirectories=$(echo | gcc -E -Wp,-v - 2>&1 | grep "^ " | tr '\n' ',').,$(find . -type f -name '*.h' | sed -r 's|/[^/]+$||' |sort |uniq | xargs echo | sed -e 's/ /,/g'),$PARSEC_DIR/include,$QUARK_DIR/include,$STARPU_DIR/include/starpu/1.2,$SIMGRID_DIR/include
 sonar.sourceEncoding=UTF-8
 sonar.c.errorRecoveryEnabled=true
 sonar.c.compiler.charset=UTF-8
 sonar.c.compiler.parser=GCC
 sonar.c.compiler.regex=^(.*):(\\\d+):\\\d+: warning: (.*)\\\[(.*)\\\]$
-sonar.c.compiler.reportPath=chameleon_starpu.log, chameleon_starpu_simgrid.log, chameleon_quark.log, chameleon_parsec.log
+sonar.c.compiler.reportPath=chameleon_build.log
 sonar.c.coverage.reportPath=chameleon_coverage.xml
 sonar.c.cppcheck.reportPath=chameleon_cppcheck.xml
-sonar.c.rats.reportPath=chameleon_rats.xml
-sonar.c.clangsa.reportPath=build/analyzer_reports/*/*.plist
-sonar.c.jsonCompilationDatabase=build/compile_commands.json
+sonar.c.clangsa.reportPath=build-openmp/analyzer_reports/*/*.plist, build-parsec/analyzer_reports/*/*.plist, build-quark/analyzer_reports/*/*.plist, build-starpu/analyzer_reports/*/*.plist, build-starpu_simgrid/analyzer_reports/*/*.plist
+sonar.c.jsonCompilationDatabase=build-openmp/compile_commands.json, build-parsec/compile_commands.json, build-quark/compile_commands.json, build-starpu/compile_commands.json, build-starpu_simgrid/compile_commands.json
 EOF
 
 # run sonar analysis + publish on sonarqube-dev
diff --git a/tools/check_header.sh b/tools/check_header.sh
index e4e3ead8e33a759f0afbc79cad785ff509f49d06..46dd216a5abd15348e8a23b034579aa59f5da35d 100755
--- a/tools/check_header.sh
+++ b/tools/check_header.sh
@@ -6,7 +6,7 @@
 #
 #  @version 6.0.0
 #  @author Mathieu Faverge
-#  @date 2017-06-24
+#  @date 2018-10-12
 #
 # This script check that basic informations is present and correct in
 # headers of source files.
@@ -53,10 +53,10 @@ check_header_copyright()
     filename=$1
     basename=`basename $filename`
 
-    toto=`grep -E " @copyright [0-9]{4}-2018 Bordeaux INP" $filename`
+    toto=`grep -E " @copyright [0-9]{4}-2019 Bordeaux INP" $filename`
     if [ $? -ne 0 ]
     then
-        toto=`grep -E " @copyright 2018      Bordeaux INP" $filename`
+        toto=`grep -E " @copyright 2019      Bordeaux INP" $filename`
     fi
 
     if [ $? -ne 0 ]
diff --git a/tools/find_sources.sh b/tools/find_sources.sh
index 21471b1a27c4d572f26ba41b3b238643b69446f5..f340967a45adf31f891366586819f4e82c982cbb 100755
--- a/tools/find_sources.sh
+++ b/tools/find_sources.sh
@@ -1,7 +1,7 @@
 #!/bin/sh
 set -x
 
-SRCDIR_TO_ANALYZE="build compute control coreblas example include runtime testing timing"
+SRCDIR_TO_ANALYZE="build-openmp build-parsec build-quark build-starpu build-starpu_simgrid compute control coreblas example include runtime testing timing"
 
 echo $PWD
 rm -f filelist.txt
@@ -14,7 +14,7 @@ done
 sed -i '/CMakeFiles/d' filelist.txt
 
 # Remove installed files
-sed -i '/build\/install.*/d' filelist.txt
+sed -i '/build.*\/install.*/d' filelist.txt
 
 # Remove original files used for precision generation
 for file in `git grep "@precisions" | awk -F ":" '{ print $1 }'`
diff --git a/tools/fix_doxygen_date.sh b/tools/fix_doxygen_date.sh
new file mode 100755
index 0000000000000000000000000000000000000000..fc28e1bcb034ded6cdeed15606205cb7f1b5dff9
--- /dev/null
+++ b/tools/fix_doxygen_date.sh
@@ -0,0 +1,65 @@
+#
+#  @file fix_doxygen_date.sh
+#
+#  @copyright 2019      Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
+#                       Univ. Bordeaux. All rights reserved.
+#
+#  @version 0.9.2
+#  @author Florent Pruvost
+#  @date 2019-03-13
+#
+# This script fix the date doxygen markup.
+#
+#!/bin/sh
+header=1
+
+print_header()
+{
+    if [ $header -ne 0 ]
+    then
+        echo "------ $1 --------"
+        header=0
+    fi
+}
+
+#
+# Update the @date with the creation date (first commit date)
+#
+fix_header_date()
+{
+    header=1
+    date_in_file=`cat $1 | grep -o "@date [0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]" | cut  -c7-17`
+    date_fix=`git log --date=format:'%Y-%m-%d' -- $1 | grep Date | sort | cut -c9-19 | head -n1`
+    if [ -z "$date_in_file" ]
+    then
+        echo "$1 date is missing and should be $date_fix"
+        sed -i -e "s#\(@author.*\)#\1\n * @date $date_fix#" $1
+    else
+        echo "$1 $date_in_file $date_fix"
+        if [ "$date_in_file" != "$date_fix" ]
+        then
+            sed -i -e "s#@date [0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]#@date $date_fix#" $1
+        fi
+    fi
+}
+
+#
+# Loop over files
+#
+files=`git ls-files | grep -v "^\." | grep -v ".*\.md" | grep -v LICENSE | grep -v ".*\.cmake" | grep -v "testing/lin" | grep -v doc/ | grep -v CTest | grep -v cblas.h | grep -v lapacke.h | grep -v "simucore/perfmodels/\.starpu" | grep -v "\.org"`
+
+if [ $# -gt 0 ]
+then
+    files=$*
+fi
+
+for f in $files
+do
+    #echo $f
+    if [ -d $f ]
+    then
+        continue;
+    fi
+
+    fix_header_date $f
+done
diff --git a/tools/release.sh b/tools/release.sh
new file mode 100755
index 0000000000000000000000000000000000000000..d10025d81bc2a3c1e854b17dd429cca8fb931ee4
--- /dev/null
+++ b/tools/release.sh
@@ -0,0 +1,65 @@
+#!/bin/bash
+
+changelog=""
+function gen_changelog()
+{
+    local firstline=$( grep -n "^chameleon-" ChangeLog | head -n 1 | cut -d ':' -f 1 )
+    firstline=$(( firstline + 2 ))
+    #echo $firstline
+    local lastline=$( grep -n "^chameleon-" ChangeLog | head -n 2 | tail -n 1 | cut -d ':' -f 1 )
+    lastline=$(( lastline - 1 ))
+    #echo $lastline
+
+    for i in `seq $firstline $lastline`
+    do
+        local line=$( head -n $i ChangeLog | tail -n 1 )
+        changelog="$changelog$line\\n"
+        #echo $line
+    done
+
+    changelog="$changelog\nWARNING: Download the source archive by clicking on the link __Download release__ above, please do not consider the link Source code to get all submodules.\n"
+}
+
+release=""
+function get_release()
+{
+    local firstline=$( grep -n "^chameleon-" ChangeLog | head -n 1 | cut -d ':' -f 1 )
+    release=$( head -n $firstline ChangeLog | tail -n 1 | sed 's/chameleon\-//' )
+}
+
+# Get the release name through the branch name, and through the ChangeLog file.
+# Both have to match to be correct
+RELEASE_NAME=`echo $CI_COMMIT_REF_NAME | cut -d - -f 2`
+get_release
+
+if [ -z "$RELEASE_NAME" -o -z "$release" -o "$RELEASE_NAME" != "$release" ]
+then
+    echo "Commit name $RELEASE_NAME is different from ChangeLog name $release"
+    exit 1
+fi
+
+# generate the archive
+mkdir -p build-release
+cd build-release
+cmake ..
+make package_source
+
+# upload the source archive
+GETURL=`echo curl --request POST --header \"PRIVATE-TOKEN: $RELEASE_TOKEN\" --form \"file=\@chameleon-$RELEASE_NAME.tar.gz\" https://gitlab.inria.fr/api/v4/projects/$CI_PROJECT_ID/uploads`
+MYURL=`eval $GETURL | jq .url | sed "s#\"##g"`
+
+# extract the change log from ChangeLog
+gen_changelog
+
+# Try to remove the release if it already exists
+curl --request DELETE --header "PRIVATE-TOKEN: $RELEASE_TOKEN" https://gitlab.inria.fr/api/v4/projects/$CI_PROJECT_ID/releases/v$RELEASE_NAME
+
+# create the release and the associated tag
+COMMAND=`echo curl --header \"Content-Type: application/json\" --header \"PRIVATE-TOKEN: $RELEASE_TOKEN\" \
+  --data \'{ \"name\": \"v$RELEASE_NAME\", \
+            \"tag_name\": \"v$RELEASE_NAME\", \
+            \"ref\": \"$CI_COMMIT_REF_NAME\", \
+            \"description\": \"$changelog\", \
+            \"assets\": { \"links\": [{ \"name\": \"Download release\", \"url\": \"$CI_PROJECT_URL/$MYURL\" }] } }\' \
+  --request POST https://gitlab.inria.fr/api/v4/projects/$CI_PROJECT_ID/releases`
+eval $COMMAND