Skip to content
Snippets Groups Projects
Commit a1da48c1 authored by Andreas Marek's avatar Andreas Marek
Browse files

Update of ELPA version number to 2016.11.001.pre

- the version number has been updated
- a warning that this is a pre-release has been added to the configure
  script
- the changelog has been updated
- the test_project versioning is consistent with the ELPA versioning
parent 6734be58
Branches
No related tags found
No related merge requests found
Changelog for pre-release ELPA 2016.11.001.pre
This pre-release contains an experimental API which will most likely
change in the next stable release
- also suport of single-precision (real and complex case) eigenvalule problems
- GPU support in ELPA 1stage and 2stage (real and complex case)
- change of API (w.r.t. ELPA 2016.05.004) to support runtime-choice of GPU usage
Changelog for release ELPA 2016.05.004
- fix a problem with the private state of module precision
......
......@@ -33,7 +33,7 @@ AM_SILENT_RULES([yes])
# by the current interface, as they are ABI compatible (e.g. only new symbols
# were added by the new interface)
#
AC_SUBST([ELPA_SO_VERSION], [7:0:3])
AC_SUBST([ELPA_SO_VERSION], [8:0:0])
#
......@@ -1079,5 +1079,11 @@ fi
if test "${can_compile_sse}" = "no" ; then
AC_MSG_WARN([Could not compile SSE instructions])
fi
echo " "
echo "***********************************************************************"
echo "* This is a prerelease of the ELPA library 2016.11.001.pre library! *"
echo "* It contains an experimental API which will most likely change with *"
echo "* the next stable release. *"
echo "***********************************************************************"
echo " "
make -f $srcdir/generated_headers.am generated-headers top_srcdir="$srcdir"
......@@ -32,7 +32,7 @@
%endif
Name: elpa
Version: 2016.05.004
Version: 2016.11.001.pre
Release: 1
Summary: A massively parallel eigenvector solver
License: LGPL-3.0
......
AC_PREREQ([2.69])
AC_INIT([elpa_test_project],[2016.05.004], elpa-library@rzg.mpg.de)
elpaversion="2016.05.004"
AC_INIT([elpa_test_project],[2016.11.001.pre], elpa-library@rzg.mpg.de)
elpaversion="2016.11.001.pre"
AC_CONFIG_SRCDIR([src/test_real.F90])
AM_INIT_AUTOMAKE([foreign -Wall subdir-objects])
......
......@@ -212,7 +212,7 @@ program test_real_example
end if
call mpi_barrier(mpi_comm_world, mpierr) ! for correct timings only
success = solve_evp_real_1stage(na, nev, a, na_rows, ev, z, na_rows, nblk, &
success = elpa_solve_evp_real_1stage_double(na, nev, a, na_rows, ev, z, na_rows, nblk, &
na_cols, mpi_comm_rows, mpi_comm_cols, mpi_comm_world)
if (.not.(success)) then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment