Home
last modified time | relevance | path

Searched refs:ClusterSize (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVNonUniformOps.td223 ClusterSize must be specified.
229 ClusterSize is the size of cluster to use. ClusterSize must be a scalar
289 ClusterSize is the size of cluster to use. ClusterSize must be a scalar
349 ClusterSize is the size of cluster to use. ClusterSize must be a scalar
406 ClusterSize is the size of cluster to use. ClusterSize must be a scalar
461 ClusterSize is the size of cluster to use. ClusterSize must be a scalar
516 ClusterSize is the size of cluster to use. ClusterSize must be a scalar
573 ClusterSize is the size of cluster to use. ClusterSize must be a scalar
630 ClusterSize is the size of cluster to use. ClusterSize must be a scalar
688 ClusterSize is the size of cluster to use. ClusterSize must be a scalar
[all …]
/llvm-project-15.0.7/bolt/lib/Passes/
H A DReorderAlgorithm.cpp77 uint64_t ClusterSize = 0; in computeClusterAverageFrequency() local
83 ClusterSize += BB->estimateSize(Emitter.MCE.get()); in computeClusterAverageFrequency()
86 AvgFreq[I] = ClusterSize == 0 ? 0 : Freq / ClusterSize; in computeClusterAverageFrequency()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DSwitchLoweringUtils.cpp220 uint64_t ClusterSize = (High - Low).getLimitedValue() + 1; in buildJumpTable() local
221 for (uint64_t J = 0; J < ClusterSize; ++J) in buildJumpTable()