Home
last modified time | relevance | path

Searched refs:numWorkers (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Dialect/OpenACC/IR/
H A DOpenACC.cpp240 OptionalParseResult async, numGangs, numWorkers, vectorLength; in parse() local
261 numWorkers = parseOptionalOperandAndType( in parse()
263 if (numWorkers.hasValue() && failed(*numWorkers)) in parse()
368 static_cast<int32_t>(numWorkers.hasValue() ? 1 : 0), in parse()
409 if (Value numWorkers = this->numWorkers()) in print() local
410 printer << " " << ParallelOp::getNumWorkersKeyword() << "(" << numWorkers in print()
411 << ": " << numWorkers.getType() << ")"; in print()
497 numOptional += numWorkers() ? 1 : 0; in getDataOperand()
/llvm-project-15.0.7/flang/test/Lower/OpenACC/
H A Dacc-parallel.f9012 integer :: numWorkers = 10 local
H A Dacc-parallel-loop.f9012 integer :: numWorkers = 10 local
/llvm-project-15.0.7/flang/lib/Lower/
H A DOpenACC.cpp359 mlir::Value numWorkers; in createParallelOp() local
400 numWorkers = fir::getBase(converter.genExprValue( in createParallelOp()
497 addOperand(operands, operandSegments, numWorkers); in createParallelOp()
/llvm-project-15.0.7/mlir/test/Dialect/OpenACC/
H A Dops.mlir122 %numWorkers = arith.constant 10 : i64
125 …acc.parallel num_gangs(%numGangs: i64) num_workers(%numWorkers: i64) private(%c : memref<10xf32>) {
/llvm-project-15.0.7/mlir/include/mlir/Dialect/OpenACC/
H A DOpenACCOps.td98 Optional<IntOrIndex>:$numWorkers,