Searched refs:serialized_t (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/core/kernels/ |
D | parse_tensor_op.cc | 42 auto serialized_t = serialized.scalar<tstring>(); in Compute() local 45 OP_REQUIRES(ctx, ParseProtoUnlimited(&proto, serialized_t()), in Compute() 48 serialized_t(), "'")); in Compute()
|
D | example_parsing_ops.cc | 246 auto serialized_t = serialized->flat<tstring>(); in ParseExampleVector() local 248 gtl::ArraySlice<tstring> slice(serialized_t.data(), serialized_t.size()); in ParseExampleVector() 467 auto serialized_t = serialized->flat<tstring>(); in Compute() local 469 gtl::ArraySlice<tstring> slice(serialized_t.data(), serialized_t.size()); in Compute() 923 auto serialized_t = serialized->scalar<tstring>(); in Compute() local 960 const size_t block_size = serialized_t().size() * 1.1; in Compute() 967 ctx, ParseProtoUnlimited(&ex, serialized_t()), in Compute() 969 serialized_t(), "'")); in Compute()
|
/external/tensorflow/tensorflow/core/kernels/data/ |
D | iterator_ops.cc | 389 Status InitFromTensor(const Tensor* serialized_t) { in InitFromTensor() argument 390 int64 num_tensors = serialized_t->dim_size(0); in InitFromTensor() 391 auto serialized_vec = serialized_t->vec<Variant>(); in InitFromTensor() 1147 Tensor* serialized_t; in Compute() local 1150 &serialized_t)); in Compute() 1151 OP_REQUIRES_OK(ctx, serializer.Serialize(serialized_t)); in Compute() 1163 const Tensor* serialized_t; in Compute() local 1164 OP_REQUIRES_OK(ctx, ctx->input("serialized", &serialized_t)); in Compute() 1166 OP_REQUIRES_OK(ctx, serializer.InitFromTensor(serialized_t)); in Compute()
|
/external/tensorflow/tensorflow/core/kernels/data/experimental/ |
D | parse_example_dataset_op.cc | 644 auto serialized_t = t.flat<tstring>(); in ParseExample() local 645 gtl::ArraySlice<tstring> slice(serialized_t.data(), in ParseExample() 646 serialized_t.size()); in ParseExample()
|