Browse Source

Print the wall time (cycles) with enabling FUNCTION_PROFILE.

tags/v0.1alpha2^2
Xianyi Zhang 14 years ago
parent
commit
1496383224
3 changed files with 6 additions and 4 deletions
  1. +1
    -0
      Changelog.txt
  2. +5
    -4
      driver/others/profile.c
  3. +0
    -0
      interface/create

+ 1
- 0
Changelog.txt View File

@@ -18,6 +18,7 @@ common:
* Added openblas_set_num_threads for Fortran.
* Fixed #25 a wrong result of rotmg.
* Fixed a bug about detecting underscore prefix in c_check.
* Print the wall time (cycles) with enabling FUNCTION_PROFILE

x86/x86_64:
* Fixed #28 a wrong result of dsdot on x86_64.


+ 5
- 4
driver/others/profile.c View File

@@ -74,20 +74,21 @@ void gotoblas_profile_quit(void) {
if (cycles > 0) {

fprintf(stderr, "\n\t====== BLAS Profiling Result =======\n\n");
fprintf(stderr, " Function No. of Calls Time Consumption Efficiency Bytes/cycle\n");
fprintf(stderr, " Function No. of Calls Time Consumption Efficiency Bytes/cycle Wall Time(Cycles)\n");
for (i = 0; i < MAX_PROF_TABLE; i ++) {
if (function_profile_table[i].calls) {
#ifndef OS_WINDOWS
fprintf(stderr, "%-12s : %10Ld %8.2f%% %10.3f%% %8.2f\n",
fprintf(stderr, "%-12s : %10Ld %8.2f%% %10.3f%% %8.2f %Ld\n",
#else
fprintf(stderr, "%-12s : %10lld %8.2f%% %10.3f%% %8.2f\n",
fprintf(stderr, "%-12s : %10lld %8.2f%% %10.3f%% %8.2f %lld\n",
#endif
func_table[i],
function_profile_table[i].calls,
(double)function_profile_table[i].cycles / (double)cycles * 100.,
(double)function_profile_table[i].fops / (double)function_profile_table[i].tcycles * 100.,
(double)function_profile_table[i].area / (double)function_profile_table[i].cycles
(double)function_profile_table[i].area / (double)function_profile_table[i].cycles,
function_profile_table[i].cycles
);
}
}


+ 0
- 0
interface/create View File


Loading…
Cancel
Save