aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/tf2xla
diff options
context:
space:
mode:
authorGravatar Ruoxin Sang <rxsang@google.com>2018-09-21 15:48:52 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-21 15:57:34 -0700
commite38dc6a60b133ce3af704c61e105f7fe5801b8fa (patch)
tree3fd8e2d1def43d77d130783585d9617964d46e6d /tensorflow/compiler/tf2xla
parent5d7d8f9f7500e1b648e62fdd43f6d2999524e833 (diff)
Update BuildComputation function comment.
PiperOrigin-RevId: 214056851
Diffstat (limited to 'tensorflow/compiler/tf2xla')
-rw-r--r--tensorflow/compiler/tf2xla/xla_compiler.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/tensorflow/compiler/tf2xla/xla_compiler.cc b/tensorflow/compiler/tf2xla/xla_compiler.cc
index 739e47778a..d5094e8ec5 100644
--- a/tensorflow/compiler/tf2xla/xla_compiler.cc
+++ b/tensorflow/compiler/tf2xla/xla_compiler.cc
@@ -333,10 +333,8 @@ Status ExecuteGraph(XlaContext* xla_context, std::unique_ptr<Graph> graph,
}
// Builds the XLA computation.
-//
-// `retvals` is the list of retvals produced by _Retval operators, in index
-// order. `variable_map` is a map from variable ID numbers to XlaOpContext
-// variable states, generated by the symbolic evaluation.
+// `args` is the list of input arguments, `retvals` is the list of retvals
+// produced by _Retval operators, in index order.
// If `return_updated_values_for_all_resources` is true, all resources will be
// included in `resource_updates`, regardless of whether their value changed.
// Sets `*num_nonconst_outputs` to the number of outputs of the `computation`.