| 77 | const char* const WhileLoopTest::kFrameName = "test_loop"; |
| 78 | |
| 79 | Status LessThanTenCond(const Scope& s, const std::vector<Output>& inputs, |
| 80 | Output* output) { |
| 81 | *output = ops::Less(s, inputs[0], 10); |
| 82 | return s.status(); |
| 83 | } |
| 84 | |
| 85 | Status AddOneBody(const Scope& s, const std::vector<Output>& inputs, |
| 86 | std::vector<Output>* outputs) { |