From 913974f5b984bec89c104ffd4e7022c35c19541f Mon Sep 17 00:00:00 2001 From: Yanqingshang Date: Mon, 19 Oct 2020 16:44:52 +0800 Subject: [PATCH] modify the to The --- tf_adapter/kernels/host_queue_dataset_op.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tf_adapter/kernels/host_queue_dataset_op.cc b/tf_adapter/kernels/host_queue_dataset_op.cc index 16a442699..b7d51c333 100644 --- a/tf_adapter/kernels/host_queue_dataset_op.cc +++ b/tf_adapter/kernels/host_queue_dataset_op.cc @@ -205,7 +205,7 @@ class HostQueueDatasetOp : public DatasetOpKernel { mutex_lock lck(mu_); for (auto &tensor : args) { if (tensor.TotalBytes() > UINT64_MAX - total_bytes_) { - LOG(ERROR) << "the size of tensor is too big"; + LOG(ERROR) << "The size of tensor is too big"; buffer_element.host_thread_finished = true; buffer_.push_back(std::move(buffer_element)); cond_var_.notify_all(); -- Gitee