/external/tensorflow/tensorflow/compiler/tf2xla/kernels/ |
D | elu_op.cc | 30 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()
|
D | relu_op.cc | 66 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()
|
D | quantize_and_dequantize_op.cc | 146 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/ |
D | GtestMatchers.cpp | 34 case GtestCmp::Gt: in getComparisonDecl() 52 case GtestCmp::Gt: in getAssertMacro() 70 case GtestCmp::Gt: in getExpectMacro()
|
/external/llvm-project/llvm/unittests/Support/ |
D | MatchersTest.cpp | 15 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/ |
D | select_test.cc | 125 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()
|
D | while_test.cc | 59 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 …]
|
D | scalar_computations_test.cc | 591 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/ |
D | receiver_unittest.cc | 44 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/ |
D | stats_plugin_end2end_test.cc | 201 ::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/ |
D | math.cc | 287 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/ |
D | op.rs | 43 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/ |
D | GtestMatchers.h | 28 Gt, enumerator
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
D | Gt.java | 29 public class Gt extends Operation class
|
/external/googletest/googlemock/test/ |
D | gmock-matchers_test.cc | 1000 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/ |
D | TargetTest.cpp | 27 using testing::Gt;
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | topk_rewriter.cc | 61 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/ |
D | usage-store_test.cc | 27 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/ |
D | FileIndexTests.cpp | 44 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/ |
D | rtp_format_unittest.cc | 25 using ::testing::Gt; 199 EXPECT_THAT(payload_sizes, Each(Gt(0))); in TEST()
|
/external/llvm-project/llvm/unittests/tools/llvm-exegesis/X86/ |
D | SnippetGeneratorTest.cpp | 29 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/ |
D | container_memory_test.cc | 37 using ::testing::Gt; 83 EXPECT_THAT(AllocationMap(), ElementsAre(Pair(_, Gt(0)))); in TEST()
|
/external/openscreen/third_party/abseil/src/absl/container/internal/ |
D | container_memory_test.cc | 37 using ::testing::Gt; 83 EXPECT_THAT(AllocationMap(), ElementsAre(Pair(_, Gt(0)))); in TEST()
|
/external/libtextclassifier/abseil-cpp/absl/container/internal/ |
D | container_memory_test.cc | 37 using ::testing::Gt; 83 EXPECT_THAT(AllocationMap(), ElementsAre(Pair(_, Gt(0)))); in TEST()
|
/external/angle/third_party/abseil-cpp/absl/container/internal/ |
D | container_memory_test.cc | 37 using ::testing::Gt; 83 EXPECT_THAT(AllocationMap(), ElementsAre(Pair(_, Gt(0)))); in TEST()
|