Lines Matching refs:indexBitwidth
138 const unsigned indexBitwidth = getTypeConverter()->getIndexTypeBitwidth(); in matchAndRewrite() local
139 if (indexBitwidth > 32) { in matchAndRewrite()
141 loc, IntegerType::get(context, indexBitwidth), newOp); in matchAndRewrite()
142 } else if (indexBitwidth < 32) { in matchAndRewrite()
144 loc, IntegerType::get(context, indexBitwidth), newOp); in matchAndRewrite()
162 LowerGpuOpsToNVVMOpsPass(unsigned indexBitwidth) { in LowerGpuOpsToNVVMOpsPass()
163 this->indexBitwidth = indexBitwidth; in LowerGpuOpsToNVVMOpsPass()
179 if (indexBitwidth != kDeriveIndexBitwidthFromDataLayout) in runOnOperation()
180 options.overrideIndexBitwidth(indexBitwidth); in runOnOperation()
296 mlir::createLowerGpuOpsToNVVMOpsPass(unsigned indexBitwidth) { in createLowerGpuOpsToNVVMOpsPass() argument
297 return std::make_unique<LowerGpuOpsToNVVMOpsPass>(indexBitwidth); in createLowerGpuOpsToNVVMOpsPass()