Home
last modified time | relevance | path

Searched refs:Gt (Results 1 – 25 of 163) sorted by relevance

1234567

/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Delu_op.cc30 const auto pred = Gt(x, zero); in Elu()
39 const auto pred = Gt(x, zero); in Selu()
69 const auto pred = xla::Gt(activation, zero); in Compile()
102 const auto pred = xla::Gt(activation, zero); in Compile()
Drelu_op.cc66 auto gt_zero = xla::Gt(features, xla::ScalarLike(features, 0)); in Compile()
84 const auto pred = xla::Gt(ctx->Input(1), zero); in Compile()
103 xla::And(xla::Lt(ctx->Input(1), six), xla::Gt(ctx->Input(1), zero)), in Compile()
119 xla::Select(xla::Gt(features, xla::ScalarLike(features, 0)), gradients, in Compile()
Dquantize_and_dequantize_op.cc146 Select(Gt(min_quantized * min_range, zero), min_quantized / min_range, in Compile()
149 Select(Gt(max_quantized * max_range, zero), max_quantized / max_range, in Compile()
/external/llvm-project/clang/lib/ASTMatchers/
DGtestMatchers.cpp34 case GtestCmp::Gt: in getComparisonDecl()
52 case GtestCmp::Gt: in getAssertMacro()
70 case GtestCmp::Gt: in getExpectMacro()
/external/llvm-project/llvm/unittests/Support/
DMatchersTest.cpp15 using ::testing::Gt;
23 EXPECT_THAT(llvm::Optional<int>(10), llvm::ValueIs(AllOf(Lt(11), Gt(9)))); in TEST()
/external/tensorflow/tensorflow/compiler/xla/tests/
Dselect_test.cc125 auto cmp = Gt(v1, v2); in TEST_F()
149 auto cmp = Gt(v1, v2); in TEST_F()
190 auto cmp = Gt(v1, v2); in TEST_F()
203 auto cmp = Gt(v, s); in TEST_F()
220 auto cmp = Gt(v, s); in TEST_F()
Dwhile_test.cc59 Gt(ConstantR0<int32>(&builder, 5), prev); in XLA_TEST_F()
95 Gt(ConstantR0<int64>(&builder, 5), prev); in XLA_TEST_F()
126 Gt(ConstantR0<int32>(&builder, 5), prev); in XLA_TEST_F()
208 Gt(ConstantR0<float>(&builder, 15.5f), sum); in XLA_TEST_F()
262 Gt(ConstantR0<float>(&builder, 15.5f), sum); in XLA_TEST_F()
322 Gt(ConstantR0<float>(&builder, 15.5f), sum); in XLA_TEST_F()
370 Gt(ConstantR0<int32>(&builder, N), iteration); in XLA_TEST_F()
424 Gt(ConstantR0<int32>(&builder, N), iteration); in XLA_TEST_F()
480 Gt(ConstantR0<int32>(&builder, 5), iteration); in XLA_TEST_F()
529 Gt(ConstantR0<int32>(&builder, 5), iteration); in XLA_TEST_F()
[all …]
Dscalar_computations_test.cc591 Gt(ConstantR0<float>(&builder, 2.0f), ConstantR0<float>(&builder, 1.0f)); in XLA_TEST_F()
613 TestCompare<int32>(1, 5, false, &Gt); in XLA_TEST_F()
644 TestCompare<uint32>(1, 5, false, &Gt); in XLA_TEST_F()
645 TestCompare<uint32>(5, 5, false, &Gt); in XLA_TEST_F()
646 TestCompare<uint32>(5, 1, true, &Gt); in XLA_TEST_F()
675 TestCompare<float>(1.0, 5.2, false, &Gt); in XLA_TEST_F()
/external/openscreen/cast/streaming/
Dreceiver_unittest.cc44 using testing::Gt;
431 EXPECT_CALL(*consumer(), OnFramesReady(Gt(0))).Times(10); in TEST_F()
551 EXPECT_CALL(*consumer(), OnFramesReady(Gt(0))).Times(1); in TEST_F()
561 EXPECT_CALL(*consumer(), OnFramesReady(Gt(0))).Times(1); in TEST_F()
597 EXPECT_CALL(*consumer(), OnFramesReady(Gt(0))).Times(1); in TEST_F()
621 EXPECT_CALL(*consumer(), OnFramesReady(Gt(0))).Times(1); in TEST_F()
636 EXPECT_CALL(*consumer(), OnFramesReady(Gt(0))).Times(1); in TEST_F()
688 EXPECT_CALL(*consumer(), OnFramesReady(Gt(0))).Times(1); in TEST_F()
723 EXPECT_CALL(*consumer(), OnFramesReady(Gt(0))).Times(AtLeast(1)); in TEST_F()
825 EXPECT_CALL(*consumer(), OnFramesReady(Gt(0))).Times(1); in TEST_F()
[all …]
/external/grpc-grpc/test/cpp/ext/filters/census/
Dstats_plugin_end2end_test.cc201 ::testing::Gt(0.0)))))); in TEST_F()
207 ::testing::Gt(0.0)))))); in TEST_F()
213 ::testing::Gt(0.0)))))); in TEST_F()
219 ::testing::Gt(0.0)))))); in TEST_F()
250 ::testing::Property(&Distribution::mean, ::testing::Gt(0.0)), in TEST_F()
265 ::testing::Property(&Distribution::mean, ::testing::Gt(0.0)), in TEST_F()
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dmath.cc287 return Select(Gt(Abs(x), ScalarLike(x, 1)), ErfcImpl64(x), in Erfc()
293 return Select(Gt(Abs(x), ScalarLike(x, 1)), ErfcImpl32(x), in Erfc()
589 Select(Gt(abs_frac_input, ScalarLike(abs_frac_input, 0.5)), in Lgamma()
749 conditional = And(enabled, Gt(c / ans, Epsilon(builder, type))); in IgammaSeries()
752 And(enabled, Gt(Abs(dc_da / dans_da), Epsilon(builder, type))); in IgammaSeries()
850 XlaOp rescale = Gt(Abs(pk), Reciprocal(Epsilon(builder, type))); in IgammacContinuedFraction()
863 conditional = And(enabled, Gt(t, Epsilon(builder, type))); in IgammacContinuedFraction()
865 conditional = And(enabled, Gt(grad_conditional, Epsilon(builder, type))); in IgammacContinuedFraction()
932 XlaOp use_igammac = And(Gt(x, ScalarLike(x, 1)), Gt(x, a)); in Igamma()
979 XlaOp use_igammac = And(Gt(x, ScalarLike(x, 1)), Gt(x, a)); in IgammaGradA()
[all …]
/external/rust/crates/syn/src/
Dop.rs43 Gt(Token![>]),
124 input.parse().map(BinOp::Gt) in parse_binop()
209 BinOp::Gt(t) => t.to_tokens(tokens), in to_tokens()
/external/llvm-project/clang/include/clang/ASTMatchers/
DGtestMatchers.h28 Gt, enumerator
/external/apache-xml/src/main/java/org/apache/xpath/operations/
DGt.java29 public class Gt extends Operation class
/external/googletest/googlemock/test/
Dgmock-matchers_test.cc1000 Matcher<double> m1 = Gt(0); in TEST()
1008 Matcher<int> m = Gt(5); in TEST()
1096 EXPECT_CALL(helper, Call(Gt(ByRef(m)))); in TEST()
1509 Matcher<int> is_positive = Gt(0); in TEST()
1631 Matcher<int> is_positive = Gt(0); in TEST()
2173 Matcher<const Tuple2&> m = Gt(); in TEST()
2181 Matcher<const Tuple2&> m = Gt(); in TEST()
2506 Matcher<int> greater_than_5 = Gt(5); in TEST()
2533 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
2539 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
[all …]
/external/llvm-project/llvm/unittests/tools/llvm-exegesis/AArch64/
DTargetTest.cpp27 using testing::Gt;
/external/tensorflow/tensorflow/compiler/xla/service/
Dtopk_rewriter.cc61 m::Gt(match_bitcast_f32(0), match_bitcast_f32(1))) || in IsNanSafeGt()
63 m::Gt(match_bitcast_bf16(0), match_bitcast_bf16(1))); in IsNanSafeGt()
/external/icing/icing/store/
Dusage-store_test.cc27 using ::testing::Gt;
577 IsOkAndHolds(Gt(empty_file_size))); in TEST_F()
587 EXPECT_THAT(empty_disk_usage, Gt(0)); in TEST_F()
612 EXPECT_THAT(usage_store->GetDiskUsage(), IsOkAndHolds(Gt(empty_disk_usage))); in TEST_F()
/external/llvm-project/clang-tools-extra/clangd/unittests/
DFileIndexTests.cpp44 using ::testing::Gt;
707 ASSERT_THAT(MT.child("preamble").child("index").total(), Gt(0U)); in TEST()
708 ASSERT_THAT(MT.child("main_file").child("index").total(), Gt(0U)); in TEST()
724 EXPECT_THAT(MT.child("f1").total(), Gt(0U)); in TEST()
726 EXPECT_THAT(MT.child("f2").total(), Gt(0U)); in TEST()
728 EXPECT_THAT(MT.child("f3").total(), Gt(0U)); in TEST()
/external/webrtc/modules/rtp_rtcp/source/
Drtp_format_unittest.cc25 using ::testing::Gt;
199 EXPECT_THAT(payload_sizes, Each(Gt(0))); in TEST()
/external/llvm-project/llvm/unittests/tools/llvm-exegesis/X86/
DSnippetGeneratorTest.cpp29 using testing::Gt;
171 ASSERT_THAT(CodeTemplates, SizeIs(Gt(1U))) << "Many templates are available"; in TEST_F()
192 ASSERT_THAT(CodeTemplates, SizeIs(Gt(1U))) << "Many templates are available"; in TEST_F()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/internal/
Dcontainer_memory_test.cc37 using ::testing::Gt;
83 EXPECT_THAT(AllocationMap(), ElementsAre(Pair(_, Gt(0)))); in TEST()
/external/openscreen/third_party/abseil/src/absl/container/internal/
Dcontainer_memory_test.cc37 using ::testing::Gt;
83 EXPECT_THAT(AllocationMap(), ElementsAre(Pair(_, Gt(0)))); in TEST()
/external/libtextclassifier/abseil-cpp/absl/container/internal/
Dcontainer_memory_test.cc37 using ::testing::Gt;
83 EXPECT_THAT(AllocationMap(), ElementsAre(Pair(_, Gt(0)))); in TEST()
/external/angle/third_party/abseil-cpp/absl/container/internal/
Dcontainer_memory_test.cc37 using ::testing::Gt;
83 EXPECT_THAT(AllocationMap(), ElementsAre(Pair(_, Gt(0)))); in TEST()

1234567