| 114 | } |
| 115 | |
| 116 | void SetOutput(NodeExecStatsInterface* stats, int slot, const Tensor* v) { |
| 117 | if (!stats) return; |
| 118 | stats->SetOutput(slot, v); |
| 119 | } |
| 120 | |
| 121 | void SetMemory(NodeExecStatsInterface* stats, OpKernelContext* ctx) { |
| 122 | if (!stats) return; |
no test coverage detected