/third_party/mindspore/mindspore/core/ops/ |
D | reciprocal.h | 30 class MS_CORE_API Reciprocal : public PrimitiveC { 33 Reciprocal() : PrimitiveC(prim::kPrimReciprocal->name()) { InitIOName({"x"}, {"y"}); } in Reciprocal() function 35 ~Reciprocal() = default; 36 MS_DECLARE_PARENT(Reciprocal, PrimitiveC); 43 using PrimReciprocalPtr = std::shared_ptr<Reciprocal>;
|
D | reciprocal.cc | 66 REGISTER_PRIMITIVE_C(kNameReciprocal, Reciprocal);
|
/third_party/boost/boost/graph/ |
D | closeness_centrality.hpp | 17 typename Reciprocal = detail::reciprocal< ResultType > > 29 BOOST_CONCEPT_ASSERT((AdaptableUnaryFunctionConcept< Reciprocal, in operator ()() 34 Reciprocal rec; 59 typename Reciprocal > 61 typename property_traits< DistanceMap >::value_type, T, Reciprocal > 65 return closeness_measure< Graph, Distance, T, Reciprocal >(); in measure_closeness()
|
/third_party/mindspore/mindspore/lite/src/delegate/npu/op/ |
D | arithmetic_self_npu.cc | 68 op_ = CreateOperator<hiai::op::Reciprocal>(name_); in Init() 126 SetInputs<hiai::op::Reciprocal>(npu_inputs, op_); in SetNPUInputs()
|
/third_party/python/Tools/msi/bundle/bootstrap/ |
D | pythonba.def | 4 ; This software is released under Microsoft Reciprocal License (MS-RL).
|
D | LICENSE.txt | 5 Microsoft Reciprocal License (MS-RL) 20 …(A) Reciprocal Grants- For any file you distribute that contains code from the software (in source…
|
/third_party/mindspore/tests/st/ops/ascend/test_tbe_ops/ |
D | test_reciprocal.py | 29 self.reciprocal = P.Reciprocal()
|
/third_party/mindspore/mindspore/ccsrc/transform/graph_ir/op_declare/ |
D | elewise_calculation_ops_declare.h | 161 DECLARE_OP_ADAPTER(Reciprocal) 162 DECLARE_OP_USE_OUTPUT(Reciprocal)
|
D | elewise_calculation_ops_declare.cc | 419 INPUT_MAP(Reciprocal) = {{1, INPUT_DESC(x)}}; 420 ATTR_MAP(Reciprocal) = EMPTY_ATTR_MAP; 421 OUTPUT_MAP(Reciprocal) = {{0, OUTPUT_DESC(y)}}; 422 REG_ADPT_DESC(Reciprocal, kNameReciprocal, ADPT_DESC(Reciprocal))
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/math/ |
D | unary_op_gpu_kernel.cc | 57 MS_REG_GPU_KERNEL_ONE(Reciprocal, KernelAttr().AddInputAttr(kNumberTypeFloat32).AddOutputAttr(kNumb… 59 MS_REG_GPU_KERNEL_ONE(Reciprocal, KernelAttr().AddInputAttr(kNumberTypeFloat16).AddOutputAttr(kNumb…
|
D | unary_op_gpu_kernel.h | 123 …Reciprocal(input_addr, output_addr, inputs[0]->size / sizeof(T), reinterpret_cast<cudaStream_t>(st… in Launch()
|
/third_party/mindspore/mindspore/nn/wrap/ |
D | loss_scale.py | 29 reciprocal = P.Reciprocal() 129 self.reciprocal = P.Reciprocal() 434 reciprocal = P.Reciprocal()
|
/third_party/mindspore/tests/st/ops/gpu/ |
D | test_reciprocal_op.py | 28 self.reciprocal = P.Reciprocal()
|
/third_party/mindspore/tests/ut/python/ops/ |
D | test_ops_reid.py | 66 'block': P.Reciprocal(),
|
/third_party/mindspore/tests/ut/python/pipeline/parse/ |
D | test_for_stmt.py | 78 self.op_seq = (P.Sqrt(), P.Reciprocal(), P.Square())
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/ |
D | unary_op_impl.cu | 444 void Reciprocal(const T *input, T *output, const size_t count, cudaStream_t cuda_stream) { in Reciprocal() function 557 template void Reciprocal<double>(const double *input, double *output, const size_t count, cudaStrea… 583 template void Reciprocal<float>(const float *input, float *output, const size_t count, cudaStream_t… 608 template void Reciprocal<half>(const half *input, half *output, const size_t count, cudaStream_t cu… 633 template void Reciprocal<char>(const char *input, char *output, const size_t count, cudaStream_t cu… 665 template void Reciprocal<unsigned char>(const unsigned char *input, unsigned char *output, const si… 706 template void Reciprocal<int>(const int *input, int *output, const size_t count, cudaStream_t cuda_…
|
D | unary_op_impl.cuh | 37 void Reciprocal(const T *input, T *output, const size_t count, cudaStream_t cuda_stream);
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | OptimalIntrinsics.cpp | 19 Float4 Reciprocal(RValue<Float4> x, bool pp = false, bool finite = false, bool exactAtPow2 = false) in Reciprocal() function 53 Float4 r = Reciprocal(s2 * s2 + c2 * c2, false, true, false); in SinOrCos()
|
/third_party/mindspore/mindspore/ops/_grad/ |
D | grad_math_ops.py | 474 @bprop_getters.register(P.Reciprocal) 489 reciprocal = P.Reciprocal() 502 reciprocal = P.Reciprocal() 1233 reciprocal = P.Reciprocal() 1254 reciprocal = P.Reciprocal()
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/ |
D | arithmetic_self_cpu_kernel.cc | 131 void Reciprocal(const T *in, T *out, size_t size) { in Reciprocal() function 329 {prim::kPrimReciprocal->name(), Reciprocal<T>}, in LaunchKernel()
|
D | arithmetic_self_cpu_kernel.h | 86 MS_REG_CPU_KERNEL(Reciprocal, KernelAttr().AddInputAttr(kNumberTypeFloat32).AddOutputAttr(kNumberTy…
|
/third_party/mindspore/mindspore/lite/schema/ |
D | model_v0.fbs | 258 Reciprocal,
|
/third_party/mindspore/mindspore/lite/src/ops/ |
D | ops_func_declare.h | 381 FUNC_MSOP2SCHEMAOP_DECLARE(Reciprocal)
|
D | ops_def.cc | 135 OP_TYPE(Reciprocal) 813 OP_SCHEMA_DEF(Reciprocal) 814 OP_SCHEMA_DEF_END(Reciprocal)
|
/third_party/mindspore/mindspore/ops/operations/ |
D | __init__.py | 59 Reciprocal, CumSum, HistogramFixedWidth, SquaredDifference, Xdivy, Xlogy,
|