Home
last modified time | relevance | path

Searched refs:x_node (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/core/grappler/
Dutils_test.cc374 const NodeDef* x_node = node_map.GetNode("x"); in TEST_F() local
375 ASSERT_NE(x_node, nullptr); in TEST_F()
376 EXPECT_FALSE(HasControlInputs(*x_node)); in TEST_F()
377 EXPECT_FALSE(HasRegularInputs(*x_node)); in TEST_F()
378 EXPECT_FALSE(HasControlOutputs(*x_node, node_map)); in TEST_F()
379 EXPECT_TRUE(HasRegularOutputs(*x_node, node_map)); in TEST_F()
405 const NodeDef* x_node = node_map.GetNode("x"); in TEST_F() local
406 ASSERT_NE(x_node, nullptr); in TEST_F()
407 EXPECT_FALSE(HasControlInputs(*x_node)); in TEST_F()
408 EXPECT_FALSE(HasRegularInputs(*x_node)); in TEST_F()
/external/tensorflow/tensorflow/core/distributed_runtime/
Dmaster_test.cc376 Node* x_node = test::graph::Constant(&graph, x_tensor); in TEST_F() local
379 Node* y_node = test::graph::Matmul(&graph, a_node, x_node, false, false); in TEST_F()
406 RunStep(handle, {{x_node->name(), &x}}, {{y_node->name() + ":0", &y}})); in TEST_F()
/external/tensorflow/tensorflow/core/grappler/costs/
Dvirtual_scheduler_test.cc2655 const NodeState* x_node = nullptr; in TEST_F() local
2663 x_node = &node_state; in TEST_F()
2667 CHECK_NOTNULL(x_node); in TEST_F()
2669 ValidateNodeDefs({"bn", "z1"}, x_node->outputs.at(0)); in TEST_F()