Home
last modified time | relevance | path

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

12345678910

/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Delu_op.cc36 const auto pred = xla::Gt(ctx->Input(0), zero); in Compile()
54 const auto pred = xla::Gt(activation, zero); in Compile()
73 const auto pred = xla::Gt(ctx->Input(0), zero); in Compile()
96 const auto pred = xla::Gt(activation, zero); in Compile()
Drelu_op.cc78 const auto pred = xla::Gt(ctx->Input(1), zero); in Compile()
97 xla::And(xla::Lt(ctx->Input(1), six), xla::Gt(ctx->Input(1), zero)), in Compile()
113 xla::Select(xla::Gt(features, xla::ScalarLike(features, 0)), gradients, in Compile()
Dquantize_and_dequantize_op.cc112 Select(Gt(min_quantized * min_range, zero), min_quantized / min_range, in Compile()
115 Select(Gt(max_quantized * max_range, zero), max_quantized / max_range, in Compile()
Dimage_ops.cc51 xla::Select(xla::Gt(value, zero), xla::Div(range, value), zeros); in RGBToHSV()
63 hue = xla::Select(xla::Gt(range, zero), hue, zeros); in RGBToHSV()
509 xla::XlaOp iou_thresh_mask = xla::Gt(iou, iou_thresh + square_zero); in Compile()
527 xla::Gt(scores, xla::Broadcast(score_thresh, {num_boxes})); in Compile()
/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.cc581 Gt(ConstantR0<float>(&builder, 2.0f), ConstantR0<float>(&builder, 1.0f)); in XLA_TEST_F()
603 TestCompare<int32>(1, 5, false, &Gt); in XLA_TEST_F()
634 TestCompare<uint32>(1, 5, false, &Gt); in XLA_TEST_F()
635 TestCompare<uint32>(5, 5, false, &Gt); in XLA_TEST_F()
636 TestCompare<uint32>(5, 1, true, &Gt); in XLA_TEST_F()
665 TestCompare<float>(1.0, 5.2, false, &Gt); in XLA_TEST_F()
Dpred_test.cc77 TestCompare(true, false, true, &Gt); in TEST_F()
Doutfeed_in_nested_computation_test.cc47 Gt(loop_counter, ConstantR0<int32_t>(&cond_builder, 0)); in XLA_TEST_F()
/external/webrtc/webrtc/modules/audio_processing/agc/
Dagc_unittest.cc24 using ::testing::Gt;
96 EXPECT_CALL(checker_, LevelChanged(_, Gt(179))).Times(AtLeast(1)); in TEST_F()
151 AllOf(Gt(last_level * 0.95), Lt(last_level * 1.05)))) in TEST_F()
/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/google-breakpad/src/testing/test/
Dgmock-generated-matchers_test.cc66 using testing::Gt;
126 EXPECT_THAT(t, Not(Args<0, 2>(Gt()))); in TEST()
137 EXPECT_THAT(t, (Args<2, 0>(Gt()))); in TEST()
210 const Matcher<tuple<int, char> > m = Args<1, 0>(Gt()); in TEST()
295 Matcher<vector<int> > m = ElementsAre(Gt(5)); in TEST()
312 Matcher<const list<int>& > m = ElementsAre(Gt(5)); in TEST()
960 EXPECT_THAT(42, TwoOf(Gt(0), Lt(50), Eq(10))); in TEST()
961 EXPECT_THAT(0, Not(TwoOf(Gt(-1), Lt(1), Eq(0)))); in TEST()
972 EXPECT_THAT(some_list, Contains(Gt(2.5))); in TEST()
1075 EXPECT_THAT(a, Contains(Gt(2))); in TEST()
[all …]
Dgmock-matchers_test.cc89 using testing::Gt;
820 Matcher<double> m1 = Gt(0); in TEST()
828 Matcher<int> m = Gt(5); in TEST()
1196 Matcher<int> is_positive = Gt(0); in TEST()
1312 Matcher<int> is_positive = Gt(0); in TEST()
1836 Matcher<const Tuple2&> m = Gt(); in TEST()
1844 Matcher<const Tuple2&> m = Gt(); in TEST()
1910 Matcher<int> greater_than_5 = Gt(5); in TEST()
1937 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
1943 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
[all …]
/external/googletest/googlemock/test/
Dgmock-generated-matchers_test.cc76 using testing::Gt;
155 Matcher<vector<int> > m = ElementsAre(Gt(5)); in TEST()
172 Matcher<const list<int>& > m = ElementsAre(Gt(5)); in TEST()
964 EXPECT_THAT(42, TwoOf(Gt(0), Lt(50), Eq(10))); in TEST()
965 EXPECT_THAT(0, Not(TwoOf(Gt(-1), Lt(1), Eq(0)))); in TEST()
976 EXPECT_THAT(some_list, Contains(Gt(2.5))); in TEST()
1080 EXPECT_THAT(a, Contains(Gt(2))); in TEST()
1081 EXPECT_THAT(a, Not(Contains(Gt(4)))); in TEST()
1088 EXPECT_THAT(std::make_tuple(pointer, 2), Not(Contains(Gt(3)))); in TEST()
1285 EXPECT_THAT(p, AllOf(Pointee(Eq(3)), Pointee(Gt(0)), Pointee(Lt(5)))); in TEST()
[all …]
Dgmock-matchers_test.cc1060 Matcher<double> m1 = Gt(0); in TEST()
1068 Matcher<int> m = Gt(5); in TEST()
1151 EXPECT_CALL(helper, Call(Gt(ByRef(m)))); in TEST()
1541 Matcher<int> is_positive = Gt(0); in TEST()
1663 Matcher<int> is_positive = Gt(0); in TEST()
2258 Matcher<const Tuple2&> m = Gt(); in TEST()
2266 Matcher<const Tuple2&> m = Gt(); in TEST()
2483 Matcher<int> greater_than_5 = Gt(5); in TEST()
2510 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
2516 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
[all …]
/external/apache-xml/src/main/java/org/apache/xpath/operations/
DGt.java29 public class Gt extends Operation class
/external/libunwind/doc/
Dcommon.tex.in6 \newcommand{\Gt}{\symbol{"3E}}
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dmath.cc217 return Select(Gt(Abs(x), ScalarLike(x, 1)), ErfcImpl(x), in Erfc()
392 Select(Gt(abs_frac_input, ScalarLike(abs_frac_input, 0.5)), in Lgamma()
507 return Select(Or(Gt(fraction, half), And(Eq(fraction, half), is_odd)), in RoundToEven()
619 auto from_magnitude_larger_than_to = Gt(from_abs, to_abs); in NextAfter()
Dcomparators.cc156 operand_types, builder, Gt); in CreateScalarGtComputation()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/tools/llvm-exegesis/AArch64/
DTargetTest.cpp18 using testing::Gt;
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DErrorTest.cpp823 EXPECT_THAT_EXPECTED(Expected<int>(1), HasValue(testing::Gt(0))); in TEST()
825 EXPECT_THAT_EXPECTED(Expected<int>(0), HasValue(testing::Gt(1))), in TEST()
830 HasValue(testing::Gt(1))), in TEST()
/external/honggfuzz/examples/apache-httpd/corpus_http1/
D2de02b960eac7e363b2834f43be1b763.00001220.honggfuzz.cov21 …�|��Şo6'��7��[%(/��U;v�qs606&m:u�Қ���_��Y]�.^U!�kj��\��٤@�0YXb��8�q�k".Gt%�J�U�ְ��LCKI(b*�6�}݂…
38 …�|��Şo6'��7��[%(/��U;v�qs606&m:u�Қ���_��Y]�.^U!�kj��\��٤@�0YXb��8�q�k".Gt%�J�U�ְ��LCKI(b*�6�}݂…
/external/v8/src/wasm/
Dwasm-opcodes.cc83 CASE_ALL_SIGN_OP(Gt, "gt") in OpcodeName()
217 CASE_F32x4_OP(Gt, "gt") in OpcodeName()
235 CASE_SIGN_OP(SIMDI, Gt, "gt") in OpcodeName()
/external/tensorflow/tensorflow/python/autograph/converters/
Dlogical_expressions.py47 gast.Gt: 'ag__.gt',
/external/perfetto/src/tracing/test/
Dmock_consumer.cc136 testing::Gt(0u)))) in WaitForTraceStats()

12345678910