We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1789cd0 commit bd3728dCopy full SHA for bd3728d
mlir/lib/Dialect/Async/Transforms/AsyncParallelFor.cpp
@@ -175,11 +175,6 @@ ArrayRef<BlockArgument> ParallelComputeFunctionArgs::lowerBounds() {
175
return args.drop_front(2 + 1 * numLoops).take_front(numLoops);
176
}
177
178
-[[maybe_unused]]
179
-ArrayRef<BlockArgument> ParallelComputeFunctionArgs::upperBounds() {
180
- return args.drop_front(2 + 2 * numLoops).take_front(numLoops);
181
-}
182
-
183
ArrayRef<BlockArgument> ParallelComputeFunctionArgs::steps() {
184
return args.drop_front(2 + 3 * numLoops).take_front(numLoops);
185
0 commit comments