summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--openmp/runtime/src/kmp_stats_timing.cpp24
-rw-r--r--openmp/runtime/src/kmp_stats_timing.h23
2 files changed, 0 insertions, 47 deletions
diff --git a/openmp/runtime/src/kmp_stats_timing.cpp b/openmp/runtime/src/kmp_stats_timing.cpp
index 84ef70cc08f..62cecc8926f 100644
--- a/openmp/runtime/src/kmp_stats_timing.cpp
+++ b/openmp/runtime/src/kmp_stats_timing.cpp
@@ -142,27 +142,3 @@ std::string formatSI(double interval, int width, char unit)
return os.str();
}
-
-tsc_tick_count::tsc_interval_t computeLastInLastOutInterval(timePair * times, int nTimes)
-{
- timePair lastTimes = times[0];
- tsc_tick_count * startp = lastTimes.get_startp();
- tsc_tick_count * endp = lastTimes.get_endp();
-
- for (int i=1; i<nTimes; i++)
- {
- (*startp) = startp->later(times[i].get_start());
- (*endp) = endp->later (times[i].get_end());
- }
-
- return lastTimes.duration();
-}
-
-std::string timePair::format() const
-{
- std::ostringstream oss;
-
- oss << start.getValue() << ":" << end.getValue() << " = " << (end-start).getValue();
-
- return oss.str();
-}
diff --git a/openmp/runtime/src/kmp_stats_timing.h b/openmp/runtime/src/kmp_stats_timing.h
index c65a444cac0..0ce0da99a5e 100644
--- a/openmp/runtime/src/kmp_stats_timing.h
+++ b/openmp/runtime/src/kmp_stats_timing.h
@@ -93,27 +93,4 @@ inline std::string formatTicks(double interval, int width)
return formatSI(interval, width, 'T');
}
-class timePair
-{
- tsc_tick_count KMP_ALIGN_CACHE start;
- tsc_tick_count end;
-
-public:
- timePair() : start(-std::numeric_limits<int64_t>::max()), end(-std::numeric_limits<int64_t>::max()) {}
- tsc_tick_count get_start() const { return start; }
- tsc_tick_count get_end() const { return end; }
- tsc_tick_count * get_startp() { return &start; }
- tsc_tick_count * get_endp() { return &end; }
-
- void markStart() { start = tsc_tick_count::now(); }
- void markEnd() { end = tsc_tick_count::now(); }
- void set_start(tsc_tick_count s) { start = s; }
- void set_end (tsc_tick_count e) { end = e; }
-
- tsc_tick_count::tsc_interval_t duration() const { return end-start; }
- std::string format() const;
-
-};
-
-extern tsc_tick_count::tsc_interval_t computeLastInLastOutInterval(timePair * times, int nTimes);
#endif // KMP_STATS_TIMING_H
OpenPOWER on IntegriCloud