| 91 | } |
| 92 | |
| 93 | ~TestGraph() { |
| 94 | for (auto node : nodes_) { |
| 95 | TfLiteIntArrayFree(node.inputs); |
| 96 | TfLiteIntArrayFree(node.outputs); |
| 97 | TfLiteIntArrayFree(node.temporaries); |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | const std::vector<TfLiteNode>& nodes() { return nodes_; } |
| 102 | std::vector<TfLiteTensor>* tensors() { return &tensors_; } |
nothing calls this directly
no test coverage detected