Home
last modified time | relevance | path

Searched refs:kExp (Results 1 – 25 of 56) sorted by relevance

123

/external/openscreen/third_party/abseil/src/absl/random/internal/
Dgenerate_real.h92 static constexpr int kExp = std::numeric_limits<real_type>::digits - 1; variable
93 static constexpr uint_type kMask = (static_cast<uint_type>(1) << kExp) - 1u;
126 bits >>= (63 - kExp);
132 (static_cast<uint_type>(exp) << kExp) |
/external/webrtc/third_party/abseil-cpp/absl/random/internal/
Dgenerate_real.h92 static constexpr int kExp = std::numeric_limits<real_type>::digits - 1; variable
93 static constexpr uint_type kMask = (static_cast<uint_type>(1) << kExp) - 1u;
126 bits >>= (63 - kExp);
132 (static_cast<uint_type>(exp) << kExp) |
/external/abseil-cpp/absl/random/internal/
Dgenerate_real.h92 static constexpr int kExp = std::numeric_limits<real_type>::digits - 1; variable
93 static constexpr uint_type kMask = (static_cast<uint_type>(1) << kExp) - 1u;
126 bits >>= (63 - kExp);
132 (static_cast<uint_type>(exp) << kExp) |
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/random/internal/
Dgenerate_real.h92 static constexpr int kExp = std::numeric_limits<real_type>::digits - 1; variable
93 static constexpr uint_type kMask = (static_cast<uint_type>(1) << kExp) - 1u;
126 bits >>= (63 - kExp);
132 (static_cast<uint_type>(exp) << kExp) |
/external/libtextclassifier/abseil-cpp/absl/random/internal/
Dgenerate_real.h92 static constexpr int kExp = std::numeric_limits<real_type>::digits - 1; variable
93 static constexpr uint_type kMask = (static_cast<uint_type>(1) << kExp) - 1u;
126 bits >>= (63 - kExp);
132 (static_cast<uint_type>(exp) << kExp) |
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dcpu_instruction_fusion_test.cc58 ShapeUtil::MakeShape(F32, {1024, 256}), HloOpcode::kExp, arg0)); in TEST_F()
77 ShapeUtil::MakeShape(F32, {256, 1024}), HloOpcode::kExp, arg1)); in TEST_F()
96 ShapeUtil::MakeShape(F32, {2, 512, 2, 128}), HloOpcode::kExp, arg0)); in TEST_F()
117 ShapeUtil::MakeShape(F32, {2, 512, 2, 128}), HloOpcode::kExp, arg0)); in TEST_F()
139 ShapeUtil::MakeShape(F32, {32 * 1024, 256}), HloOpcode::kExp, arg1)); in TEST_F()
158 ShapeUtil::MakeShape(F32, {256, 1024}), HloOpcode::kExp, arg1)); in TEST_F()
320 HloInstruction::CreateUnary(param_shape, HloOpcode::kExp, param0)); in TEST_F()
330 module.get(), {HloOpcode::kNegate, HloOpcode::kReshape, HloOpcode::kExp, in TEST_F()
414 HloInstruction::CreateUnary(param_shape, HloOpcode::kExp, param0)); in TEST_F()
423 {HloOpcode::kNegate, HloOpcode::kExp, HloOpcode::kParameter}); in TEST_F()
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/cpu/tests/
Dcpu_intrinsic_test.cc124 HloOpcode::kExp, kTriple_x86_64, "",
128 HloOpcode::kExp, kTriple_x86_64, "+avx",
132 HloOpcode::kExp, kTriple_android_arm, "+neon",
Dcpu_fusion_test.cc103 HloInstruction::CreateUnary(vshape, HloOpcode::kExp, ceil)); in TEST_F()
179 HloInstruction::CreateUnary(cshape, HloOpcode::kExp, reduce)); in TEST_F()
305 HloInstruction::CreateUnary(shape, HloOpcode::kExp, constant)); in TEST_F()
310 HloInstruction::CreateUnary(shape, HloOpcode::kExp, constant)); in TEST_F()
327 EXPECT_EQ(HloOpcode::kExp, tuple->operand(2)->opcode()); in TEST_F()
/external/tensorflow/tensorflow/compiler/xla/service/
Dlogistic_expander.cc63 MakeUnaryHlo(HloOpcode::kExp, in ExpandLogisticWithExp()
83 case LogisticExpansionType::kExp: in ExpandInstruction()
Dhlo_cse_test.cc228 constant->shape(), HloOpcode::kExp, constant)); in TEST_F()
230 constant->shape(), HloOpcode::kExp, constant)); in TEST_F()
232 constant->shape(), HloOpcode::kExp, constant)); in TEST_F()
432 constant->shape(), HloOpcode::kExp, constant)); in TEST_F()
436 constant->shape(), HloOpcode::kExp, constant)); in TEST_F()
463 constant->shape(), HloOpcode::kExp, constant)); in TEST_F()
467 constant->shape(), HloOpcode::kExp, constant)); in TEST_F()
543 constant->shape(), HloOpcode::kExp, constant)); in TEST_F()
550 constant->shape(), HloOpcode::kExp, constant)); in TEST_F()
Dlogistic_expander.h29 kExp, // Expands as 1.0 / (1.0 + exp(-x)) enumerator
Dhlo_instruction_test.cc189 HloInstruction::CreateUnary(r0f32_, HloOpcode::kExp, foo)); in TEST_F()
191 HloInstruction::CreateUnary(r0f32_, HloOpcode::kExp, foo)); in TEST_F()
482 HloInstruction::CreateUnary(r0f32_, HloOpcode::kExp, foo)); in TEST_F()
550 HloInstruction::CreateUnary(r0f32_, HloOpcode::kExp, foo)); in TEST_F()
612 HloInstruction::CreateUnary(r0f32_, HloOpcode::kExp, foo)); in TEST_F()
634 HloInstruction::CreateUnary(r0f32_, HloOpcode::kExp, constant)); in TEST_F()
669 HloInstruction::CreateUnary(r0f32_, HloOpcode::kExp, constant)); in TEST_F()
671 HloInstruction::CreateUnary(r0f32_, HloOpcode::kExp, exp1)); in TEST_F()
673 HloInstruction::CreateUnary(r0f32_, HloOpcode::kExp, exp2)); in TEST_F()
690 HloInstruction::CreateUnary(r0f32_, HloOpcode::kExp, constant)); in TEST_F()
[all …]
Dlogistic_expander_test.cc92 LogisticExpander logistic_expander(LogisticExpansionType::kExp); in TEST_F()
Dhlo_memory_scheduler_test.cc78 HloInstruction::CreateUnary(vec, HloOpcode::kExp, param)); in TEST_F()
283 HloInstruction::CreateUnary(r1f32, HloOpcode::kExp, c3)); in TEST_F()
Dhlo_opcode.h86 V(kExp, "exponential", 1) \
Dhlo_dataflow_analysis_test.cc1348 HloInstruction::CreateUnary(vector_shape_, HloOpcode::kExp, negate)); in TEST_P()
1386 HloInstruction::CreateUnary(vector_shape_, HloOpcode::kExp, param1)); in TEST_P()
1445 HloInstruction::CreateUnary(scalar_shape_, HloOpcode::kExp, constant)); in TEST_P()
1534 HloInstruction::CreateUnary(vector_shape_, HloOpcode::kExp, param)); in TEST_P()
1568 HloInstruction::CreateUnary(vector_shape_, HloOpcode::kExp, param)); in TEST_P()
1608 HloInstruction::CreateUnary(vector_shape_, HloOpcode::kExp, param)); in TEST_P()
1666 HloInstruction::CreateUnary(vector_shape_, HloOpcode::kExp, param)); in TEST_P()
2207 HloInstruction::CreateUnary(shape, HloOpcode::kExp, param)); in TEST_F()
2291 HloInstruction::CreateUnary(data_shape, HloOpcode::kExp, neg)); in TEST_F()
2384 HloInstruction::CreateUnary(shape, HloOpcode::kExp, param)); in TEST_F()
Dhlo_reachability_test.cc112 HloInstruction::CreateUnary(r0f32, HloOpcode::kExp, negate)); in TEST_F()
/external/tensorflow/tensorflow/compiler/xla/service/gpu/tests/
Dgpu_ftz_test.cc102 CompileAndOptionallyVerifyPtx(CreateUnaryOpModule(HloOpcode::kExp), R"( in TEST_F()
110 CompileAndOptionallyVerifyPtx(CreateUnaryOpModule(HloOpcode::kExp), R"( in TEST_F()
/external/tensorflow/tensorflow/lite/toco/graph_transformations/
Dresolve_constant_unary.cc124 case OperatorType::kExp: in Run()
288 } else if (unary_op->type == OperatorType::kExp || in Run()
302 if (unary_op->type == OperatorType::kExp) { in Run()
Dreorder_elementwise_unary.cc34 case OperatorType::kExp: in IsElementwiseOperator()
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dtarget_util.h52 kExp, enumerator
Dinstruction_fusion_test.cc40 ShapeUtil::MakeShape(F32, {}), HloOpcode::kExp, const0)); in TEST_F()
80 ShapeUtil::MakeShape(F32, {}), HloOpcode::kExp, const0)); in TEST_F()
99 ShapeUtil::MakeShape(F32, {}), HloOpcode::kExp, const0)); in TEST_F()
Dtarget_util.cc123 case TargetDeviceFunctionID::kExp: { in GetDeviceFunctionRoot()
/external/tensorflow/tensorflow/compiler/xla/service/spmd/
Dfft_handler.cc206 HloInstruction::CreateUnary(hlo->shape(), HloOpcode::kExp, exp_operand)); in GetCorrectionFactor()
274 constant_factor->shape(), HloOpcode::kExp, constant_factor)); in GetFinalFftUsingCollectivePermute()
/external/tensorflow/tensorflow/lite/toco/tflite/
Dop_version.cc240 {{OperatorType::kExp, 1}, "1.7.0"}, in GetMinimumRuntimeVersionForModel()

123