aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/distributed_runtime/scheduler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/distributed_runtime/scheduler.cc')
-rw-r--r--tensorflow/core/distributed_runtime/scheduler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/core/distributed_runtime/scheduler.cc b/tensorflow/core/distributed_runtime/scheduler.cc
index 0b628205c3..844a0643e6 100644
--- a/tensorflow/core/distributed_runtime/scheduler.cc
+++ b/tensorflow/core/distributed_runtime/scheduler.cc
@@ -33,7 +33,7 @@ void InitializePending(const Graph* graph, std::vector<int>* pending) {
const int id = node->id();
int num_in_edges = 0;
if (IsMerge(node)) {
- // For forward executon order, Merge nodes are special. We process
+ // For forward execution order, Merge nodes are special. We process
// them only once when one of its inputs is processed.
for (const Edge* edge : node->in_edges()) {
if (edge->IsControlEdge()) {
@@ -122,7 +122,7 @@ Microseconds SlackAnalysis::ComputeAlap(std::vector<Microseconds>* alap_times) {
std::vector<int> pending_count;
pending_count.resize(graph_->num_node_ids());
for (const Node* n : graph_->nodes()) {
- // For reverse executon order, Switch nodes are special. We process
+ // For reverse execution order, Switch nodes are special. We process
// them only once when one of its outputs is processed.
if (IsSwitch(n)) {
int32 num_control_edges = 0;