kusano 2b45e8
/*********************************************************************/
kusano 2b45e8
/* Copyright 2009, 2010 The University of Texas at Austin.           */
kusano 2b45e8
/* All rights reserved.                                              */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/* Redistribution and use in source and binary forms, with or        */
kusano 2b45e8
/* without modification, are permitted provided that the following   */
kusano 2b45e8
/* conditions are met:                                               */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*   1. Redistributions of source code must retain the above         */
kusano 2b45e8
/*      copyright notice, this list of conditions and the following  */
kusano 2b45e8
/*      disclaimer.                                                  */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*   2. Redistributions in binary form must reproduce the above      */
kusano 2b45e8
/*      copyright notice, this list of conditions and the following  */
kusano 2b45e8
/*      disclaimer in the documentation and/or other materials       */
kusano 2b45e8
/*      provided with the distribution.                              */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/*    THIS  SOFTWARE IS PROVIDED  BY THE  UNIVERSITY OF  TEXAS AT    */
kusano 2b45e8
/*    AUSTIN  ``AS IS''  AND ANY  EXPRESS OR  IMPLIED WARRANTIES,    */
kusano 2b45e8
/*    INCLUDING, BUT  NOT LIMITED  TO, THE IMPLIED  WARRANTIES OF    */
kusano 2b45e8
/*    MERCHANTABILITY  AND FITNESS FOR  A PARTICULAR  PURPOSE ARE    */
kusano 2b45e8
/*    DISCLAIMED.  IN  NO EVENT SHALL THE UNIVERSITY  OF TEXAS AT    */
kusano 2b45e8
/*    AUSTIN OR CONTRIBUTORS BE  LIABLE FOR ANY DIRECT, INDIRECT,    */
kusano 2b45e8
/*    INCIDENTAL,  SPECIAL, EXEMPLARY,  OR  CONSEQUENTIAL DAMAGES    */
kusano 2b45e8
/*    (INCLUDING, BUT  NOT LIMITED TO,  PROCUREMENT OF SUBSTITUTE    */
kusano 2b45e8
/*    GOODS  OR  SERVICES; LOSS  OF  USE,  DATA,  OR PROFITS;  OR    */
kusano 2b45e8
/*    BUSINESS INTERRUPTION) HOWEVER CAUSED  AND ON ANY THEORY OF    */
kusano 2b45e8
/*    LIABILITY, WHETHER  IN CONTRACT, STRICT  LIABILITY, OR TORT    */
kusano 2b45e8
/*    (INCLUDING NEGLIGENCE OR OTHERWISE)  ARISING IN ANY WAY OUT    */
kusano 2b45e8
/*    OF  THE  USE OF  THIS  SOFTWARE,  EVEN  IF ADVISED  OF  THE    */
kusano 2b45e8
/*    POSSIBILITY OF SUCH DAMAGE.                                    */
kusano 2b45e8
/*                                                                   */
kusano 2b45e8
/* The views and conclusions contained in the software and           */
kusano 2b45e8
/* documentation are those of the authors and should not be          */
kusano 2b45e8
/* interpreted as representing official policies, either expressed   */
kusano 2b45e8
/* or implied, of The University of Texas at Austin.                 */
kusano 2b45e8
/*********************************************************************/
kusano 2b45e8
kusano 2b45e8
#include "common.h"
kusano 2b45e8
#include <signal.h></signal.h>
kusano 2b45e8
#include <strings.h></strings.h>
kusano 2b45e8
#define USE_FUNCTABLE
kusano 2b45e8
#include "../../interface/functable.h"
kusano 2b45e8
kusano 2b45e8
func_profile_t function_profile_table[MAX_PROF_TABLE];
kusano 2b45e8
kusano 2b45e8
int gotoblas_profile = 1;
kusano 2b45e8
kusano 2b45e8
static struct sigaction sa, ig;
kusano 2b45e8
kusano 2b45e8
void gotoblas_profile_quit(void) {
kusano 2b45e8
kusano 2b45e8
  int i;
kusano 2b45e8
  unsigned long long calls, fops, cycles, tcycles, area;
kusano 2b45e8
kusano 2b45e8
  sigaction(SIGPROF, &ig, NULL);
kusano 2b45e8
kusano 2b45e8
  calls   = 0;
kusano 2b45e8
  fops    = 0;
kusano 2b45e8
  cycles  = 0;
kusano 2b45e8
  tcycles = 0;
kusano 2b45e8
  area    = 0;
kusano 2b45e8
kusano 2b45e8
  for (i = 0; i < MAX_PROF_TABLE; i ++) {
kusano 2b45e8
    if (function_profile_table[i].calls) {
kusano 2b45e8
      calls   += function_profile_table[i].calls;
kusano 2b45e8
      cycles  += function_profile_table[i].cycles;
kusano 2b45e8
      tcycles += function_profile_table[i].tcycles;
kusano 2b45e8
      area    += function_profile_table[i].area;
kusano 2b45e8
      fops    += function_profile_table[i].fops;
kusano 2b45e8
    }
kusano 2b45e8
  }
kusano 2b45e8
kusano 2b45e8
  if (cycles > 0) {
kusano 2b45e8
kusano 2b45e8
    fprintf(stderr, "\n\t====== BLAS Profiling Result =======\n\n");
kusano 2b45e8
    fprintf(stderr, "  Function      No. of Calls   Time Consumption   Efficiency  Bytes/cycle  Wall Time(Cycles)\n");
kusano 2b45e8
    
kusano 2b45e8
    for (i = 0; i < MAX_PROF_TABLE; i ++) {
kusano 2b45e8
      if (function_profile_table[i].calls) {
kusano 2b45e8
#ifndef OS_WINDOWS
kusano 2b45e8
	fprintf(stderr, "%-12s  : %10Ld        %8.2f%%      %10.3f%%  %8.2f   %Ld\n", 
kusano 2b45e8
#else
kusano 2b45e8
	fprintf(stderr, "%-12s  : %10lld        %8.2f%%      %10.3f%%  %8.2f   %lld\n", 
kusano 2b45e8
#endif
kusano 2b45e8
		func_table[i],
kusano 2b45e8
		function_profile_table[i].calls,
kusano 2b45e8
		(double)function_profile_table[i].cycles  / (double)cycles * 100.,
kusano 2b45e8
		(double)function_profile_table[i].fops    / (double)function_profile_table[i].tcycles * 100.,
kusano 2b45e8
			(double)function_profile_table[i].area    / (double)function_profile_table[i].cycles,
kusano 2b45e8
			function_profile_table[i].cycles
kusano 2b45e8
		);
kusano 2b45e8
      }
kusano 2b45e8
    }
kusano 2b45e8
kusano 2b45e8
    fprintf(stderr, " --------------------------------------------------------------------\n");
kusano 2b45e8
    
kusano 2b45e8
#ifndef OS_WINDOWS
kusano 2b45e8
	fprintf(stderr, "%-12s  : %10Ld                       %10.3f%%  %8.2f\n", 
kusano 2b45e8
#else
kusano 2b45e8
	fprintf(stderr, "%-12s  : %10lld                       %10.3f%%  %8.2f\n", 
kusano 2b45e8
#endif
kusano 2b45e8
		"Total",
kusano 2b45e8
		 calls,
kusano 2b45e8
		(double)fops    / (double)tcycles * 100.,
kusano 2b45e8
		(double)area    / (double)cycles);
kusano 2b45e8
  }
kusano 2b45e8
kusano 2b45e8
  sigaction(SIGPROF, &sa, NULL);
kusano 2b45e8
}
kusano 2b45e8
kusano 2b45e8
void gotoblas_profile_clear(void) {
kusano 2b45e8
kusano 2b45e8
  int i;
kusano 2b45e8
kusano 2b45e8
  for (i = 0; i < MAX_PROF_TABLE; i ++) {
kusano 2b45e8
    function_profile_table[i].calls  = 0;
kusano 2b45e8
    function_profile_table[i].cycles = 0;
kusano 2b45e8
    function_profile_table[i].tcycles = 0;
kusano 2b45e8
    function_profile_table[i].area = 0;
kusano 2b45e8
    function_profile_table[i].fops = 0;
kusano 2b45e8
  }
kusano 2b45e8
kusano 2b45e8
}
kusano 2b45e8
kusano 2b45e8
void gotoblas_profile_init(void) {
kusano 2b45e8
kusano 2b45e8
  gotoblas_profile_clear();
kusano 2b45e8
kusano 2b45e8
  bzero(&sa, sizeof(struct sigaction));
kusano 2b45e8
  sa.sa_handler = (void *)gotoblas_profile_quit;
kusano 2b45e8
  sa.sa_flags  = SA_NODEFER | SA_RESETHAND;
kusano 2b45e8
kusano 2b45e8
  bzero(&ig, sizeof(struct sigaction));
kusano 2b45e8
  ig.sa_handler = SIG_IGN;
kusano 2b45e8
  ig.sa_flags |= SA_NODEFER | SA_RESETHAND;
kusano 2b45e8
kusano 2b45e8
  sigaction(SIGPROF, &sa, NULL);
kusano 2b45e8
kusano 2b45e8
}