aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/c/while_loop_test.cc
diff options
context:
space:
mode:
authorGravatar Skye Wanderman-Milne <skyewm@google.com>2017-10-16 15:29:59 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-10-16 15:34:07 -0700
commitdc442f4ce2d3b11b56721337fe2b9e2282be93be (patch)
treeee2d7796823a1430bc4c7a9f2dd577204aa28321 /tensorflow/c/while_loop_test.cc
parent7b6eec7e1175624458a48945bba3f6400e754d33 (diff)
Add return_nodes option to ImportGraphDef
The is similar to the return_tensors option. return_tensors cannot be used to fetch nodes with no outputs, so return_nodes is necessary. In addition, this change also refactors the ImportGraphDef signature to return all optional return values in a single struct. This is to keep the ImportGraphDef signature from getting too long, and also makes the call sites simpler. PiperOrigin-RevId: 172388270
Diffstat (limited to 'tensorflow/c/while_loop_test.cc')
-rw-r--r--tensorflow/c/while_loop_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/tensorflow/c/while_loop_test.cc b/tensorflow/c/while_loop_test.cc
index 2423d83dda..d2d887f32c 100644
--- a/tensorflow/c/while_loop_test.cc
+++ b/tensorflow/c/while_loop_test.cc
@@ -318,7 +318,7 @@ TEST_F(CApiWhileLoopTest, InvalidCondOutputNode) {
// TODO(skyewm): this error message could be more informative. Add explicit
// checks for this case in the while loop implementation?
ExpectError(TF_INVALID_ARGUMENT,
- "Requested return node 'p0' not found in graph def");
+ "Requested return tensor 'p0:0' not found in graph def");
}
TEST_F(CApiWhileLoopTest, InvalidCondOutputIndex) {
@@ -358,7 +358,7 @@ TEST_F(CApiWhileLoopTest, InvalidBodyOutputNode) {
// TODO(skyewm): this error message could be more informative. Add explicit
// checks for this case in the while loop implementation?
ExpectError(TF_INVALID_ARGUMENT,
- "Requested return node 'p0' not found in graph def");
+ "Requested return tensor 'p0:0' not found in graph def");
}
// TODO(skyewm): enable this when it works (currently segfaults!)
@@ -389,7 +389,7 @@ TEST_F(CApiWhileLoopTest, WrongGraph) {
params_->body_outputs[0] = inputs_[0];
// TODO(skyewm): improve error message
ExpectError(TF_INVALID_ARGUMENT,
- "Requested return node 'p0' not found in graph def");
+ "Requested return tensor 'p0:0' not found in graph def");
}
TEST_F(CApiWhileLoopTest, BadTypes) {