wall_time.cc 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. // Ceres Solver - A fast non-linear least squares minimizer
  2. // Copyright 2023 Google Inc. All rights reserved.
  3. // http://ceres-solver.org/
  4. //
  5. // Redistribution and use in source and binary forms, with or without
  6. // modification, are permitted provided that the following conditions are met:
  7. //
  8. // * Redistributions of source code must retain the above copyright notice,
  9. // this list of conditions and the following disclaimer.
  10. // * Redistributions in binary form must reproduce the above copyright notice,
  11. // this list of conditions and the following disclaimer in the documentation
  12. // and/or other materials provided with the distribution.
  13. // * Neither the name of Google Inc. nor the names of its contributors may be
  14. // used to endorse or promote products derived from this software without
  15. // specific prior written permission.
  16. //
  17. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  18. // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19. // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20. // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  21. // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  22. // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  23. // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  24. // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  25. // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  26. // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  27. // POSSIBILITY OF SUCH DAMAGE.
  28. //
  29. // Author: strandmark@google.com (Petter Strandmark)
  30. #include "ceres/wall_time.h"
  31. #include <ctime>
  32. #include "ceres/internal/config.h"
  33. #ifdef _WIN32
  34. #include <windows.h>
  35. #else
  36. #include <sys/time.h>
  37. #endif
  38. namespace ceres::internal {
  39. double WallTimeInSeconds() {
  40. #ifdef _WIN32
  41. LARGE_INTEGER count;
  42. LARGE_INTEGER frequency;
  43. QueryPerformanceCounter(&count);
  44. QueryPerformanceFrequency(&frequency);
  45. return static_cast<double>(count.QuadPart) /
  46. static_cast<double>(frequency.QuadPart);
  47. #else
  48. timeval time_val;
  49. gettimeofday(&time_val, nullptr);
  50. return (time_val.tv_sec + time_val.tv_usec * 1e-6);
  51. #endif
  52. }
  53. EventLogger::EventLogger(const std::string& logger_name) {
  54. if (!VLOG_IS_ON(3)) {
  55. return;
  56. }
  57. start_time_ = WallTimeInSeconds();
  58. last_event_time_ = start_time_;
  59. events_ = StringPrintf(
  60. "\n%s\n Delta Cumulative\n",
  61. logger_name.c_str());
  62. }
  63. EventLogger::~EventLogger() {
  64. if (!VLOG_IS_ON(3)) {
  65. return;
  66. }
  67. AddEvent("Total");
  68. VLOG(3) << "\n" << events_ << "\n";
  69. }
  70. void EventLogger::AddEvent(const std::string& event_name) {
  71. if (!VLOG_IS_ON(3)) {
  72. return;
  73. }
  74. const double current_time = WallTimeInSeconds();
  75. const double relative_time_delta = current_time - last_event_time_;
  76. const double absolute_time_delta = current_time - start_time_;
  77. last_event_time_ = current_time;
  78. StringAppendF(&events_,
  79. " %30s : %10.5f %10.5f\n",
  80. event_name.c_str(),
  81. relative_time_delta,
  82. absolute_time_delta);
  83. }
  84. } // namespace ceres::internal