| 178 | } |
| 179 | |
| 180 | void AsyncOpKernel::Compute(OpKernelContext* context) { |
| 181 | Notification n; |
| 182 | ComputeAsync(context, [&n]() { n.Notify(); }); |
| 183 | n.WaitForNotification(); |
| 184 | } |
| 185 | |
| 186 | // PersistentTensor ---------------------------------------------------------- |
| 187 |
nothing calls this directly
no test coverage detected