HomeSort by relevance Sort by last modified time
    Searched defs:record_bytes (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
fixed_length_record_reader_op.cc 36 int64 record_bytes, int64 footer_bytes,
41 record_bytes_(record_bytes),
43 hop_bytes_(hop_bytes == 0 ? record_bytes : hop_bytes),
166 int64 header_bytes = -1, record_bytes = -1, footer_bytes = -1, local
169 OP_REQUIRES_OK(context, context->GetAttr("record_bytes", &record_bytes));
175 OP_REQUIRES(context, record_bytes >= 0,
176 errors::InvalidArgument("record_bytes must be >= 0 not ",
177 record_bytes));
187 SetReaderFactory([this, header_bytes, record_bytes, footer_bytes, hop_bytes
    [all...]
  /external/tensorflow/tensorflow/core/kernels/data/
reader_dataset_ops.cc 305 int64 record_bytes = -1; variable
307 ctx, ParseScalarArgument<int64>(ctx, "record_bytes", &record_bytes));
308 OP_REQUIRES(ctx, record_bytes > 0,
309 errors::InvalidArgument("`record_bytes` must be > 0"));
334 *output = new Dataset(ctx, std::move(filenames), header_bytes, record_bytes,
342 int64 header_bytes, int64 record_bytes, int64 footer_bytes,
347 record_bytes_(record_bytes),
387 Node* record_bytes = nullptr; variable
393 TF_RETURN_IF_ERROR(b->AddScalar(record_bytes_, &record_bytes));
    [all...]

Completed in 4691 milliseconds