aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/cc
diff options
context:
space:
mode:
authorGravatar MandarJKulkarni <33712629+MandarJKulkarni@users.noreply.github.com>2018-03-01 00:05:09 +0530
committerGravatar Appledore <weikqin@gmail.com>2018-02-28 10:35:09 -0800
commit3c9cd2576cb9b88b641b5e38248ca7e49aa5c50a (patch)
treefbff7e886f294478304ff367a058ed947b77fa81 /tensorflow/cc
parent3ba1f72f8829c566372208062fcea04ab5695dc6 (diff)
Fix typos in profiler.h (#16938)
Diffstat (limited to 'tensorflow/cc')
-rw-r--r--tensorflow/cc/profiler/profiler.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tensorflow/cc/profiler/profiler.h b/tensorflow/cc/profiler/profiler.h
index 6077c45c58..64edbb5766 100644
--- a/tensorflow/cc/profiler/profiler.h
+++ b/tensorflow/cc/profiler/profiler.h
@@ -61,18 +61,18 @@ class Profiler {
/// Adds tracing information `run_meta` to profiler. A `run_meta` is
/// generated by a TensorFlow session run call. `step` is the key
/// to the `run_meta`. When calling ProfileXXX methods, caller can specify
- /// `step` in `options` to seletively profile the corresponding `run_meta`.
+ /// `step` in `options` to selectively profile the corresponding `run_meta`.
/// Multiple different `run_meta` can be keyed by the same `step` in order
/// to group them together.
void AddStep(int64 step, const RunMetadata& run_meta);
/// Profiles the model by organizing nodes in graph structure.
- /// Each node is an op and the nodes are contected by the op inputs/outputs.
+ /// Each node is an op and the nodes are connected by the op inputs/outputs.
GraphNodeProto ProfileGraph(const Options& options);
/// Profiles the model by organizing nodes in name scope structure.
/// Each node is an op, and nodes are organized by the ops' name
- /// scope, similar to a filesystem tree.
+ /// scope, similar to a file system tree.
/// E.g. /foo is the root of operation /foo/matmul_1 and foo/conv_2.
GraphNodeProto ProfileNameScope(const Options& options);