Home | History | Annotate | Download | only in profiler

Lines Matching refs:profiler

15 """profiler python module provides APIs to profile TensorFlow models.
22 from tensorflow.core.profiler.tfprof_log_pb2 import OpLogProto
23 from tensorflow.core.profiler.tfprof_output_pb2 import AdviceProto
24 from tensorflow.core.profiler.tfprof_output_pb2 import GraphNodeProto
25 from tensorflow.core.profiler.tfprof_output_pb2 import MultiGraphNodeProto
27 from tensorflow.python.profiler.model_analyzer import advise
28 from tensorflow.python.profiler.model_analyzer import profile
29 from tensorflow.python.profiler.model_analyzer import Profiler
30 from tensorflow.python.profiler.option_builder import ProfileOptionBuilder
31 from tensorflow.python.profiler.tfprof_logger import write_op_log
38 'Profiler',
53 tf_export('profiler.GraphNodeProto')(GraphNodeProto)
54 tf_export('profiler.MultiGraphNodeProto')(MultiGraphNodeProto)
55 tf_export('profiler.AdviceProto')(AdviceProto)
56 tf_export('profiler.OpLogProto')(OpLogProto)
59 Profiler,