| 21 | |
| 22 | namespace { |
| 23 | auto tinfo_to_tid(SmallVector<TensorInfo*> tinfo) { |
| 24 | SmallVector<uint64_t> tid; |
| 25 | for (auto* ptinfo : tinfo) { |
| 26 | tid.push_back(ptinfo->id); |
| 27 | } |
| 28 | return tid; |
| 29 | }; |
| 30 | } // namespace |
| 31 | |
| 32 | namespace mgb { |
no test coverage detected