| 151 | } |
| 152 | |
| 153 | void Define(int num_opers, const std::vector<TF_Operation*>& opers, |
| 154 | const std::vector<TF_Operation*>& inputs, |
| 155 | const std::vector<TF_Operation*>& outputs, |
| 156 | const std::vector<string>& output_names, |
| 157 | bool expect_failure = false) { |
| 158 | DefineT(num_opers, opers, ToOutput(inputs), ToOutput(outputs), output_names, |
| 159 | expect_failure); |
| 160 | } |
| 161 | |
| 162 | // Caller must delete[] the returned value |
| 163 | static const char** ToArray(const std::vector<string>& strs) { |
nothing calls this directly
no test coverage detected