Home
last modified time | relevance | path

Searched refs:getBlockSize (Results 1 – 21 of 21) sorted by relevance

/llvm-project-15.0.7/openmp/libomptarget/DeviceRTL/src/
H A DMapping.cpp108 return mapping::getBlockSize() / mapping::getWarpSize(); in getNumberOfWarpsInBlock()
164 return (mapping::getBlockSize() + mapping::getWarpSize() - 1) / in getNumberOfWarpsInBlock()
230 uint32_t mapping::getBlockSize(bool IsSPMD) { in getBlockSize() function in mapping
235 uint32_t mapping::getBlockSize() { in getBlockSize() function in mapping
236 return mapping::getBlockSize(mapping::isSPMDMode()); in getBlockSize()
H A DKernel.cpp103 mapping::getThreadIdInBlock() < mapping::getBlockSize(IsSPMD)) { in __kmpc_target_init()
H A DParallelism.cpp52 uint32_t NumThreads = mapping::getBlockSize(); in determineNumberOfThreads()
H A DState.cpp199 ICVState.NThreadsVar = mapping::getBlockSize(IsSPMD); in init()
/llvm-project-15.0.7/openmp/libomptarget/DeviceRTL/include/
H A DMapping.h86 uint32_t getBlockSize();
87 uint32_t getBlockSize(bool IsSPMD);
/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/
H A DExplainOutputStyle.cpp94 return FileOffset / File.pdb().getBlockSize(); in pdbBlockIndex()
98 uint64_t BlockStart = pdbBlockIndex() * File.pdb().getBlockSize(); in pdbBlockOffset()
108 return ((pdbBlockIndex() - 1) % File.pdb().getBlockSize() == 0); in isPdbFpm1()
111 return ((pdbBlockIndex() - 2) % File.pdb().getBlockSize() == 0); in isPdbFpm2()
207 uint32_t FpmChunk = pdbBlockIndex() / File.pdb().getBlockSize(); in explainPdbFpmBlockOffset()
213 8 * (FpmChunk * File.pdb().getBlockSize() + pdbBlockOffset()); in explainPdbFpmBlockOffset()
253 getOffsetInStream(Layout.Blocks, FileOffset, File.pdb().getBlockSize()); in explainPdbStreamOffset()
281 getOffsetInStream(DirectoryBlocks, FileOffset, File.pdb().getBlockSize()); in explainPdbStreamDirectoryOffset()
H A DBytesOutputStyle.cpp213 Base *= File.getBlockSize(); in dumpBlockRanges()
215 auto ExpectedData = File.getBlockData(I, File.getBlockSize()); in dumpBlockRanges()
H A DYAMLOutputStyle.cpp89 Obj.Headers->SuperBlock.BlockSize = File.getBlockSize(); in dumpFileHeaders()
H A DDumpOutputStyle.cpp248 P.formatLine("Block Size: {0}", getPdb().getBlockSize()); in dumpFileSummary()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/MSF/
H A DMappedBlockStream.h72 uint32_t getBlockSize() const { return BlockSize; } in getBlockSize() function
142 uint32_t getBlockSize() const { return ReadInterface.getBlockSize(); } in getBlockSize() function
H A DIMSFFile.h24 virtual uint32_t getBlockSize() const = 0;
/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DLinePrinter.cpp223 auto Runs = computeBlockRuns(File.getBlockSize(), Stream); in formatMsfStreamData()
236 uint64_t Base = FoundRun.Block * File.getBlockSize() + RunOffset; in formatMsfStreamData()
262 std::min(L, static_cast<uint64_t>(File.getBlockSize())); in formatMsfStreamBlocks()
264 cantFail(File.getBlockData(Blocks.front(), File.getBlockSize())); in formatMsfStreamBlocks()
266 BaseOffset *= File.getBlockSize(); in formatMsfStreamBlocks()
H A DPDBFile.cpp54 uint32_t PDBFile::getBlockSize() const { return ContainerLayout.SB->BlockSize; } in getBlockSize() function in PDBFile
106 uint64_t StreamBlockOffset = msf::blockToOffset(BlockIndex, getBlockSize()); in getBlockData()
/llvm-project-15.0.7/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp392 uint64_t BlockNum = Offset / getBlockSize(); in writeBytes()
393 uint64_t OffsetInBlock = Offset % getBlockSize(); in writeBytes()
400 std::min(BytesLeft, getBlockSize() - OffsetInBlock); in writeBytes()
404 uint64_t MsfOffset = blockToOffset(StreamBlockAddr, getBlockSize()); in writeBytes()
/llvm-project-15.0.7/mlir/lib/Dialect/GPU/IR/
H A DInferIntRangeInterfaceImpls.cpp92 KernelDim3 blockDims = getBlockSize(); in inferResultRanges()
H A DGPUDialect.cpp440 KernelDim3 LaunchOp::getBlockSize() { in getBlockSize() function in LaunchOp
513 printSizeAssignment(p, getBlockSize(), getBlockSizeOperandValues(), in print()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/PDB/Native/
H A DPDBFile.h54 uint32_t getBlockSize() const override;
/llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/tests/
H A Dsecondary_test.cpp45 EXPECT_GE(SecondaryT::getBlockSize(P), Size); in testSecondaryBasic()
/llvm-project-15.0.7/llvm/unittests/DebugInfo/MSF/
H A DMappedBlockStreamTest.cpp80 EXPECT_EQ(F.block_size(), S->getBlockSize()); in TEST()
/llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/
H A Dsecondary.h437 static uptr getBlockSize(void *Ptr) { in getBlockSize() function
/llvm-project-15.0.7/mlir/include/mlir/Dialect/GPU/IR/
H A DGPUOps.td578 KernelDim3 getBlockSize();