Home
last modified time | relevance | path

Searched refs:max_per_op_streaming (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/core/grappler/costs/
Dcost_estimator.cc24 CHECK_NE(left.max_per_op_streaming, kMemoryUnknown); in CombineCosts()
38 if (right.max_per_op_streaming != kMemoryUnknown) { in CombineCosts()
39 result.max_per_op_streaming = in CombineCosts()
40 std::max(left.max_per_op_streaming, right.max_per_op_streaming); in CombineCosts()
Dcost_estimator_test.cc34 c.max_per_op_streaming = 3; in TEST()
49 EXPECT_EQ(sum.max_per_op_streaming, 3); in TEST()
65 c.max_per_op_streaming = 3; in TEST()
80 EXPECT_EQ(product.max_per_op_streaming, 3); in TEST()
Dcost_estimator.h151 int64 max_per_op_streaming; // Ignore largest input buffer, assuming it member
190 max_per_op_streaming = kMemoryUnknown; in Costs()
203 costs.max_per_op_streaming = kZeroMemory; in ZeroCosts()
Dvirtual_scheduler.cc1023 << graph_costs_.max_per_op_streaming; in Summary()