Home
last modified time | relevance | path

Searched refs:SummarizeValue (Results 1 – 14 of 14) sorted by relevance

/external/tensorflow/tensorflow/core/framework/
Dtensor_test.cc1243 TEST(SummarizeValue, Uninitialized) { in TEST() argument
1248 x.SummarizeValue(16)); in TEST()
1251 TEST(SummarizeValue, INT32) { in TEST() argument
1253 EXPECT_EQ("1 2 3 4 0", x.SummarizeValue(16)); in TEST()
1255 EXPECT_EQ("[1 2][3 4]", x.SummarizeValue(16)); in TEST()
1257 EXPECT_EQ("[[[1]][[2]]][[[3]][[4]]]", x.SummarizeValue(16)); in TEST()
1258 EXPECT_EQ("[[[1]][[2]]][[[3]]]...", x.SummarizeValue(3)); in TEST()
1260 EXPECT_EQ("", x.SummarizeValue(16)); in TEST()
1263 TEST(SummarizeValue, FLOAT) { in TEST() argument
1265 EXPECT_EQ("1 2 3 4 0", x.SummarizeValue(16)); in TEST()
[all …]
Dtensor.cc944 string Tensor::SummarizeValue(int64 max_entries) const { in SummarizeValue() function in tensorflow::Tensor
1035 " values: ", SummarizeValue(3), ">"); in DebugString()
Dtensor.h431 string SummarizeValue(int64 max_entries) const;
Dshape_inference.cc1044 input_tensors_[i]->SummarizeValue(256 /* max_values */), ">")); in AttachContext()
/external/tensorflow/tensorflow/core/kernels/
Dlogging_ops.cc41 strings::StrAppend(&msg, "[", ctx->input(i).SummarizeValue(summarize_), in Compute()
77 strings::StrAppend(&msg, "[", ctx->input(i).SummarizeValue(summarize_), in Compute()
Dsparse_add_op.cc78 a_shape->SummarizeValue(10), " and ", b_shape->SummarizeValue(10))); in Compute()
Dsparse_sparse_binary_op_shared.cc172 a_shape_t->SummarizeValue(10), " and ", in Compute()
173 b_shape_t->SummarizeValue(10))); in Compute()
Dconcat_op.cc322 i, " has shape [", inp.SummarizeValue(10), in Compute()
324 inp0.SummarizeValue(10), "].")); in Compute()
Dsparse_softmax_op.cc64 shape_t->SummarizeValue(3))); in Compute()
Dsparse_xent_op.cc45 "). Label values: ", labels.SummarizeValue(labels.NumElements())); in CheckInvalidLabelIndex()
Dreduction_ops_common.h152 VLOG(1) << "axes : " << axes.SummarizeValue(10);
/external/clang/lib/StaticAnalyzer/Checkers/
DMallocChecker.cpp366 static bool SummarizeValue(raw_ostream &os, SVal V);
1511 bool MallocChecker::SummarizeValue(raw_ostream &os, SVal V) { in SummarizeValue() function in MallocChecker
1629 : SummarizeValue(os, ArgVal); in ReportBadFree()
/external/tensorflow/tensorflow/core/ops/
Dmath_grad_test.cc1132 LOG(INFO) << dx.SummarizeValue(6); in TEST_F()
/external/tensorflow/tensorflow/contrib/verbs/
Drdma.cc927 string s = in.SummarizeValue(999999); in Checksum()