blob: 03c193f7b9e2da7862d06420ed825b9707d6ef9c [file] [log] [blame]
/* Copyright 2019 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.
==============================================================================*/
#include "tensorflow/core/kernels/data/prefetch_dataset_op.h"
#include "tensorflow/core/kernels/data/dataset_test_base.h"
namespace tensorflow {
namespace data {
namespace {
constexpr char kNodeName[] = "prefetch_dataset";
class PrefetchDatasetOpTest : public DatasetOpsTestBase {
protected:
// Creates `TensorSliceDataset` variant tensor from the input vector of
// tensors.
Status CreateTensorSliceDatasetTensor(
std::vector<Tensor> *const tensor_vector, Tensor *dataset_tensor) {
DatasetBase *tensor_slice_dataset;
TF_RETURN_IF_ERROR(CreateTensorSliceDataset(
"tensor_slice_node", tensor_vector, &tensor_slice_dataset));
TF_RETURN_IF_ERROR(
StoreDatasetInVariantTensor(tensor_slice_dataset, dataset_tensor));
return Status::OK();
}
// Create a new `PrefetchDataset` op kernel.
Status CreatePrefetchDatasetKernel(
const DataTypeVector &output_types,
const std::vector<PartialTensorShape> &output_shapes,
std::unique_ptr<OpKernel> *op_kernel) {
NodeDef node_def = test::function::NDef(
kNodeName, name_utils::OpName(PrefetchDatasetOp::kDatasetType),
{PrefetchDatasetOp::kInputDataset, PrefetchDatasetOp::kBufferSize},
{{PrefetchDatasetOp::kOutputTypes, output_types},
{PrefetchDatasetOp::kOutputShapes, output_shapes},
{PrefetchDatasetOp::kSlackPeriod, 0},
{PrefetchDatasetOp::kLegacyAutotune, true}});
TF_RETURN_IF_ERROR(CreateOpKernel(node_def, op_kernel));
return Status::OK();
}
// Create a new `PrefetchDataset` op kernel context.
Status CreatePrefetchDatasetContext(
OpKernel *op_kernel, gtl::InlinedVector<TensorValue, 4> *const inputs,
std::unique_ptr<OpKernelContext> *context) {
TF_RETURN_IF_ERROR(CheckOpKernelInput(*op_kernel, *inputs));
TF_RETURN_IF_ERROR(CreateOpKernelContext(op_kernel, inputs, context));
return Status::OK();
}
};
struct TestCase {
std::vector<Tensor> input_tensors;
int64 buffer_size;
std::vector<Tensor> expected_outputs;
DataTypeVector expected_output_dtypes;
std::vector<PartialTensorShape> expected_output_shapes;
int64 expected_cardinality;
std::vector<int> breakpoints;
};
TestCase PositiveBufferSizeTestCase() {
return {
/*input_tensors*/
{CreateTensor<int64>(TensorShape{10, 1}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9})},
/*buffer_size*/ 5,
/*expected_outputs*/
{CreateTensor<int64>(TensorShape{1}, {0}),
CreateTensor<int64>(TensorShape{1}, {1}),
CreateTensor<int64>(TensorShape{1}, {2}),
CreateTensor<int64>(TensorShape{1}, {3}),
CreateTensor<int64>(TensorShape{1}, {4}),
CreateTensor<int64>(TensorShape{1}, {5}),
CreateTensor<int64>(TensorShape{1}, {6}),
CreateTensor<int64>(TensorShape{1}, {7}),
CreateTensor<int64>(TensorShape{1}, {8}),
CreateTensor<int64>(TensorShape{1}, {9})},
/*expected_output_dtypes*/ {DT_INT64},
/*expected_output_shapes*/ {PartialTensorShape({1})},
/*expected_cardinality*/ 10,
/*breakpoints*/ {0, 4, 11}};
}
TestCase ZeroBufferSizeTestCase() {
return {
/*input_tensors*/
{CreateTensor<int64>(TensorShape{10, 1}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9})},
/*buffer_size*/ 0,
/*expected_outputs*/
{CreateTensor<int64>(TensorShape{1}, {0}),
CreateTensor<int64>(TensorShape{1}, {1}),
CreateTensor<int64>(TensorShape{1}, {2}),
CreateTensor<int64>(TensorShape{1}, {3}),
CreateTensor<int64>(TensorShape{1}, {4}),
CreateTensor<int64>(TensorShape{1}, {5}),
CreateTensor<int64>(TensorShape{1}, {6}),
CreateTensor<int64>(TensorShape{1}, {7}),
CreateTensor<int64>(TensorShape{1}, {8}),
CreateTensor<int64>(TensorShape{1}, {9})},
/*expected_output_dtypes*/ {DT_INT64},
/*expected_output_shapes*/ {PartialTensorShape({1})},
/*expected_cardinality*/ 10,
/*breakpoints*/ {0, 4, 11}};
}
TestCase AutoTuneTestCase() {
return {
/*input_tensors*/
{CreateTensor<int64>(TensorShape{10, 1}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9})},
/*buffer_size*/ -1,
/*expected_outputs*/
{CreateTensor<int64>(TensorShape{1}, {0}),
CreateTensor<int64>(TensorShape{1}, {1}),
CreateTensor<int64>(TensorShape{1}, {2}),
CreateTensor<int64>(TensorShape{1}, {3}),
CreateTensor<int64>(TensorShape{1}, {4}),
CreateTensor<int64>(TensorShape{1}, {5}),
CreateTensor<int64>(TensorShape{1}, {6}),
CreateTensor<int64>(TensorShape{1}, {7}),
CreateTensor<int64>(TensorShape{1}, {8}),
CreateTensor<int64>(TensorShape{1}, {9})},
/*expected_output_dtypes*/ {DT_INT64},
/*expected_output_shapes*/ {PartialTensorShape({1})},
/*expected_cardinality*/ 10,
/*breakpoints*/ {0, 4, 11}};
}
TestCase InvalidBufferSizeTestCase() {
return {
/*input_tensors*/
{CreateTensor<int64>(TensorShape{10, 1}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9})},
/*buffer_size*/ -2,
/*expected_outputs*/ {},
/*expected_output_dtypes*/ {DT_INT64},
/*expected_output_shapes*/ {PartialTensorShape({1})},
/*expected_cardinality*/ 0,
/*breakpoints*/ {0, 4, 11}};
}
class ParameterizedPrefetchDatasetOpTest
: public PrefetchDatasetOpTest,
public ::testing::WithParamInterface<TestCase> {};
TEST_P(ParameterizedPrefetchDatasetOpTest, GetNext) {
int thread_num = 2, cpu_num = 2;
TF_ASSERT_OK(InitThreadPool(thread_num));
TF_ASSERT_OK(InitFunctionLibraryRuntime({}, cpu_num));
const TestCase &test_case = GetParam();
Tensor tensor_slice_dataset_tensor(DT_VARIANT, TensorShape({}));
std::vector<Tensor> inputs_for_tensor_slice_dataset = test_case.input_tensors;
TF_ASSERT_OK(CreateTensorSliceDatasetTensor(&inputs_for_tensor_slice_dataset,
&tensor_slice_dataset_tensor));
Tensor buffer_size =
CreateTensor<int64>(TensorShape{}, {test_case.buffer_size});
gtl::InlinedVector<TensorValue, 4> inputs_for_prefetch_dataset(
{TensorValue(&tensor_slice_dataset_tensor), TensorValue(&buffer_size)});
std::unique_ptr<OpKernel> prefetch_dataset_kernel;
TF_ASSERT_OK(CreatePrefetchDatasetKernel(test_case.expected_output_dtypes,
test_case.expected_output_shapes,
&prefetch_dataset_kernel));
std::unique_ptr<OpKernelContext> prefetch_dataset_context;
TF_ASSERT_OK(CreatePrefetchDatasetContext(prefetch_dataset_kernel.get(),
&inputs_for_prefetch_dataset,
&prefetch_dataset_context));
DatasetBase *prefetch_dataset;
TF_ASSERT_OK(CreateDataset(prefetch_dataset_kernel.get(),
prefetch_dataset_context.get(),
&prefetch_dataset));
core::ScopedUnref scoped_unref(prefetch_dataset);
std::unique_ptr<IteratorContext> iterator_ctx;
TF_ASSERT_OK(
CreateIteratorContext(prefetch_dataset_context.get(), &iterator_ctx));
std::unique_ptr<IteratorBase> iterator;
TF_ASSERT_OK(prefetch_dataset->MakeIterator(iterator_ctx.get(), "Iterator",
&iterator));
auto expected_outputs_it = test_case.expected_outputs.begin();
bool end_of_sequence = false;
std::vector<Tensor> out_tensors;
while (!end_of_sequence) {
TF_EXPECT_OK(
iterator->GetNext(iterator_ctx.get(), &out_tensors, &end_of_sequence));
if (!end_of_sequence) {
for (const auto &tensor : out_tensors) {
EXPECT_NE(expected_outputs_it, test_case.expected_outputs.end());
TF_EXPECT_OK(ExpectEqual(tensor, *expected_outputs_it));
expected_outputs_it++;
}
}
}
EXPECT_EQ(expected_outputs_it, test_case.expected_outputs.end());
}
TEST_F(PrefetchDatasetOpTest, InvalidBufferSize) {
int thread_num = 2, cpu_num = 2;
TF_ASSERT_OK(InitThreadPool(thread_num));
TF_ASSERT_OK(InitFunctionLibraryRuntime({}, cpu_num));
const TestCase &test_case = InvalidBufferSizeTestCase();
Tensor tensor_slice_dataset_tensor(DT_VARIANT, TensorShape({}));
std::vector<Tensor> inputs_for_tensor_slice_dataset = test_case.input_tensors;
TF_ASSERT_OK(CreateTensorSliceDatasetTensor(&inputs_for_tensor_slice_dataset,
&tensor_slice_dataset_tensor));
Tensor buffer_size =
CreateTensor<int64>(TensorShape{}, {test_case.buffer_size});
gtl::InlinedVector<TensorValue, 4> inputs_for_prefetch_dataset(
{TensorValue(&tensor_slice_dataset_tensor), TensorValue(&buffer_size)});
std::unique_ptr<OpKernel> prefetch_dataset_kernel;
TF_ASSERT_OK(CreatePrefetchDatasetKernel(test_case.expected_output_dtypes,
test_case.expected_output_shapes,
&prefetch_dataset_kernel));
std::unique_ptr<OpKernelContext> prefetch_dataset_context;
TF_ASSERT_OK(CreatePrefetchDatasetContext(prefetch_dataset_kernel.get(),
&inputs_for_prefetch_dataset,
&prefetch_dataset_context));
DatasetBase *prefetch_dataset;
EXPECT_EQ(CreateDataset(prefetch_dataset_kernel.get(),
prefetch_dataset_context.get(), &prefetch_dataset)
.code(),
tensorflow::error::INVALID_ARGUMENT);
}
TEST_F(PrefetchDatasetOpTest, DatasetNodeName) {
int thread_num = 2, cpu_num = 2;
TF_ASSERT_OK(InitThreadPool(thread_num));
TF_ASSERT_OK(InitFunctionLibraryRuntime({}, cpu_num));
const TestCase &test_case = PositiveBufferSizeTestCase();
Tensor tensor_slice_dataset_tensor(DT_VARIANT, TensorShape({}));
std::vector<Tensor> inputs_for_tensor_slice_dataset = test_case.input_tensors;
TF_ASSERT_OK(CreateTensorSliceDatasetTensor(&inputs_for_tensor_slice_dataset,
&tensor_slice_dataset_tensor));
Tensor buffer_size =
CreateTensor<int64>(TensorShape{}, {test_case.buffer_size});
gtl::InlinedVector<TensorValue, 4> inputs_for_prefetch_dataset(
{TensorValue(&tensor_slice_dataset_tensor), TensorValue(&buffer_size)});
std::unique_ptr<OpKernel> prefetch_dataset_kernel;
TF_ASSERT_OK(CreatePrefetchDatasetKernel(test_case.expected_output_dtypes,
test_case.expected_output_shapes,
&prefetch_dataset_kernel));
std::unique_ptr<OpKernelContext> prefetch_dataset_context;
TF_ASSERT_OK(CreatePrefetchDatasetContext(prefetch_dataset_kernel.get(),
&inputs_for_prefetch_dataset,
&prefetch_dataset_context));
DatasetBase *prefetch_dataset;
TF_ASSERT_OK(CreateDataset(prefetch_dataset_kernel.get(),
prefetch_dataset_context.get(),
&prefetch_dataset));
core::ScopedUnref scoped_unref(prefetch_dataset);
EXPECT_EQ(prefetch_dataset->node_name(), kNodeName);
}
TEST_F(PrefetchDatasetOpTest, DatasetTypeString) {
int thread_num = 2, cpu_num = 2;
TF_ASSERT_OK(InitThreadPool(thread_num));
TF_ASSERT_OK(InitFunctionLibraryRuntime({}, cpu_num));
const TestCase &test_case = PositiveBufferSizeTestCase();
Tensor tensor_slice_dataset_tensor(DT_VARIANT, TensorShape({}));
std::vector<Tensor> inputs_for_tensor_slice_dataset = test_case.input_tensors;
TF_ASSERT_OK(CreateTensorSliceDatasetTensor(&inputs_for_tensor_slice_dataset,
&tensor_slice_dataset_tensor));
Tensor buffer_size =
CreateTensor<int64>(TensorShape{}, {test_case.buffer_size});
gtl::InlinedVector<TensorValue, 4> inputs_for_prefetch_dataset(
{TensorValue(&tensor_slice_dataset_tensor), TensorValue(&buffer_size)});
std::unique_ptr<OpKernel> prefetch_dataset_kernel;
TF_ASSERT_OK(CreatePrefetchDatasetKernel(test_case.expected_output_dtypes,
test_case.expected_output_shapes,
&prefetch_dataset_kernel));
std::unique_ptr<OpKernelContext> prefetch_dataset_context;
TF_ASSERT_OK(CreatePrefetchDatasetContext(prefetch_dataset_kernel.get(),
&inputs_for_prefetch_dataset,
&prefetch_dataset_context));
DatasetBase *prefetch_dataset;
TF_ASSERT_OK(CreateDataset(prefetch_dataset_kernel.get(),
prefetch_dataset_context.get(),
&prefetch_dataset));
core::ScopedUnref scoped_unref(prefetch_dataset);
EXPECT_EQ(prefetch_dataset->type_string(),
name_utils::OpName(PrefetchDatasetOp::kDatasetType));
}
TEST_F(PrefetchDatasetOpTest, DatasetOutputDtypes) {
int thread_num = 2, cpu_num = 2;
TF_ASSERT_OK(InitThreadPool(thread_num));
TF_ASSERT_OK(InitFunctionLibraryRuntime({}, cpu_num));
const TestCase &test_case = PositiveBufferSizeTestCase();
Tensor tensor_slice_dataset_tensor(DT_VARIANT, TensorShape({}));
std::vector<Tensor> inputs_for_tensor_slice_dataset = test_case.input_tensors;
TF_ASSERT_OK(CreateTensorSliceDatasetTensor(&inputs_for_tensor_slice_dataset,
&tensor_slice_dataset_tensor));
Tensor buffer_size =
CreateTensor<int64>(TensorShape{}, {test_case.buffer_size});
gtl::InlinedVector<TensorValue, 4> inputs_for_prefetch_dataset(
{TensorValue(&tensor_slice_dataset_tensor), TensorValue(&buffer_size)});
std::unique_ptr<OpKernel> prefetch_dataset_kernel;
TF_ASSERT_OK(CreatePrefetchDatasetKernel(test_case.expected_output_dtypes,
test_case.expected_output_shapes,
&prefetch_dataset_kernel));
std::unique_ptr<OpKernelContext> prefetch_dataset_context;
TF_ASSERT_OK(CreatePrefetchDatasetContext(prefetch_dataset_kernel.get(),
&inputs_for_prefetch_dataset,
&prefetch_dataset_context));
DatasetBase *prefetch_dataset;
TF_ASSERT_OK(CreateDataset(prefetch_dataset_kernel.get(),
prefetch_dataset_context.get(),
&prefetch_dataset));
core::ScopedUnref scoped_unref(prefetch_dataset);
TF_EXPECT_OK(VerifyTypesMatch(prefetch_dataset->output_dtypes(),
test_case.expected_output_dtypes));
}
TEST_F(PrefetchDatasetOpTest, DatasetOutputShapes) {
int thread_num = 2, cpu_num = 2;
TF_ASSERT_OK(InitThreadPool(thread_num));
TF_ASSERT_OK(InitFunctionLibraryRuntime({}, cpu_num));
const TestCase &test_case = PositiveBufferSizeTestCase();
Tensor tensor_slice_dataset_tensor(DT_VARIANT, TensorShape({}));
std::vector<Tensor> inputs_for_tensor_slice_dataset = test_case.input_tensors;
TF_ASSERT_OK(CreateTensorSliceDatasetTensor(&inputs_for_tensor_slice_dataset,
&tensor_slice_dataset_tensor));
Tensor buffer_size =
CreateTensor<int64>(TensorShape{}, {test_case.buffer_size});
gtl::InlinedVector<TensorValue, 4> inputs_for_prefetch_dataset(
{TensorValue(&tensor_slice_dataset_tensor), TensorValue(&buffer_size)});
std::unique_ptr<OpKernel> prefetch_dataset_kernel;
TF_ASSERT_OK(CreatePrefetchDatasetKernel(test_case.expected_output_dtypes,
test_case.expected_output_shapes,
&prefetch_dataset_kernel));
std::unique_ptr<OpKernelContext> prefetch_dataset_context;
TF_ASSERT_OK(CreatePrefetchDatasetContext(prefetch_dataset_kernel.get(),
&inputs_for_prefetch_dataset,
&prefetch_dataset_context));
DatasetBase *prefetch_dataset;
TF_ASSERT_OK(CreateDataset(prefetch_dataset_kernel.get(),
prefetch_dataset_context.get(),
&prefetch_dataset));
core::ScopedUnref scoped_unref(prefetch_dataset);
TF_EXPECT_OK(VerifyShapesCompatible(prefetch_dataset->output_shapes(),
test_case.expected_output_shapes));
}
TEST_P(ParameterizedPrefetchDatasetOpTest, Cardinality) {
int thread_num = 2, cpu_num = 2;
TF_ASSERT_OK(InitThreadPool(thread_num));
TF_ASSERT_OK(InitFunctionLibraryRuntime({}, cpu_num));
const TestCase &test_case = PositiveBufferSizeTestCase();
Tensor tensor_slice_dataset_tensor(DT_VARIANT, TensorShape({}));
std::vector<Tensor> inputs_for_tensor_slice_dataset = test_case.input_tensors;
TF_ASSERT_OK(CreateTensorSliceDatasetTensor(&inputs_for_tensor_slice_dataset,
&tensor_slice_dataset_tensor));
Tensor buffer_size =
CreateTensor<int64>(TensorShape{}, {test_case.buffer_size});
gtl::InlinedVector<TensorValue, 4> inputs_for_prefetch_dataset(
{TensorValue(&tensor_slice_dataset_tensor), TensorValue(&buffer_size)});
std::unique_ptr<OpKernel> prefetch_dataset_kernel;
TF_ASSERT_OK(CreatePrefetchDatasetKernel(test_case.expected_output_dtypes,
test_case.expected_output_shapes,
&prefetch_dataset_kernel));
std::unique_ptr<OpKernelContext> prefetch_dataset_context;
TF_ASSERT_OK(CreatePrefetchDatasetContext(prefetch_dataset_kernel.get(),
&inputs_for_prefetch_dataset,
&prefetch_dataset_context));
DatasetBase *prefetch_dataset;
TF_ASSERT_OK(CreateDataset(prefetch_dataset_kernel.get(),
prefetch_dataset_context.get(),
&prefetch_dataset));
core::ScopedUnref scoped_unref(prefetch_dataset);
EXPECT_EQ(prefetch_dataset->Cardinality(), test_case.expected_cardinality);
}
TEST_F(PrefetchDatasetOpTest, IteratorOutputDtypes) {
int thread_num = 2, cpu_num = 2;
TF_ASSERT_OK(InitThreadPool(thread_num));
TF_ASSERT_OK(InitFunctionLibraryRuntime({}, cpu_num));
const TestCase &test_case = PositiveBufferSizeTestCase();
Tensor tensor_slice_dataset_tensor(DT_VARIANT, TensorShape({}));
std::vector<Tensor> inputs_for_tensor_slice_dataset = test_case.input_tensors;
TF_ASSERT_OK(CreateTensorSliceDatasetTensor(&inputs_for_tensor_slice_dataset,
&tensor_slice_dataset_tensor));
Tensor buffer_size =
CreateTensor<int64>(TensorShape{}, {test_case.buffer_size});
gtl::InlinedVector<TensorValue, 4> inputs_for_prefetch_dataset(
{TensorValue(&tensor_slice_dataset_tensor), TensorValue(&buffer_size)});
std::unique_ptr<OpKernel> prefetch_dataset_kernel;
TF_ASSERT_OK(CreatePrefetchDatasetKernel(test_case.expected_output_dtypes,
test_case.expected_output_shapes,
&prefetch_dataset_kernel));
std::unique_ptr<OpKernelContext> prefetch_dataset_context;
TF_ASSERT_OK(CreatePrefetchDatasetContext(prefetch_dataset_kernel.get(),
&inputs_for_prefetch_dataset,
&prefetch_dataset_context));
DatasetBase *prefetch_dataset;
TF_ASSERT_OK(CreateDataset(prefetch_dataset_kernel.get(),
prefetch_dataset_context.get(),
&prefetch_dataset));
core::ScopedUnref scoped_unref(prefetch_dataset);
std::unique_ptr<IteratorContext> iterator_ctx;
TF_ASSERT_OK(
CreateIteratorContext(prefetch_dataset_context.get(), &iterator_ctx));
std::unique_ptr<IteratorBase> iterator;
TF_ASSERT_OK(prefetch_dataset->MakeIterator(iterator_ctx.get(), "Iterator",
&iterator));
TF_EXPECT_OK(VerifyTypesMatch(iterator->output_dtypes(),
test_case.expected_output_dtypes));
}
TEST_F(PrefetchDatasetOpTest, IteratorOutputShapes) {
int thread_num = 2, cpu_num = 2;
TF_ASSERT_OK(InitThreadPool(thread_num));
TF_ASSERT_OK(InitFunctionLibraryRuntime({}, cpu_num));
const TestCase &test_case = PositiveBufferSizeTestCase();
Tensor tensor_slice_dataset_tensor(DT_VARIANT, TensorShape({}));
std::vector<Tensor> inputs_for_tensor_slice_dataset = test_case.input_tensors;
TF_ASSERT_OK(CreateTensorSliceDatasetTensor(&inputs_for_tensor_slice_dataset,
&tensor_slice_dataset_tensor));
Tensor buffer_size =
CreateTensor<int64>(TensorShape{}, {test_case.buffer_size});
gtl::InlinedVector<TensorValue, 4> inputs_for_prefetch_dataset(
{TensorValue(&tensor_slice_dataset_tensor), TensorValue(&buffer_size)});
std::unique_ptr<OpKernel> prefetch_dataset_kernel;
TF_ASSERT_OK(CreatePrefetchDatasetKernel(test_case.expected_output_dtypes,
test_case.expected_output_shapes,
&prefetch_dataset_kernel));
std::unique_ptr<OpKernelContext> prefetch_dataset_context;
TF_ASSERT_OK(CreatePrefetchDatasetContext(prefetch_dataset_kernel.get(),
&inputs_for_prefetch_dataset,
&prefetch_dataset_context));
DatasetBase *prefetch_dataset;
TF_ASSERT_OK(CreateDataset(prefetch_dataset_kernel.get(),
prefetch_dataset_context.get(),
&prefetch_dataset));
core::ScopedUnref scoped_unref(prefetch_dataset);
std::unique_ptr<IteratorContext> iterator_ctx;
TF_ASSERT_OK(
CreateIteratorContext(prefetch_dataset_context.get(), &iterator_ctx));
std::unique_ptr<IteratorBase> iterator;
TF_ASSERT_OK(prefetch_dataset->MakeIterator(iterator_ctx.get(), "Iterator",
&iterator));
TF_EXPECT_OK(VerifyShapesCompatible(iterator->output_shapes(),
test_case.expected_output_shapes));
}
TEST_F(PrefetchDatasetOpTest, IteratorOutputPrefix) {
int thread_num = 2, cpu_num = 2;
TF_ASSERT_OK(InitThreadPool(thread_num));
TF_ASSERT_OK(InitFunctionLibraryRuntime({}, cpu_num));
const TestCase &test_case = PositiveBufferSizeTestCase();
Tensor tensor_slice_dataset_tensor(DT_VARIANT, TensorShape({}));
std::vector<Tensor> inputs_for_tensor_slice_dataset = test_case.input_tensors;
TF_ASSERT_OK(CreateTensorSliceDatasetTensor(&inputs_for_tensor_slice_dataset,
&tensor_slice_dataset_tensor));
Tensor buffer_size =
CreateTensor<int64>(TensorShape{}, {test_case.buffer_size});
gtl::InlinedVector<TensorValue, 4> inputs_for_prefetch_dataset(
{TensorValue(&tensor_slice_dataset_tensor), TensorValue(&buffer_size)});
std::unique_ptr<OpKernel> prefetch_dataset_kernel;
TF_ASSERT_OK(CreatePrefetchDatasetKernel(test_case.expected_output_dtypes,
test_case.expected_output_shapes,
&prefetch_dataset_kernel));
std::unique_ptr<OpKernelContext> prefetch_dataset_context;
TF_ASSERT_OK(CreatePrefetchDatasetContext(prefetch_dataset_kernel.get(),
&inputs_for_prefetch_dataset,
&prefetch_dataset_context));
DatasetBase *prefetch_dataset;
TF_ASSERT_OK(CreateDataset(prefetch_dataset_kernel.get(),
prefetch_dataset_context.get(),
&prefetch_dataset));
core::ScopedUnref scoped_unref(prefetch_dataset);
std::unique_ptr<IteratorContext> iterator_ctx;
TF_ASSERT_OK(
CreateIteratorContext(prefetch_dataset_context.get(), &iterator_ctx));
std::unique_ptr<IteratorBase> iterator;
TF_ASSERT_OK(prefetch_dataset->MakeIterator(iterator_ctx.get(), "Iterator",
&iterator));
EXPECT_EQ(
iterator->prefix(),
name_utils::IteratorPrefix(PrefetchDatasetOp::kDatasetType, "Iterator"));
}
TEST_P(ParameterizedPrefetchDatasetOpTest, Roundtrip) {
int thread_num = 2, cpu_num = 2;
TF_ASSERT_OK(InitThreadPool(thread_num));
TF_ASSERT_OK(InitFunctionLibraryRuntime({}, cpu_num));
const TestCase &test_case = PositiveBufferSizeTestCase();
Tensor tensor_slice_dataset_tensor(DT_VARIANT, TensorShape({}));
std::vector<Tensor> inputs_for_tensor_slice_dataset = test_case.input_tensors;
TF_ASSERT_OK(CreateTensorSliceDatasetTensor(&inputs_for_tensor_slice_dataset,
&tensor_slice_dataset_tensor));
Tensor buffer_size =
CreateTensor<int64>(TensorShape{}, {test_case.buffer_size});
gtl::InlinedVector<TensorValue, 4> inputs_for_prefetch_dataset(
{TensorValue(&tensor_slice_dataset_tensor), TensorValue(&buffer_size)});
std::unique_ptr<OpKernel> prefetch_dataset_kernel;
TF_ASSERT_OK(CreatePrefetchDatasetKernel(test_case.expected_output_dtypes,
test_case.expected_output_shapes,
&prefetch_dataset_kernel));
std::unique_ptr<OpKernelContext> prefetch_dataset_context;
TF_ASSERT_OK(CreatePrefetchDatasetContext(prefetch_dataset_kernel.get(),
&inputs_for_prefetch_dataset,
&prefetch_dataset_context));
DatasetBase *prefetch_dataset;
TF_ASSERT_OK(CreateDataset(prefetch_dataset_kernel.get(),
prefetch_dataset_context.get(),
&prefetch_dataset));
core::ScopedUnref scoped_unref(prefetch_dataset);
std::unique_ptr<IteratorContext> iterator_ctx;
TF_ASSERT_OK(
CreateIteratorContext(prefetch_dataset_context.get(), &iterator_ctx));
std::unique_ptr<IteratorBase> iterator;
TF_ASSERT_OK(prefetch_dataset->MakeIterator(iterator_ctx.get(), "Iterator",
&iterator));
std::unique_ptr<SerializationContext> serialization_ctx;
TF_ASSERT_OK(CreateSerializationContext(&serialization_ctx));
bool end_of_sequence = false;
std::vector<Tensor> out_tensors;
int cur_iteration = 0;
auto expected_outputs_it = test_case.expected_outputs.begin();
const std::vector<int> &breakpoints = test_case.breakpoints;
for (int breakpoint : breakpoints) {
VariantTensorData data;
VariantTensorDataWriter writer(&data);
TF_EXPECT_OK(iterator->Save(serialization_ctx.get(), &writer));
TF_EXPECT_OK(writer.Flush());
VariantTensorDataReader reader(&data);
TF_EXPECT_OK(RestoreIterator(iterator_ctx.get(), &reader, "Iterator",
*prefetch_dataset, &iterator));
while (cur_iteration <= breakpoint) {
TF_EXPECT_OK(iterator->GetNext(iterator_ctx.get(), &out_tensors,
&end_of_sequence));
if (!end_of_sequence) {
for (auto &tensor : out_tensors) {
EXPECT_NE(expected_outputs_it, test_case.expected_outputs.end());
TF_EXPECT_OK(ExpectEqual(tensor, *expected_outputs_it));
expected_outputs_it++;
}
}
cur_iteration++;
}
if (breakpoint >= test_case.expected_outputs.size()) {
EXPECT_TRUE(end_of_sequence);
EXPECT_EQ(expected_outputs_it, test_case.expected_outputs.end());
} else {
EXPECT_FALSE(end_of_sequence);
}
}
}
INSTANTIATE_TEST_SUITE_P(PreFetchDatasetOpTest,
ParameterizedPrefetchDatasetOpTest,
::testing::ValuesIn(std::vector<TestCase>(
{PositiveBufferSizeTestCase(),
ZeroBufferSizeTestCase(), AutoTuneTestCase()})));
} // namespace
} // namespace data
} // namespace tensorflow