blob: d93197c5b0420fbdd8f5ce12ce560d52eecdf24b [file] [log] [blame]
/* Copyright 2015 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
// See docs in ../ops/io_ops.cc.
#include "tensorflow/core/framework/op_kernel.h"
#include "tensorflow/core/framework/queue_interface.h"
#include "tensorflow/core/framework/reader_interface.h"
#include "tensorflow/core/framework/tensor_shape.h"
#include "tensorflow/core/kernels/ops_util.h"
#include "tensorflow/core/lib/core/threadpool.h"
#include "tensorflow/core/lib/strings/strcat.h"
namespace tensorflow {
class ReaderVerbSyncOpKernel : public OpKernel {
public:
using OpKernel::OpKernel;
void Compute(OpKernelContext* context) override {
ReaderInterface* reader;
OP_REQUIRES_OK(context,
GetResourceFromContext(context, "reader_handle", &reader));
ComputeWithReader(context, reader);
reader->Unref();
}
protected:
virtual void ComputeWithReader(OpKernelContext* context,
ReaderInterface* reader) = 0;
};
class ReaderVerbAsyncOpKernel : public AsyncOpKernel {
public:
using AsyncOpKernel::AsyncOpKernel;
explicit ReaderVerbAsyncOpKernel(OpKernelConstruction* context)
: AsyncOpKernel(context),
thread_pool_(new thread::ThreadPool(
context->env(), ThreadOptions(),
strings::StrCat("reader_thread_", SanitizeThreadSuffix(name())),
1 /* num_threads */, false /* low_latency_hint */)) {}
void ComputeAsync(OpKernelContext* context, DoneCallback done) override {
ReaderInterface* reader;
OP_REQUIRES_OK_ASYNC(
context, GetResourceFromContext(context, "reader_handle", &reader),
done);
thread_pool_->Schedule([this, context, reader, done]() {
ComputeWithReader(context, reader);
reader->Unref();
done();
});
}
protected:
virtual void ComputeWithReader(OpKernelContext* context,
ReaderInterface* reader) = 0;
private:
std::unique_ptr<thread::ThreadPool> thread_pool_;
};
class ReaderReadOp : public ReaderVerbAsyncOpKernel {
public:
using ReaderVerbAsyncOpKernel::ReaderVerbAsyncOpKernel;
void ComputeWithReader(OpKernelContext* context,
ReaderInterface* reader) override {
QueueInterface* queue;
OP_REQUIRES_OK(context,
GetResourceFromContext(context, "queue_handle", &queue));
core::ScopedUnref unref_me(queue);
Tensor* key = nullptr;
OP_REQUIRES_OK(context,
context->allocate_output("key", TensorShape({}), &key));
Tensor* value = nullptr;
OP_REQUIRES_OK(context,
context->allocate_output("value", TensorShape({}), &value));
auto key_scalar = key->scalar<string>();
auto value_scalar = value->scalar<string>();
reader->Read(queue, &key_scalar(), &value_scalar(), context);
}
};
REGISTER_KERNEL_BUILDER(Name("ReaderRead").Device(DEVICE_CPU), ReaderReadOp);
REGISTER_KERNEL_BUILDER(Name("ReaderReadV2").Device(DEVICE_CPU), ReaderReadOp);
class ReaderReadUpToOp : public ReaderVerbAsyncOpKernel {
public:
using ReaderVerbAsyncOpKernel::ReaderVerbAsyncOpKernel;
void ComputeWithReader(OpKernelContext* context,
ReaderInterface* reader) override {
QueueInterface* queue;
const Tensor* num_records_tensor;
OP_REQUIRES_OK(context, context->input("num_records", &num_records_tensor));
int64 num_records = num_records_tensor->scalar<int64>()();
OP_REQUIRES_OK(context,
GetResourceFromContext(context, "queue_handle", &queue));
core::ScopedUnref unref_me(queue);
std::vector<string> keys_vec;
keys_vec.reserve(num_records);
std::vector<string> values_vec;
values_vec.reserve(num_records);
int64 num_actually_read =
reader->ReadUpTo(num_records, queue, &keys_vec, &values_vec, context);
OP_REQUIRES(context, num_actually_read == keys_vec.size(),
errors::InvalidArgument("num_actually_read != len(keys_vec"));
OP_REQUIRES(context, num_actually_read == values_vec.size(),
errors::InvalidArgument("num_actually_read != len(values_vec"));
Tensor* keys = nullptr;
OP_REQUIRES_OK(context,
context->allocate_output(
"keys", TensorShape({num_actually_read}), &keys));
Tensor* values = nullptr;
OP_REQUIRES_OK(context,
context->allocate_output(
"values", TensorShape({num_actually_read}), &values));
auto keys_t = keys->vec<tstring>();
auto values_t = values->vec<tstring>();
for (int i = 0; i < num_actually_read; ++i) {
keys_t(i) = std::move(keys_vec[i]);
values_t(i) = std::move(values_vec[i]);
}
}
};
REGISTER_KERNEL_BUILDER(Name("ReaderReadUpTo").Device(DEVICE_CPU),
ReaderReadUpToOp);
REGISTER_KERNEL_BUILDER(Name("ReaderReadUpToV2").Device(DEVICE_CPU),
ReaderReadUpToOp);
class ReaderNumRecordsProducedOp : public ReaderVerbSyncOpKernel {
public:
using ReaderVerbSyncOpKernel::ReaderVerbSyncOpKernel;
void ComputeWithReader(OpKernelContext* context,
ReaderInterface* reader) override {
Tensor* output = nullptr;
OP_REQUIRES_OK(context, context->allocate_output("records_produced",
TensorShape({}), &output));
output->scalar<int64>()() = reader->NumRecordsProduced();
}
};
REGISTER_KERNEL_BUILDER(Name("ReaderNumRecordsProduced").Device(DEVICE_CPU),
ReaderNumRecordsProducedOp);
REGISTER_KERNEL_BUILDER(Name("ReaderNumRecordsProducedV2").Device(DEVICE_CPU),
ReaderNumRecordsProducedOp);
class ReaderNumWorkUnitsCompletedOp : public ReaderVerbSyncOpKernel {
public:
using ReaderVerbSyncOpKernel::ReaderVerbSyncOpKernel;
void ComputeWithReader(OpKernelContext* context,
ReaderInterface* reader) override {
Tensor* output = nullptr;
OP_REQUIRES_OK(context, context->allocate_output("units_completed",
TensorShape({}), &output));
output->scalar<int64>()() = reader->NumWorkUnitsCompleted();
}
};
REGISTER_KERNEL_BUILDER(Name("ReaderNumWorkUnitsCompleted").Device(DEVICE_CPU),
ReaderNumWorkUnitsCompletedOp);
REGISTER_KERNEL_BUILDER(
Name("ReaderNumWorkUnitsCompletedV2").Device(DEVICE_CPU),
ReaderNumWorkUnitsCompletedOp);
class ReaderSerializeStateOp : public ReaderVerbSyncOpKernel {
public:
using ReaderVerbSyncOpKernel::ReaderVerbSyncOpKernel;
void ComputeWithReader(OpKernelContext* context,
ReaderInterface* reader) override {
Tensor* output = nullptr;
OP_REQUIRES_OK(context,
context->allocate_output("state", TensorShape({}), &output));
OP_REQUIRES_OK(context,
reader->SerializeState(&output->scalar<string>()()));
}
};
REGISTER_KERNEL_BUILDER(Name("ReaderSerializeState").Device(DEVICE_CPU),
ReaderSerializeStateOp);
REGISTER_KERNEL_BUILDER(Name("ReaderSerializeStateV2").Device(DEVICE_CPU),
ReaderSerializeStateOp);
class ReaderRestoreStateOp : public ReaderVerbSyncOpKernel {
public:
using ReaderVerbSyncOpKernel::ReaderVerbSyncOpKernel;
void ComputeWithReader(OpKernelContext* context,
ReaderInterface* reader) override {
const Tensor* tensor;
OP_REQUIRES_OK(context, context->input("state", &tensor));
OP_REQUIRES(
context, TensorShapeUtils::IsScalar(tensor->shape()),
errors::InvalidArgument("Reader state must be scalar, but had shape: ",
tensor->shape().DebugString()));
OP_REQUIRES_OK(context, reader->RestoreState(tensor->scalar<tstring>()()));
}
};
REGISTER_KERNEL_BUILDER(Name("ReaderRestoreState").Device(DEVICE_CPU),
ReaderRestoreStateOp);
REGISTER_KERNEL_BUILDER(Name("ReaderRestoreStateV2").Device(DEVICE_CPU),
ReaderRestoreStateOp);
class ReaderResetOp : public ReaderVerbSyncOpKernel {
public:
using ReaderVerbSyncOpKernel::ReaderVerbSyncOpKernel;
void ComputeWithReader(OpKernelContext* context,
ReaderInterface* reader) override {
OP_REQUIRES_OK(context, reader->Reset());
}
};
REGISTER_KERNEL_BUILDER(Name("ReaderReset").Device(DEVICE_CPU), ReaderResetOp);
REGISTER_KERNEL_BUILDER(Name("ReaderResetV2").Device(DEVICE_CPU),
ReaderResetOp);
} // namespace tensorflow