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 ff169d5 commit 0335c7aCopy full SHA for 0335c7a
mlir/lib/Conversion/VectorToSPIRV/VectorToSPIRV.cpp
@@ -659,7 +659,7 @@ struct VectorDeinterleaveOpConvert final
659
auto indicesEven =
660
llvm::map_to_vector(seqEven, [](int i) { return i * 2; });
661
662
- // Indices for `res2`.
+ // Indices for `shuffleOdd` (result 1).
663
auto seqOdd = llvm::seq<int64_t>(n / 2);
664
auto indicesOdd =
665
llvm::map_to_vector(seqOdd, [](int i) { return i * 2 + 1; });
0 commit comments