Add missing operands to represent copyin with readonly modifier, copyout with zero modifier
and create with zero modifier.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/lib/Dialect/OpenACC/IR/OpenACC.cpp | ||
---|---|---|
439 | Ultra-nit: that's a lot of space taken on stack (8 x sizeof(intptr_t) x number of operand groups). I'd take something like 2 for SmallVector stack-allocated size here unless some lists expect very long lists of values. |
mlir/lib/Dialect/OpenACC/IR/OpenACC.cpp | ||
---|---|---|
439 | Sure! didn't think about it when adding new variables here. |
Ultra-nit: that's a lot of space taken on stack (8 x sizeof(intptr_t) x number of operand groups). I'd take something like 2 for SmallVector stack-allocated size here unless some lists expect very long lists of values.