1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
|
/*****************************************************************************
*
* Copyright (c) 2000 - 2017, Lawrence Livermore National Security, LLC
* Produced at the Lawrence Livermore National Laboratory
* LLNL-CODE-442911
* All rights reserved.
*
* This file is part of VisIt. For details, see https://visit.llnl.gov/. The
* full copyright notice is contained in the file COPYRIGHT located at the root
* of the VisIt distribution or at http://www.llnl.gov/visit/copyright.html.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the disclaimer below.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the disclaimer (as noted below) in the
* documentation and/or other materials provided with the distribution.
* - Neither the name of the LLNS/LLNL nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL LAWRENCE LIVERMORE NATIONAL SECURITY,
* LLC, THE U.S. DEPARTMENT OF ENERGY OR CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*
*****************************************************************************/
// ************************************************************************* //
// TimingsManager.C //
// ************************************************************************* //
#include <TimingsManager.h>
#include <snprintf.h>
#include <visit-config.h>
#include <map>
#include <float.h>
#include <visitstream.h>
#include <time.h>
#include <stdio.h>
#ifdef PARALLEL
#include <mpi.h>
#endif
#include <DebugStream.h>
#if defined(_WIN32)
#include <direct.h>
#else
#include <unistd.h>
#ifndef HAVE_FTIME_PROTOTYPE
extern "C" {
int ftime(struct timeb *);
}
#endif
#endif
TimingsManager *visitTimer = NULL;
static int firstTimer = -1;
static struct TIMEINFO initTimeInfo;
// ****************************************************************************
// Function:GetCurrentTimeInfo
//
// Programmer: Mark C. Miller
// Creation: April 20, 2004
//
// Modifications:
//
// Dave Pugmire, Wed Apr 15 08:36:39 EDT 2009
// Use gettimeofday for all non-windows.
//
// ****************************************************************************
static void
GetCurrentTimeInfo(struct TIMEINFO &timeInfo)
{
#if defined(_WIN32)
_ftime(&timeInfo);
#else
gettimeofday(&timeInfo, 0);
#endif
}
// ****************************************************************************
// Function: TimingsManager::TimeSinceLine
//
// Purpose: Computes time since last called with same key. When the key is
// specified as __FILE__ and __LINE__, this function is useful in computing
// the time since last arrival at a given source code line.
//
// Programmer: Mark C. Miller
// Creation: April 20, 2004
//
// Modifications:
//
// Mark C. Miller, Thu Nov 10 18:46:12 PST 2005
// Changed the name to better represent meaning of function.
//
// ****************************************************************************
double
TimingsManager::TimeSinceLine(const char *file, int line)
{
static std::map<std::string, TIMEINFO> keyMap;
// a way to re-initilize this static function's static member if
// ever needed
if ((file == 0) && (line < 0))
{
keyMap.clear();
return 0.0;
}
struct TIMEINFO currentTime;
GetCurrentTimeInfo(currentTime);
char key[256];
SNPRINTF(key, sizeof(key), "%s#%d", file, line);
if (keyMap.find(key) == keyMap.end())
{
keyMap[key] = currentTime;
return DBL_MAX;
}
else
{
struct TIMEINFO lastTime = keyMap[key];
keyMap[key] = currentTime;
return DiffTime(lastTime, currentTime);
}
}
// ****************************************************************************
// Function: TimingsManager::TimeSinceInit
//
// Purpose: Computes time since initialize was called.
//
// Programmer: Mark C. Miller
// Creation: November 11, 2005
//
// ****************************************************************************
double
TimingsManager::TimeSinceInit()
{
struct TIMEINFO currentTimeInfo;
GetCurrentTimeInfo(currentTimeInfo);
return DiffTime(initTimeInfo, currentTimeInfo);
}
// ****************************************************************************
// Method: TimingsManager constructor
//
// Programmer: Hank Childs
// Creation: March 10, 2001
//
// Modifications:
// Eric Brugger, Mon Nov 5 14:17:24 PST 2001
// I added the ability to enable and disable timings.
//
// Jeremy Meredith, Fri Oct 4 16:47:47 PDT 2002
// Added number of current timings.
//
// Mark C. Miller, Tue Aug 15 20:20:58 PDT 2006
// Eliminated numTimings
//
// Hank Childs, Sat Apr 11 23:41:27 CDT 2009
// Initialize neverOutput.
//
// ****************************************************************************
TimingsManager::TimingsManager()
{
filename = ".timings";
openedFile = false;
numCurrentTimings = 0;
enabled = false;
noForcedTiming = false;
withholdOutput = false;
neverOutput = false;
outputAllTimings = false;
}
// ****************************************************************************
// Method: TimingsManager::Initialize
//
// Purpose:
// A static method that initializes the visitTimer global object. It
// determines if the object should be of the MPI type of the UNIX type.
//
// Returns: A pointer to the visitTimer object. This is returned
// primarily so the global reference can be initialized.
//
// Arguments:
// fname The file name to use.
//
// Programmer: Hank Childs
// Creation: March 10, 2001
//
// Modifications:
// Brad Whitlock, Thu Mar 14 12:24:34 PDT 2002
// Renamed UnixTimingsManager to SystemTimingsManager.
//
// Hank Childs, Tue Mar 22 16:13:20 PST 2005
// Fix memory leak.
//
// Hank Childs, Mon Mar 28 09:42:06 PST 2005
// Do not initialize the visit timer with a static constructor, because
// we don't know the name of the process yet.
//
// Mark C. Miller, Fri Nov 11 09:45:42 PST 2005
// Added initialization of initTimeInfo
//
// Brad Whitlock, Thu Dec 15 09:52:05 PDT 2005
// I made the filename used for the timings include the path.
//
// Mark C. Miller, Wed Aug 2 19:58:44 PDT 2006
// Moved code to set up filename into SetFilename method
// ****************************************************************************
TimingsManager *
TimingsManager::Initialize(const char *fname)
{
if (visitTimer != NULL)
return visitTimer;
#ifdef PARALLEL
visitTimer = new MPITimingsManager;
#else
visitTimer = new SystemTimingsManager;
GetCurrentTimeInfo(initTimeInfo);
#endif
visitTimer->SetFilename(fname);
return visitTimer;
}
// ****************************************************************************
// Method: TimingsManager::Finalize
//
// Purpose: Terminates the TimingsManager
//
// Programmer: Mark C. Miller
// Creation: July 26, 2006
//
// Modifications:
//
// Hank Childs, Fri Feb 11 11:12:22 PST 2011
// Turn off WithholdOutputTimings. Also terminate timer for how long the
// process is running.
//
// ****************************************************************************
void
TimingsManager::Finalize()
{
if (visitTimer)
{
if (firstTimer >= 0)
visitTimer->StopTimer(firstTimer, "Total component run time");
visitTimer->StopAllUnstoppedTimers();
visitTimer->WithholdOutput(false);
visitTimer->DumpTimings();
delete visitTimer;
visitTimer = 0;
}
}
// ****************************************************************************
// Method: TimingsManager::SetFilename
//
// Purpose:
// Sets the filename that the timings manager should dump out to.
//
// Arguments:
// fname The new filename.
//
// Programmer: Hank Childs
// Creation: March 10, 2001
//
// Modifications:
//
// Mark C. Miller, Wed Aug 2 19:58:44 PDT 2006
// Moved bulk of code setting filename from constructor to here
//
// Kathleen Bonnell, Tue Oct 31 16:38:28 PST 2006
// Added different if-test for Windows platform.
//
// Cyrus Harrison, Fri Aug 8 13:25:54 PDT 2014
// Check return of getcwd().
//
// ****************************************************************************
void
TimingsManager::SetFilename(const std::string &fname)
{
if (fname == "")
return;
//
// Make sure that the filename includes the whole path so all .timings
// files will be written to the right directory.
//
#if defined(_WIN32)
if (!(fname[0] == 'C' && fname[1] == ':'))
#else
if (fname[0] != VISIT_SLASH_CHAR)
#endif
{
char currentDir[1024];
#if defined(_WIN32)
char* res = _getcwd(currentDir,1023);
#else
char* res = getcwd(currentDir,1023);
#endif
if(res == NULL)
{
debug1 << "failed to get current working directory via getcwd()"
<< std::endl;
}
currentDir[1023]='\0';
std::string filenameTmp(currentDir);
if(filenameTmp[filenameTmp.size()-1] != VISIT_SLASH_CHAR)
filenameTmp += VISIT_SLASH_STRING;
filename = filenameTmp + fname + ".timings";
}
else
{
filename = fname + ".timings";
}
}
// ****************************************************************************
// Method: TimingsManager::Enable
//
// Purpose:
// Enables the timing manager.
//
// Programmer: Eric Brugger
// Creation: November 5, 2001
//
// Modifications:
//
// Hank Childs, Fri Feb 11 11:12:22 PST 2011
// Initialize a timer that can keep track of how long the process is
// running.
//
// ****************************************************************************
void
TimingsManager::Enable(void)
{
enabled = true;
if (firstTimer < 0)
firstTimer = visitTimer->StartTimer();
}
// ****************************************************************************
// Method: TimingsManager::Disable
//
// Purpose:
// Disables the timing manager.
//
// Programmer: Eric Brugger
// Creation: November 5, 2001
//
// ****************************************************************************
void
TimingsManager::Disable(void)
{
enabled = false;
}
// ****************************************************************************
// Method: TimingsManager::NoForcedTiming
//
// Purpose:
// Disables the timing manager for real. If the timer is just disabled by
// calling Disable then it can still be forced to accumulate timing data
// bloating our memory use which is undesirable in long runs where we
// won't use the timing data anyway.
//
// Programmer: Burlen Loring
// Creation: Tue Apr 29 15:27:49 PDT 2014
//
// ****************************************************************************
void
TimingsManager::NoForcedTiming(bool v)
{
noForcedTiming = v;
}
// ****************************************************************************
// Method: TimingsManager::WithholdOutput
//
// Purpose:
// Tells the timings manager not to output the timings until
// OutputAllTimings is called.
//
// Programmer: Hank Childs
// Creation: March 27, 2005
//
// ****************************************************************************
void
TimingsManager::WithholdOutput(bool v)
{
withholdOutput = v;
}
// ****************************************************************************
// Method: TimingsManager::NeverOutput
//
// Purpose:
// Tells the timings manager to never output the timings. This allows
// it to not save strings, which helps with memory footprint when there
// are a huge number of pipeline updates.
//
// Programmer: Hank Childs
// Creation: April 11, 2009
//
// ****************************************************************************
void
TimingsManager::NeverOutput(bool v)
{
neverOutput = v;
}
// ****************************************************************************
// Method: TimingsManager::OutputAllTimings
//
// Purpose:
// Tells the timings manager to truly output all the timings, even if
// we are withholding them.
//
// Programmer: Hank Childs
// Creation: March 27, 2005
//
// ****************************************************************************
void
TimingsManager::OutputAllTimings(void)
{
outputAllTimings = true;
DumpTimings();
outputAllTimings = false;
}
// ****************************************************************************
// Method: TimingsManager::FindFirstUnusedEntry
//
// Purpose:
// Looks through the "usedEntry" array to find the first entry that can
// be used.
//
// Returns: the index of the first unused entry, <0 if a new entry has to
// be created.
//
// Programmer: Hank Childs
// Creation: September 14, 2007
//
// ****************************************************************************
int
TimingsManager::FindFirstUnusedEntry(void)
{
for (unsigned int i = 0 ; i < usedEntry.size() ; i++)
if (!usedEntry[i])
return i;
return -1;
}
// ****************************************************************************
// Method: TimingsManager::StartTimer
//
// Purpose:
// Starts the timer for a specific symbol.
//
// Returns: The index of the timing started by this function call.
// It returns -1 if timings are disabled.
//
// Programmer: Hank Childs
// Creation: March 10, 2001
//
// Modifications:
// Eric Brugger, Mon Nov 5 14:17:24 PST 2001
// I added the ability to enable and disable timings.
//
// Jeremy Meredith, Fri Oct 4 16:47:47 PDT 2002
// Added number of current timings.
//
// Mark C. Miller, Thu Nov 3 16:59:41 PST 2005
// Added ability to force acquisition of timing info even if we're not
// logging timings to files
//
// Mark C. Miller, Tue Aug 15 20:20:58 PDT 2006
// Eliminated numTimings. Made code a little more robust.
//
// Hank Childs, Fri Sep 14 13:01:08 PDT 2007
// Change handling of values so that returned values will be valid
// indefinitely.
//
// ****************************************************************************
int
TimingsManager::StartTimer(bool forced)
{
if (!enabled && (!forced || noForcedTiming))
return -1;
numCurrentTimings += 1;
int rv = PlatformStartTimer();
if ((size_t)rv == usedEntry.size())
{
usedEntry.push_back(true);
}
else if ((size_t)rv > usedEntry.size())
{
debug1 << "TimingsManager::StartTimer: Cannot start timer. "
<< "Returning -1 as if timing was disabled." << std::endl;
return -1;
}
else
{
usedEntry[rv] = true;
}
return rv;
}
// ****************************************************************************
// Method: TimingsManager::StopTimer
//
// Purpose:
// Stops the timer for the indicated index and dumps it to a file.
//
// Arguments:
// index The index of the timer.
// summary A string that summarizes what we are timing.
//
// Programmer: Hank Childs
// Creation: March 10, 2001
//
// Modifications:
// Eric Brugger, Mon Nov 5 14:17:24 PST 2001
// I added the ability to enable and disable timings.
//
// Brad Whitlock, Tue Apr 16 16:56:48 PST 2002
// Changed code so it behaves using MSVC++.
//
// Brad Whitlock, Fri Sep 20 16:13:51 PST 2002
// I made it return the time.
//
// Jeremy Meredith, Fri Oct 4 16:47:47 PDT 2002
// Added number of current timings and indentation based on it.
//
// Mark C. Miller, Wed Nov 2 09:07:05 PST 2005
// Added code to force return of timing info even if logging is not enabled
//
// Mark C. Miller, Tue Aug 15 20:20:58 PDT 2006
// Eliminated numTimings. Moved error message to PlatformStopTimer. Made
// a little more robust.
//
// Hank Childs, Fri Sep 14 13:01:08 PDT 2007
// Change handling of values so that the handles given to calling functions
// will be valid indefinitely.
//
// Hank Childs, Mon Dec 1 15:03:50 PST 2008
// Make sure we use a SNPRINTF instead of a sprintf, so we don't blow the
// stack.
//
// Hank Childs, Sat Apr 11 23:41:27 CDT 2009
// Don't save the outcomes if neverOutput is true.
//
// ****************************************************************************
double
TimingsManager::StopTimer(int index, const std::string &summary, bool forced)
{
double t = 0.;
if (enabled || (forced && !noForcedTiming))
{
if (index >= 0 && (size_t)index < usedEntry.size())
usedEntry[index] = false;
t = PlatformStopTimer(index);
if (!neverOutput)
times.push_back(t);
numCurrentTimings -= 1;
if (enabled && !neverOutput)
{
char indented[2048];
SNPRINTF(indented, 2048, "%*s%s", 3*numCurrentTimings,
" ", summary.c_str());
summaries.push_back(indented);
}
}
return t;
}
// ****************************************************************************
// Method: TimingsManager::LookupTimer
//
// Purpose:
// Lookup timer value.
//
// Programmer: Dave Pugmire
// Creation: Feb 23, 2009
//
// ****************************************************************************
double
TimingsManager::LookupTimer(const std::string &nm)
{
double val = 0.0;
if (enabled)
{
size_t numT = times.size();
debug1<<"numT= "<<numT<<endl;
for (size_t i = 0 ; i < numT ; i++)
{
debug1<<i<<": "<<summaries[i]<<endl;
if (summaries[i].find(nm,0) != std::string::npos)
{
val += times[i];
}
}
}
return val;
}
// ****************************************************************************
// Method: TimingsManager::DumpTimings
//
// Purpose:
// Dumps out all of the completed timings since the last dump.
//
// Programmer: Hank Childs
// Creation: March 10, 2001
//
// Modifications:
// Eric Brugger, Mon Nov 5 14:17:24 PST 2001
// I added the ability to enable and disable timings.
//
// Hank Childs, Sun Mar 27 13:38:03 PST 2005
// Do not output if we are withholding timings.
//
// Mark C. Miller, Wed Aug 2 19:58:44 PDT 2006
// Added test for emtpy filename. Added missing call to close ofile
//
// Dave Pugmire, Wed Apr 15 08:36:39 EDT 2009
// Force fixed mode output for floating point numbers.
//
// Hank Childs, Fri May 8 15:19:23 PDT 2009
// Add support for "neverOutput".
//
// ****************************************************************************
void
TimingsManager::DumpTimings(void)
{
//
// Return if timings disabled.
//
if (!enabled)
return;
if (withholdOutput && !outputAllTimings)
return;
if (neverOutput)
return;
if (filename == "")
{
debug1 << "Attempted to DumpTimings without setting name of file" << endl;
return;
}
ofstream ofile;
if (!openedFile)
{
//
// We haven't opened up the file before, so blow it away from previous
// times the program was run.
//
ofile.open(filename.c_str());
openedFile = true;
}
else
{
//
// We have already dumped the timings once while running this program,
// so just append to that file.
//
ofile.open(filename.c_str(), ios::app);
}
if (ofile.fail())
{
debug1 << "Unable to open file " << filename.c_str()
<< " to dump timings information." << endl;
}
else
{
ofile<<std::fixed;
DumpTimings(ofile);
ofile.close();
}
}
// ****************************************************************************
// Method: TimingsManager::StopAllUnstoppedTimers
//
// Purpose: stops all the timers that have not already been stopped
//
// Programmer: Mark C. Miller
// Creation: August 4, 2006
//
// Modifications:
//
// Hank Childs, Fri Sep 14 13:01:08 PDT 2007
// Changed to reflect new handling of values.
//
// Hank Childs, Thu Feb 3 07:29:24 PST 2011
// Change the string from "Unknown", since it was confusing folks looking
// at the files.
//
// ****************************************************************************
void
TimingsManager::StopAllUnstoppedTimers()
{
//
// Stop all un-stopped timers
//
for (int i = 0 ; i < visitTimer->GetNValues(); i++)
if (usedEntry[i])
visitTimer->StopTimer(i, "A StartTimer call was unmatched! Elapsed time since StartTimer: ");
}
// ****************************************************************************
// Method: TimingsManager::DumpTimings
//
// Purpose:
// Dumps the timings to an ostream.
//
// Programmer: Hank Childs
// Creation: March 10, 2001
//
// Modifications:
// Eric Brugger, Mon Nov 5 14:17:24 PST 2001
// I added the ability to enable and disable timings.
//
// Hank Childs, Sun Mar 27 13:38:03 PST 2005
// Do not output if we are withholding timings.
//
// Mark C. Miller, Thu Aug 3 13:33:20 PDT 2006
// Added call to ClearValues()
//
// Hank Childs, Fri Sep 14 12:44:55 PDT 2007
// Removed the call to ClearValues. Handles are returned outside this
// module. Those handles were indices into "values". Calling ClearValues
// made those handles "dangling pointers". So the timing information
// was frequently wrong.
//
// Hank Childs, Fri May 8 15:19:23 PDT 2009
// Add support for "neverOutput".
//
// ****************************************************************************
void
TimingsManager::DumpTimings(ostream &out)
{
//
// Return if timings disabled.
//
if (!enabled)
{
return;
}
if (withholdOutput && !outputAllTimings)
return;
if (neverOutput)
return;
size_t numT = times.size();
for (size_t i = 0 ; i < numT ; i++)
{
out << "Timing for " << summaries[i].c_str() << " took " << times[i] << endl;
}
//
// The next time we dump timings, don't use these values.
//
times.clear();
summaries.clear();
}
// ****************************************************************************
// Method: TimingsManager::DiffTime
//
// Purpose:
// Compute the difference in time from platform specific time structures
//
// Returns: The elapsed time in seconds as a double.
//
// Programmer: Hank Childs
// Creation: March 10, 2001
//
// Modifications:
//
// Mark C. Miller, Tue Apr 20 21:12:05 PDT 2004
// Relocated from PlatformStopTimer
//
// Dave Pugmire, Wed Apr 15 08:36:39 EDT 2009
// Use gettimeofday for all non-windows.
//
// ****************************************************************************
double
TimingsManager::DiffTime(const struct TIMEINFO &startTime,
const struct TIMEINFO &endTime)
{
#if defined(_WIN32)
//
// Figure out how many milliseconds between start and end times
//
int ms = (int) difftime(endTime.time, startTime.time);
if (ms == 0)
{
ms = endTime.millitm - startTime.millitm;
}
else
{
ms = ((ms - 1) * 1000);
ms += (1000 - startTime.millitm) + endTime.millitm;
}
return (ms/1000.);
#else
double seconds = double(endTime.tv_sec - startTime.tv_sec) +
double(endTime.tv_usec - startTime.tv_usec) / 1000000.;
return seconds;
#endif
}
// ****************************************************************************
// Method: SystemTimingsManager::PlatformStartTimer
//
// Purpose:
// Does a "start timer" for this platform -- unix.
//
// Programmer: Hank Childs
// Creation: March 10, 2001
//
// Modifications:
// Hank Childs, Tue Apr 10 18:08:54 PDT 2001
// Re-implemented to get sub-second precision.
//
// Brad Whitlock, Thu Mar 14 12:24:23 PST 2002
// Made it work on Windows.
//
// Brad Whitlock, Mon May 19 12:37:44 PDT 2003
// I made it work on MacOS X.
//
// Mark C. Miller Wed Apr 21 12:42:13 PDT 2004
// I made it use GetCurrentTime
//
// Mark C. Miller, Tue Aug 15 20:20:58 PDT 2006
// Made it return current length of values array
//
// Hank Childs, Fri Sep 14 13:01:08 PDT 2007
// Change the way the index is obtained, so that it will be valid
// indefinitely.
//
// ****************************************************************************
int
SystemTimingsManager::PlatformStartTimer(void)
{
struct TIMEINFO t;
GetCurrentTimeInfo(t);
int idx = FindFirstUnusedEntry();
if (idx >= 0)
values[idx] = t;
else
{
values.push_back(t);
idx = values.size()-1;
}
return idx;
}
// ****************************************************************************
// Method: SystemTimingsManager::PlatformStopTimer
//
// Purpose:
// Does a "stop timer" for this platform -- unix. Also determines what
// the elapsed time is in seconds and returns that as a double.
//
// Arguments:
// index The index of the timing. This has already been checked
// for validity.
//
// Returns: The elapsed time in seconds as a double.
//
// Programmer: Hank Childs
// Creation: March 10, 2001
//
// Modifications:
// Hank Childs, Tue Apr 10 18:08:54 PDT 2001
// Re-implemented to get sub-second precision.
//
// Brad Whitlock, Thu Mar 14 12:24:23 PST 2002
// Added a Windows implementation.
//
// Brad Whitlock, Mon May 19 12:37:58 PDT 2003
// I made it work on MacOS X.
//
// Mark C. Miller, Tue Apr 20 21:12:05 PDT 2004
// Moved bulk of implementation to DiffTime so code could be shared
// with TOATimer
//
// Mark C. Miller, Tue Aug 15 20:20:58 PDT 2006
// Moved debug message from StopTimer to here
//
// Kathleen Bonnell, Tue Oct 31 16:38:28 PST 2006
// Changed if-test since .size() returns UNSIGNED_INT on Windows platform,
// and if size is zero, subtracting 1 yields incorrect results.
//
// ****************************************************************************
double
SystemTimingsManager::PlatformStopTimer(int index)
{
if (index < 0 || (size_t)index >= values.size())
{
debug1 << "Invalid timing index (" << index << ") specified." << endl;
return 0.0;
}
struct TIMEINFO endTime;
GetCurrentTimeInfo(endTime);
return DiffTime(values[index], endTime);
}
// ****************************************************************************
// Method: MPITimingsManager::PlatformStartTimer
//
// Purpose:
// Does a "start timer" for a platform that supports MPI.
//
// Programmer: Hank Childs
// Creation: March 10, 2001
//
// Modifications:
//
// Mark C. Miller, Tue Aug 15 20:20:58 PDT 2006
// Made it return current length of values array
//
// Hank Childs, Fri Sep 14 13:01:08 PDT 2007
// Change the way the index is obtained, so that it will be valid
// indefinitely.
//
// ****************************************************************************
int
MPITimingsManager::PlatformStartTimer(void)
{
double t = 0.;
#ifdef PARALLEL
t = MPI_Wtime();
#endif
int idx = FindFirstUnusedEntry();
if (idx >= 0)
values[idx] = t;
else
{
values.push_back(t);
idx = values.size()-1;
}
return idx;
}
// ****************************************************************************
// Method: MPITimingsManager::PlatformStopTimer
//
// Purpose:
// Does a "stop timer" for this platforms that support MPI. Also
// determines what the elapsed time is in seconds and returns that as a
// double.
//
// Arguments:
// index The index of the timing. This has already been checked
// for validity.
//
// Returns: The elapsed time in seconds as a double.
//
// Programmer: Hank Childs
// Creation: March 10, 2001
//
// Modifications:
//
// Mark C. Miller, Tue Aug 15 20:20:58 PDT 2006
// Moved debug message from StopTimer to here
//
// Kathleen Bonnell, Tue Oct 31 16:38:28 PST 2006
// Changed if-test since .size() returns UNSIGNED_INT on Windows platform,
// and if size is zero, subtracting 1 yields incorrect results.
//
// ****************************************************************************
double
MPITimingsManager::PlatformStopTimer(int index)
{
if (index < 0 || (size_t)index >= values.size())
{
debug1 << "Invalid timing index (" << index << ") specified." << endl;
return 0.0;
}
double t = 0.;
double tick = 1.;
#ifdef PARALLEL
t = MPI_Wtime();
// It is unclear to me why a tick is off by a factor of 10^6.
tick = MPI_Wtick()*10e5;
#endif
return (t - values[index])*tick;
}
|