print_build_info Subroutine

public subroutine print_build_info()

Print the build information of the program.

Arguments

None

Source Code

  subroutine print_build_info()
    !! Print the build information of the program.
    implicit none

    write(*,'("ATHENA: &
         &Adaptive Training for High Efficiency Neural network Applications")')
    write(*,'(" version: ",A)') athena__version__
    write(*,'(" (build ",A,1X,A,")")') __DATE__, __TIME__

  end subroutine print_build_info