Home
last modified time | relevance | path

Searched refs:Explain (Results 1 – 25 of 49) sorted by relevance

12

/external/tensorflow/tensorflow/compiler/jit/
Dnode_matchers_test.cc42 string Explain(const T& t, const M& m) { in Explain() function
64 EXPECT_EQ(Explain(placeholder.node(), NodeWith(Op("Add"))), in TEST()
66 EXPECT_EQ(Explain(placeholder.node(), NodeWith(Name("add"))), in TEST()
68 EXPECT_EQ(Explain(placeholder.node(), NodeWith(Inputs(Out(NodeWith())))), in TEST()
86 EXPECT_EQ(Explain(add.node(), NodeWith(Inputs())), in TEST()
89 Explain(add.node(), NodeWith(Inputs(Out(NodeWith(Name("blah"))), _))), in TEST()
93 Explain(add.node(), NodeWith(Inputs(_, Out(NodeWith(Name("blah")))))), in TEST()
121 Explain(placeholder_c.node(), NodeWith(CtrlDeps())), in TEST()
123 EXPECT_EQ(Explain(placeholder_d.node(), NodeWith(CtrlDeps(NodeWith()))), in TEST()
141 EXPECT_EQ(Explain(placeholder.node(), NodeWith(ConstantValue(42))), in TEST()
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_matchers_test.cc39 std::string Explain(const T& t, const M& m) { in Explain() function
61 Explain(add.get(), op::Parameter()), in TEST_F()
64 Explain(add.get(), op::Add(op::Parameter())), in TEST_F()
68 Explain(add.get(), op::Add(op::Parameter(), op::Parameter())), in TEST_F()
77 Explain(add.get(), in TEST_F()
115 EXPECT_THAT(Explain(call.get(), op::CustomCall("bar")), in TEST_F()
151 EXPECT_THAT(Explain(p0.get(), op::Shape(ShapeUtil::MakeShape(F32, {7, 5}))), in TEST_F()
155 Explain(p0.get(), op::ShapeWithLayout(ShapeUtil::MakeShapeWithLayout( in TEST_F()
192 EXPECT_THAT(Explain(p0.get(), op::Sharding(HloSharding::AssignDevice(1))), in TEST_F()
195 EXPECT_THAT(Explain(p1.get(), op::NoSharding()), in TEST_F()
[all …]
Dinstruction_fusion.h82 return {absl::StrCat(explanation_.value_or(""), " ; ", decision.Explain())}; in Or()
110 std::string Explain() const { return *explanation_; } in Explain() function
Dpattern_matcher_gmock_test.cc37 std::string Explain( in Explain() function
Dinstruction_fusion.cc626 << should_fuse.Explain(); in Run()
635 "| as ", should_fuse.Explain()), in Run()
/external/cronet/third_party/googletest/src/googlemock/test/
Dgmock-matchers-misc_test.cc157 EXPECT_EQ("", Explain(m, container)); in TEST()
159 EXPECT_EQ("whose size is 1", Explain(m, container)); in TEST()
222 EXPECT_EQ("", Explain(m, my_set)); in TYPED_TEST()
234 Explain(m, test_set)); in TYPED_TEST()
245 EXPECT_EQ("which has these unexpected elements: 46", Explain(m, test_set)); in TYPED_TEST()
259 Explain(m, test_set)); in TYPED_TEST()
271 EXPECT_EQ("", Explain(m, test_set)); in TYPED_TEST()
285 Explain(m, test_set)); in TEST()
298 Explain(m, test_set)); in TEST()
312 Explain(m, test_set)); in TEST()
[all …]
Dgmock-matchers-containers_test.cc320 EXPECT_EQ("", Explain(m, static_cast<const std::string*>(nullptr))); in TEST()
325 Explain(m2, &n)); in TEST()
331 EXPECT_EQ("which points to 42" + OfType("int"), Explain(m, &n)); in TEST()
483 EXPECT_EQ("whose given field is 1" + OfType("int"), Explain(m, a)); in TEST()
488 Explain(m, a)); in TEST()
496 EXPECT_EQ("whose field `field_name` is 1" + OfType("int"), Explain(m, a)); in TEST()
501 Explain(m, a)); in TEST()
575 EXPECT_EQ("", Explain(m, static_cast<const AStruct*>(nullptr))); in TEST()
577 Explain(m, &a)); in TEST()
582 Explain(m, &a)); in TEST()
[all …]
Dgmock-matchers-comparisons_test.cc129 EXPECT_EQ("value % 2 == 0", Explain(m, 2)); in TEST()
130 EXPECT_EQ("value % 2 == 1", Explain(m, 3)); in TEST()
365 EXPECT_EQ("% 2 == 0", Explain(m1, 42)); in TEST()
376 EXPECT_EQ("% 2 == 0", Explain(m2, '\x42')); in TEST()
1094 EXPECT_THAT(Explain(Matcher<const int&>(Ref(n)), n), in TEST()
1098 EXPECT_THAT(Explain(Matcher<const int&>(Ref(n)), m), in TEST()
1330 Explain(m, make_pair(5, true))); in TEST()
1332 Explain(m, make_pair(15, true))); in TEST()
1441 Explain(m, make_pair(-1, -2))); in TEST()
1446 Explain(m, make_pair(1, -2))); in TEST()
[all …]
Dgmock-matchers-arithmetic_test.cc562 EXPECT_EQ("which is 15 more than 10", Explain(m, 25)); in TEST()
567 Explain(m, 30)); in TEST()
573 Explain(m, 25)); in TEST()
580 Explain(m, 40)); in TEST()
585 EXPECT_EQ("which is 5 less than 10", Explain(m, 5)); in TEST()
591 EXPECT_EQ("", Explain(m, 40)); in TEST()
596 EXPECT_EQ("which is 5 less than 20", Explain(m, 15)); in TEST()
776 EXPECT_EQ("which is 5 less than 10", Explain(m, 5)); in TEST()
781 Explain(m, 5)); in TEST()
787 Explain(m, 5)); in TEST()
[all …]
Dgmock-matchers_test.h145 std::string Explain(const MatcherType& m, const Value& x) { in Explain() function
/external/googletest/googlemock/test/
Dgmock-matchers_test.cc166 std::string Explain(const MatcherType& m, const Value& x) { in Explain() function
253 EXPECT_EQ("value % 2 == 0", Explain(m, 2)); in TEST()
254 EXPECT_EQ("value % 2 == 1", Explain(m, 3)); in TEST()
495 EXPECT_EQ("% 2 == 0", Explain(m1, 42)); in TEST()
506 EXPECT_EQ("% 2 == 0", Explain(m2, '\x42')); in TEST()
1227 EXPECT_THAT(Explain(Matcher<const int&>(Ref(n)), n), in TEST()
1231 EXPECT_THAT(Explain(Matcher<const int&>(Ref(n)), m), in TEST()
1463 Explain(m, make_pair(5, true))); in TEST()
1465 Explain(m, make_pair(15, true))); in TEST()
1571 Explain(m, make_pair(-1, -2))); in TEST()
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dfusion_merger.cc217 << "| with all of it's users due to: " << was_fused.Explain(); in Run()
223 "| into all of its users due to: ", was_fused.Explain()), in Run()
/external/bazelbuild-rules_android/
DCONTRIBUTING.md24 1. Explain your idea and discuss your plan with members of the team. The best
/external/kotlinx.coroutines/.github/ISSUE_TEMPLATE/
Dfeature_request.md22 Explain what *specifically* you are trying to do and why.
/external/mbedtls/ChangeLog.d/
D00README.md76 **Explain why, not how**. Remember that the audience is the users of the
/external/openthread/third_party/mbedtls/repo/ChangeLog.d/
D00README.md76 **Explain why, not how**. Remember that the audience is the users of the
/external/pigweed/docs/templates/docs/
Ddocs.rst95 Explain how developers use this module in their project, including any
/external/python/setuptools/docs/development/
Ddeveloper-guide.rst42 the perspective of the reader. Explain what behavior you expected, what you
/external/scapy/
DCONTRIBUTING.md56 Explain if possible the API you would like to have (e.g., give examples
/external/python/cpython2/Misc/NEWS.d/
D2.7.11rc1.rst890 Explain some differences between IDLE and console Python.
899 Explain need for *print* when running file from Idle editor.
/external/bcc/
DCONTRIBUTING-SCRIPTS.md39 …n intro sentence, then have examples, and finish with the USAGE message. Explain everything: the f…
/external/python/cpython3/Misc/NEWS.d/
D3.5.1rc1.rst1108 Explain some differences between IDLE and console Python.
1117 Explain need for *print* when running file from Idle editor.
D3.7.0b1.rst713 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
D3.6.5rc1.rst611 Explain real behaviour of sys.settrace and sys.setprofile and their C-API
/external/python/cpython3/Lib/idlelib/
DNEWS.txt398 bpo-23220: Explain how IDLE's Shell displays output.
411 bpo-1529353: Explain Shell text squeezing in the IDLE doc.
1077 - Issue #21995: Explain some differences between IDLE and console Python.
1079 - Issue #22820: Explain need for *print* when running file from Idle editor.

12