| 223 | // * The index is marked as read (it cannot be rewritten to). |
| 224 | template <typename Device, typename T> |
| 225 | Status Read(OpKernelContext* ctx, const int32 index, |
| 226 | PersistentTensor* value) { |
| 227 | mutex_lock l(mu_); |
| 228 | return LockedRead<Device, T>(ctx, index, value); |
| 229 | } |
| 230 | |
| 231 | template <typename Device, typename T> |
| 232 | Status ReadMany(OpKernelContext* ctx, const std::vector<int32>& indices, |
no outgoing calls
no test coverage detected