• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright 2016 The TensorFlow Authors All Rights Reserved.
2 
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6 
7     http://www.apache.org/licenses/LICENSE-2.0
8 
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14 ==============================================================================*/
15 #ifndef TENSORFLOW_CORE_PROFILER_INTERNAL_RUNTIME_EAGER_PROFILER_H_
16 #define TENSORFLOW_CORE_PROFILER_INTERNAL_RUNTIME_EAGER_PROFILER_H_
17 
18 #include "tensorflow/core/common_runtime/eager/context.h"
19 #include "tensorflow/core/profiler/internal/profiler_interface.h"
20 
21 namespace tensorflow {
22 namespace profiler {
23 namespace runtime {
24 
25 class TraceCollector : public RunMetadataListener {
26  public:
27   TraceCollector(EagerContext* const eager_context);
28 
29   void BeforeClearRunMetadata() override;
30 
31   Status CollectData(RunMetadata* run_metadata);
32 
33  private:
34   RunMetadata run_metadata_;
35   EagerContext* const context_;
36 };
37 
38 class EagerProfiler : public ProfilerInterface {
39  public:
40   static std::unique_ptr<ProfilerInterface> Create(
41       EagerContext* const eager_context);
42 
43   Status Start() override;
44 
45   Status Stop() override;
46 
47   Status CollectData(RunMetadata* run_metadata) override;
48 
49  private:
50   EagerProfiler(EagerContext* const eager_context);
51 
52   // Trace is neither copyable nor movable.
53   EagerProfiler(const EagerProfiler&) = delete;
54   EagerProfiler& operator=(const EagerProfiler&) = delete;
55 
56   EagerContext* const context_;
57   TraceCollector collector_;
58 };
59 
60 }  // namespace runtime
61 }  // namespace profiler
62 }  // namespace tensorflow
63 
64 #endif  // TENSORFLOW_CORE_PROFILER_INTERNAL_RUNTIME_EAGER_PROFILER_H_
65