Home
last modified time | relevance | path

Searched refs:Pow (Results 1 – 25 of 157) sorted by relevance

1234567

/external/tensorflow/tensorflow/core/kernels/mlir_generated/
Dgpu_op_pow.cc20 GENERATE_AND_REGISTER_BINARY_GPU_KERNEL(Pow, DT_HALF);
21 GENERATE_AND_REGISTER_BINARY_GPU_KERNEL(Pow, DT_FLOAT);
22 GENERATE_AND_REGISTER_BINARY_GPU_KERNEL(Pow, DT_DOUBLE);
23 GENERATE_AND_REGISTER_BINARY_GPU_KERNEL(Pow, DT_INT64);
Dgpu_binary_ops_test.cc449 GENERATE_DEFAULT_TESTS_WITH_SPECIFIC_INPUT_VALUES(Pow,
455 GENERATE_DEFAULT_TESTS_WITH_SPECIFIC_INPUT_VALUES(Pow,
460 GENERATE_DEFAULT_TESTS_WITH_SPECIFIC_INPUT_VALUES(Pow,
465 GENERATE_DEFAULT_TESTS_WITH_SPECIFIC_INPUT_VALUES(Pow,
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/
DPow.pbtxt2 name: "Pow"
32 name: "Pow"
63 name: "Pow"
94 name: "Pow"
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/
DPow.pbtxt2 name: "Pow"
32 name: "Pow"
63 name: "Pow"
/external/tensorflow/tensorflow/core/api_def/java_api/
Dapi_def_Pow.pbtxt2 graph_op_name: "Pow"
4 name: "math.Pow"
/external/rust/crates/num-traits/src/
Dpow.rs6 pub trait Pow<RHS> { interface
35 impl Pow<$rhs> for $t { impl
43 impl<'a> Pow<&'a $rhs> for $t { impl
51 impl<'a> Pow<$rhs> for &'a $t { impl
59 impl<'a, 'b> Pow<&'a $rhs> for &'b $t { impl
157 use super::Pow;
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dquantize_and_dequantize_op.cc125 -Pow(two, ConvertElementType( in Compile()
130 -Pow(two, ConvertElementType( in Compile()
134 Pow(two, ConvertElementType(num_bits - xla::ConstantR0<int32>(b, 1), in Compile()
139 max_quantized = Pow(two, ConvertElementType(num_bits, xla_type)) - one; in Compile()
Dlrn_ops.cc61 auto scale = xla::Pow( in Compile()
168 xla::Pow(norm, xla::ConstantR0<float>(builder, -beta_)))); in Compile()
/external/llvm-project/mlir/test/Dialect/SPIRV/
Dglslops.mlir240 // spv.GLSL.Pow
244 // CHECK: spv.GLSL.Pow {{%.*}}, {{%.*}} : f32
245 %2 = spv.GLSL.Pow %arg0, %arg1 : f32
250 // CHECK: spv.GLSL.Pow {{%.*}}, {{%.*}} : vector<3xf16>
251 %2 = spv.GLSL.Pow %arg0, %arg1 : vector<3xf16>
/external/llvm-project/mlir/test/Dialect/SPIRV/Serialization/
Dglsl-ops.mlir27 // CHECK: {{%.*}} = spv.GLSL.Pow {{%.*}} : f32
28 %11 = spv.GLSL.Pow %arg0, %arg1 : f32
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp1474 Value *LibCallSimplifier::replacePowWithExp(CallInst *Pow, IRBuilder<> &B) { in replacePowWithExp() argument
1475 Value *Base = Pow->getArgOperand(0), *Expo = Pow->getArgOperand(1); in replacePowWithExp()
1476 AttributeList Attrs = Pow->getCalledFunction()->getAttributes(); in replacePowWithExp()
1477 Module *Mod = Pow->getModule(); in replacePowWithExp()
1478 Type *Ty = Pow->getType(); in replacePowWithExp()
1497 if (BaseFn && BaseFn->hasOneUse() && BaseFn->isFast() && Pow->isFast()) { in replacePowWithExp()
1548 if (!match(Pow->getArgOperand(0), m_APFloat(BaseF))) in replacePowWithExp()
1575 if (Pow->doesNotAccessMemory()) in replacePowWithExp()
1592 if (Pow->hasOneUse() && Pow->hasApproxFunc() && Pow->hasNoNaNs() && in replacePowWithExp()
1593 Pow->hasNoInfs() && BaseF->isNormal() && !BaseF->isNegative()) { in replacePowWithExp()
[all …]
/external/llvm-project/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp1456 Value *LibCallSimplifier::replacePowWithExp(CallInst *Pow, IRBuilderBase &B) { in replacePowWithExp() argument
1457 Value *Base = Pow->getArgOperand(0), *Expo = Pow->getArgOperand(1); in replacePowWithExp()
1459 Module *Mod = Pow->getModule(); in replacePowWithExp()
1460 Type *Ty = Pow->getType(); in replacePowWithExp()
1479 if (BaseFn && BaseFn->hasOneUse() && BaseFn->isFast() && Pow->isFast()) { in replacePowWithExp()
1530 if (!match(Pow->getArgOperand(0), m_APFloat(BaseF))) in replacePowWithExp()
1557 if (Pow->doesNotAccessMemory()) in replacePowWithExp()
1574 if (Pow->hasApproxFunc() && Pow->hasNoNaNs() && BaseF->isFiniteNonZero() && in replacePowWithExp()
1589 if (Pow->doesNotAccessMemory()) in replacePowWithExp()
1623 Value *LibCallSimplifier::replacePowWithSqrt(CallInst *Pow, IRBuilderBase &B) { in replacePowWithSqrt() argument
[all …]
/external/tensorflow/tensorflow/compiler/xla/tests/
Dexhaustive_binary_16_bit_test.cc126 BINARY_TEST_16BIT(DISABLED_ON_GPU(DISABLED_ON_CPU(Pow)), {
134 Run(AddEmptyBroadcastDimension(Pow), std::pow);
/external/tensorflow/tensorflow/core/api_def/python_api/
Dapi_def_Pow.pbtxt2 graph_op_name: "Pow"
/external/tensorflow/tensorflow/core/kernels/mlir_generated/op_definitions/
Dpow.mlir.tmpl3 %0 = "tf.Pow"(%arg0, %arg1) {T = elem_type, device = ""}
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Pow.pbtxt2 graph_op_name: "Pow"
/external/swiftshader/src/Reactor/
DOptimalIntrinsics.hpp37 Float4 Pow(RValue<Float4> x, RValue<Float4> y);
/external/deqp/external/vulkancts/data/vulkan/amber/graphicsfuzz/
Dpow-vec4.amber85 %27 = OpExtInst %13 %1 Pow %25 %26
/external/deqp-deps/SPIRV-Headers/include/spirv/1.1/
DOpenCL.std.h80 Pow = 48, enumerator
/external/swiftshader/third_party/SPIRV-Headers/include/spirv/1.0/
DOpenCL.std.h80 Pow = 48, enumerator
/external/deqp-deps/SPIRV-Headers/include/spirv/1.2/
DOpenCL.std.h80 Pow = 48, enumerator
/external/angle/third_party/vulkan-deps/spirv-headers/src/include/spirv/1.0/
DOpenCL.std.h80 Pow = 48, enumerator
/external/swiftshader/third_party/SPIRV-Headers/include/spirv/1.2/
DOpenCL.std.h80 Pow = 48, enumerator
/external/shaderc/spirv-headers/include/spirv/1.0/
DOpenCL.std.h80 Pow = 48, enumerator
/external/deqp-deps/SPIRV-Headers/include/spirv/1.0/
DOpenCL.std.h80 Pow = 48, enumerator

1234567