diff --git a/doc/magic_manual.pdf b/doc/magic_manual.pdf index 96a4bb69..7188cd54 100644 Binary files a/doc/magic_manual.pdf and b/doc/magic_manual.pdf differ diff --git a/doc/sphinx/apiFortran/parallelModules.rst b/doc/sphinx/apiFortran/parallelModules.rst index b90da550..b411faf4 100644 --- a/doc/sphinx/apiFortran/parallelModules.rst +++ b/doc/sphinx/apiFortran/parallelModules.rst @@ -18,3 +18,8 @@ MPI related modules ---------------------- .. f:automodule:: communications + +``mpi_transpose.f90`` +---------------------- + +.. f:automodule:: mpi_transp diff --git a/doc/sphinx/conf.py b/doc/sphinx/conf.py index d11cd132..ceb4461b 100644 --- a/doc/sphinx/conf.py +++ b/doc/sphinx/conf.py @@ -65,9 +65,9 @@ # built documents. # # The short X.Y version. -version = '5.7' +version = '5.8' # The full version, including alpha/beta/rc tags. -release = '5.7' +release = '5.8' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/src/constants.f90 b/src/constants.f90 index 6f9d4a35..40c530bb 100644 --- a/src/constants.f90 +++ b/src/constants.f90 @@ -38,6 +38,6 @@ module constants real(cp), parameter :: cos36=cos(36.0_cp*pi/180.0_cp) ! :math:`\cos{36\pi/180}` real(cp), parameter :: cos72=cos(72.0_cp*pi/180.0_cp) ! :math:`\cos{72\pi/180}` - character(len=4), parameter :: codeVersion='5.7' + character(len=4), parameter :: codeVersion='5.8' end module constants diff --git a/src/magic.f90 b/src/magic.f90 index 69e7c57b..5976732d 100644 --- a/src/magic.f90 +++ b/src/magic.f90 @@ -216,12 +216,12 @@ program magic if ( rank == 0 ) then open(newunit=n_log_file, file=log_file, status='new') - write(n_log_file,*) '! __ __ _____ _____ _____ ______ ' - write(n_log_file,*) '! | \/ | |_ _/ ____| | ____|____ | ' - write(n_log_file,*) '! | \ / | __ _ __ _ | || | | |__ / / ' - write(n_log_file,*) '! | |\/| |/ _` |/ _` | | || | |___ \ / / ' - write(n_log_file,*) '! | | | | (_| | (_| |_| || |____ ___) | / / ' - write(n_log_file,*) '! |_| |_|\__,_|\__, |_____\_____| |____(_)_/ ' + write(n_log_file,*) '! __ __ _____ _____ _____ ___ ' + write(n_log_file,*) '! | \/ | |_ _/ ____| | ____|/ _ \ ' + write(n_log_file,*) '! | \ / | __ _ __ _ | || | | |__ | (_) | ' + write(n_log_file,*) '! | |\/| |/ _` |/ _` | | || | |___ \ > _ < ' + write(n_log_file,*) '! | | | | (_| | (_| |_| || |____ ___) | (_) | ' + write(n_log_file,*) '! |_| |_|\__,_|\__, |_____\_____| |____(_)___/ ' write(n_log_file,*) '! __/ | ' write(n_log_file,*) '! |___/ ' write(n_log_file,*) '! '