[llvm] [VPlan] Unroll VPReplicateRecipe by VF. (PR #142433)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 9 08:37:34 PDT 2025
================
@@ -907,6 +907,12 @@ class VPInstruction : public VPRecipeWithIRFlags,
BranchOnCount,
BranchOnCond,
Broadcast,
+ /// Creates a vector containing all operands. The vector element count
+ /// matches the number of operands.
+ BuildVector,
+ /// Creates a struct of vectors containing all operands. The vector element
+ /// count matches the number of operands.
----------------
ayalz wrote:
```suggestion
/// Creates a struct of vectors containing all operands. The number of operands
/// matches the number of fields in the struct.
```
?
https://github.com/llvm/llvm-project/pull/142433
More information about the llvm-commits
mailing list