Home
last modified time | relevance | path

Searched refs:Zeros (Results 1 – 25 of 48) sorted by relevance

12

/third_party/mindspore/mindspore/core/ops/
Dzeros.h31 class MS_CORE_API Zeros : public PrimitiveC {
34 Zeros() : PrimitiveC(prim::kPrimZeros->name()) {} in Zeros() function
36 ~Zeros() = default;
37 MS_DECLARE_PARENT(Zeros, PrimitiveC);
Dzeros.cc68 REGISTER_PRIMITIVE_EVAL_IMPL(Zeros, prim::kPrimZeros, ZerosInfer, ZerosInferValue, false);
/third_party/flutter/skia/third_party/externals/angle2/src/tests/compiler_tests/
DFloatLex_test.cpp62 static std::string Zeros(size_t count) { return std::string(count, '0'); } in Zeros() function in FloatLexTest
86 ss << "0." << TestFixture::Zeros(100) << "125e102"; in TYPED_TEST()
93 ss << "9" << TestFixture::Zeros(100) << ".0e-100"; in TYPED_TEST()
100 ss << "0." << TestFixture::Zeros(5000) << "125e5002"; in TYPED_TEST()
107 ss << "9" << TestFixture::Zeros(5000) << ".0e-5000"; in TYPED_TEST()
207 ss << "1" << TestFixture::Zeros(32) << ".0e2147483640"; in TYPED_TEST()
214 ss << "0." << TestFixture::Zeros(32) << "1e-2147483640"; in TYPED_TEST()
/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/
DFloatLex_test.cpp62 static std::string Zeros(size_t count) { return std::string(count, '0'); } in Zeros() function in FloatLexTest
86 ss << "0." << TestFixture::Zeros(100) << "125e102"; in TYPED_TEST()
93 ss << "9" << TestFixture::Zeros(100) << ".0e-100"; in TYPED_TEST()
100 ss << "0." << TestFixture::Zeros(5000) << "125e5002"; in TYPED_TEST()
107 ss << "9" << TestFixture::Zeros(5000) << ".0e-5000"; in TYPED_TEST()
207 ss << "1" << TestFixture::Zeros(32) << ".0e2147483640"; in TYPED_TEST()
214 ss << "0." << TestFixture::Zeros(32) << "1e-2147483640"; in TYPED_TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DScaledNumber.cpp65 if (int Zeros = countLeadingZeros(Dividend64)) { in divide32() local
66 Shift -= Zeros; in divide32()
67 Dividend64 <<= Zeros; in divide32()
87 if (int Zeros = countTrailingZeros(Divisor)) { in divide64() local
88 Shift -= Zeros; in divide64()
89 Divisor >>= Zeros; in divide64()
97 if (int Zeros = countLeadingZeros(Dividend)) { in divide64() local
98 Shift -= Zeros; in divide64()
99 Dividend <<= Zeros; in divide64()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceELFStreamer.h77 static const char Zeros[16] = {0}; in writeZeroPadding() local
80 writeBytes(llvm::StringRef(Zeros, 16)); in writeZeroPadding()
82 writeBytes(llvm::StringRef(Zeros, N % 16)); in writeZeroPadding()
DIceASanInstrumentation.cpp285 const SizeT Zeros = VarSize >> ShadowScaleLog2; in instrumentFuncStart() local
288 ((VarSize + RzPadding) >> ShadowScaleLog2) - Zeros - 1; in instrumentFuncStart()
289 if (Zeros > 0) in instrumentFuncStart()
290 PoisonVals.emplace_back(Entry{Zeros, 0}); in instrumentFuncStart()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/Disassembler/
DPPCDisassembler.cpp314 unsigned Zeros = countTrailingZeros(Imm); in decodeCRBitMOperand() local
315 assert(Zeros < 8 && "Invalid CR bit value"); in decodeCRBitMOperand()
317 Inst.addOperand(MCOperand::createReg(CRRegs[7 - Zeros])); in decodeCRBitMOperand()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonConstPropagation.cpp409 bool evaluateCLBr(const RegisterSubReg &R1, bool Zeros, bool Ones,
411 bool evaluateCLBi(const APInt &A1, bool Zeros, bool Ones, APInt &Result);
412 bool evaluateCTBr(const RegisterSubReg &R1, bool Zeros, bool Ones,
414 bool evaluateCTBi(const APInt &A1, bool Zeros, bool Ones, APInt &Result);
1663 bool MachineConstEvaluator::evaluateCLBr(const RegisterSubReg &R1, bool Zeros, in evaluateCLBr() argument
1675 evaluateCLBi(A, Zeros, Ones, CA); in evaluateCLBr()
1684 bool MachineConstEvaluator::evaluateCLBi(const APInt &A1, bool Zeros, in evaluateCLBi() argument
1687 if (!Zeros && !Ones) in evaluateCLBi()
1690 if (Zeros && (Count == 0)) in evaluateCLBi()
1698 bool MachineConstEvaluator::evaluateCTBr(const RegisterSubReg &R1, bool Zeros, in evaluateCTBr() argument
[all …]
/third_party/boost/libs/math/doc/sf/
Dairy.qbk232 [section:airy_root Finding Zeros of Airy Functions]
335 [h4 Examples of finding Airy Zeros]
387 [endsect] [/section:airy_root Finding Zeros of Airy Functions]
Dbessel_jy.qbk253 [section:bessel_root Finding Zeros of Bessel Functions of the First and Second Kinds]
478 [@http://dlmf.nist.gov/10.21#vi [sect]10.21(vi) McMahon's Asymptotic Expansions for Large Zeros] - …
544 [endsect] [/section:bessel Finding Zeros of Bessel Functions of the First and Second Kinds]
/third_party/mindspore/mindspore/ops/_grad/
Dgrad_inner_ops.py94 dx = inner.MatrixSetDiag()(dout, P.Zeros()(diag_shape, grad_dtype), assist)
/third_party/mindspore/tests/ut/python/ops/
Dtest_array_ops.py72 zeros = P.Zeros()
79 zeros = P.Zeros()
/third_party/python/Lib/test/decimaltestdata/
DdqNextMinus.decTest75 -- Zeros
DddNextMinus.decTest75 -- Zeros
DddNextPlus.decTest71 -- Zeros
DdqNextPlus.decTest71 -- Zeros
Dnextminus.decTest94 -- Zeros
Dnextplus.decTest94 -- Zeros
DddNextToward.decTest130 -- Zeros
224 -- Zeros
DdqNextToward.decTest131 -- Zeros
225 -- Zeros
Dnexttoward.decTest145 -- Zeros
268 -- Zeros
/third_party/mindspore/mindspore/ops/operations/
D__init__.py25 … Fill, Ones, Zeros, GatherNd, GatherV2, Gather, SparseGatherV2, InvertPermutation,
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineExtendedDynamicStateTests.cpp390 struct Zeros struct in vkt::pipeline::__anon85e540580111::MultipleBindingsVertex
394 Zeros (const tcu::Vec2&) in Zeros() argument
486 …result.push_back(createSingleBindingVertexData<Zeros>(coords, dataOffset, trailingPadding, padding… in createVertexData()
488 …result.push_back(createSingleBindingVertexData<Zeros>(coords, dataOffset, trailingPadding, padding… in createVertexData()
490 …result.push_back(createSingleBindingVertexData<Zeros>(coords, dataOffset, trailingPadding, padding… in createVertexData()
501 strides.push_back(static_cast<vk::VkDeviceSize>(sizeof(Zeros))); in getVertexDataStrides()
503 strides.push_back(static_cast<vk::VkDeviceSize>(sizeof(Zeros))); in getVertexDataStrides()
505 strides.push_back(static_cast<vk::VkDeviceSize>(sizeof(Zeros))); in getVertexDataStrides()
/third_party/libffi/
Dacinclude.m4147 dnl set libat_gnu_ld_version to 12345. Zeros cause problems.
249 dnl set libat_gnu_ld_version to 12345. Zeros cause problems.

12