2013-01-29 16:24:31 -08:00
|
|
|
// Ceres Solver - A fast non-linear least squares minimizer
|
2015-03-17 22:30:16 -07:00
|
|
|
// Copyright 2015 Google Inc. All rights reserved.
|
|
|
|
|
// http://ceres-solver.org/
|
2013-01-29 16:24:31 -08:00
|
|
|
//
|
|
|
|
|
// 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 following disclaimer.
|
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
|
// * Neither the name of Google Inc. 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 THE COPYRIGHT OWNER 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.
|
|
|
|
|
//
|
|
|
|
|
// Author: sameeragarwal@google.com (Sameer Agarwal)
|
|
|
|
|
|
|
|
|
|
#ifndef CERES_INTERNAL_EXECUTION_SUMMARY_H_
|
|
|
|
|
#define CERES_INTERNAL_EXECUTION_SUMMARY_H_
|
|
|
|
|
|
|
|
|
|
#include <map>
|
2018-04-02 06:03:06 -07:00
|
|
|
#include <mutex>
|
2013-01-29 16:24:31 -08:00
|
|
|
#include <string>
|
2022-02-20 02:22:17 +01:00
|
|
|
#include <utility>
|
2013-01-29 16:24:31 -08:00
|
|
|
|
2022-02-07 23:43:19 +01:00
|
|
|
#include "ceres/internal/export.h"
|
2018-02-05 16:35:06 -08:00
|
|
|
#include "ceres/wall_time.h"
|
2013-01-29 16:24:31 -08:00
|
|
|
|
2022-04-21 17:41:10 -07:00
|
|
|
namespace ceres::internal {
|
2013-01-29 16:24:31 -08:00
|
|
|
|
2018-02-05 16:35:06 -08:00
|
|
|
struct CallStatistics {
|
2022-02-20 02:22:17 +01:00
|
|
|
CallStatistics() = default;
|
|
|
|
|
double time{0.};
|
|
|
|
|
int calls{0};
|
2018-02-05 16:35:06 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Struct used by various objects to report statistics about their
|
|
|
|
|
// execution.
|
2013-02-01 12:22:53 -08:00
|
|
|
class ExecutionSummary {
|
|
|
|
|
public:
|
2015-01-07 15:10:46 -08:00
|
|
|
void IncrementTimeBy(const std::string& name, const double value) {
|
2018-04-02 06:03:06 -07:00
|
|
|
std::lock_guard<std::mutex> l(mutex_);
|
2018-02-05 16:35:06 -08:00
|
|
|
CallStatistics& call_stats = statistics_[name];
|
|
|
|
|
call_stats.time += value;
|
|
|
|
|
++call_stats.calls;
|
2013-02-01 12:22:53 -08:00
|
|
|
}
|
|
|
|
|
|
2018-02-05 16:35:06 -08:00
|
|
|
const std::map<std::string, CallStatistics>& statistics() const {
|
|
|
|
|
return statistics_;
|
2013-02-01 12:22:53 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
2018-04-02 06:03:06 -07:00
|
|
|
std::mutex mutex_;
|
2018-02-05 16:35:06 -08:00
|
|
|
std::map<std::string, CallStatistics> statistics_;
|
2013-02-01 12:22:53 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class ScopedExecutionTimer {
|
|
|
|
|
public:
|
2022-02-20 02:22:17 +01:00
|
|
|
ScopedExecutionTimer(std::string name, ExecutionSummary* summary)
|
|
|
|
|
: start_time_(WallTimeInSeconds()),
|
|
|
|
|
name_(std::move(name)),
|
|
|
|
|
summary_(summary) {}
|
2013-02-01 12:22:53 -08:00
|
|
|
|
|
|
|
|
~ScopedExecutionTimer() {
|
|
|
|
|
summary_->IncrementTimeBy(name_, WallTimeInSeconds() - start_time_);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
const double start_time_;
|
2015-01-07 15:10:46 -08:00
|
|
|
const std::string name_;
|
2013-02-01 12:22:53 -08:00
|
|
|
ExecutionSummary* summary_;
|
2013-01-29 16:24:31 -08:00
|
|
|
};
|
|
|
|
|
|
2022-04-21 17:41:10 -07:00
|
|
|
} // namespace ceres::internal
|
2013-01-29 16:24:31 -08:00
|
|
|
|
|
|
|
|
#endif // CERES_INTERNAL_EXECUTION_SUMMARY_H_
|