| 119 | } |
| 120 | |
| 121 | void Free(TfLiteContext* context, void* buffer) { |
| 122 | eigen_support::DecrementUsageCounter(context); |
| 123 | delete reinterpret_cast<OpData*>(buffer); |
| 124 | } |
| 125 | |
| 126 | // Naive implementation of transpose for floats. Could be optimized to be more |
| 127 | // cache friendly, but for now it's a one-time cost on first run, and we would |
nothing calls this directly
no test coverage detected