Skip to content

Commit

Permalink
[mlir][linalg] Fix isAllParallelLoops method implementation. (#115179)
Browse files Browse the repository at this point in the history
  • Loading branch information
javedabsar1 authored Nov 6, 2024
1 parent 3ed4b0b commit a1be09a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlir/include/mlir/Dialect/Linalg/IR/LinalgInterfaces.td
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def LinalgStructuredInterface
/*args=*/(ins),
/*methodBody=*/"",
/*defaultImplementation=*/[{
return getNumParallelLoops() == getNumParallelLoops();
return getNumParallelLoops() == getNumLoops();
}]
>,
InterfaceMethod<
Expand Down

0 comments on commit a1be09a

Please sign in to comment.