Prints DBCSR statistics
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(mp_comm_type), | intent(in) | :: | group | |||
integer, | intent(in) | :: | output_unit |
SUBROUTINE dbcsr_mm_sched_print_statistics(group, output_unit) !! Prints DBCSR statistics TYPE(mp_comm_type), INTENT(IN) :: group INTEGER, INTENT(IN) :: output_unit TYPE(stats_type) :: report ! Collect and output statistics --------------------------------------------- CALL stats_init(report) CALL stats_collect_from_threads(report) CALL stats_collect_from_ranks(report, group) CALL stats_print_report(report, output_unit) END SUBROUTINE dbcsr_mm_sched_print_statistics