[llvm] [Matrix] Propagate shape information through cast insts (PR #141869)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 5 08:54:33 PDT 2025
================
@@ -2198,6 +2230,37 @@ class LowerMatrixIntrinsics {
return true;
}
+ /// Lower cast instructions, if shape information is available.
+ bool VisitCastInstruction(CastInst *Inst) {
+ auto I = ShapeMap.find(Inst);
+ if (I == ShapeMap.end())
+ return false;
+
+ Value *Op = Inst->getOperand(0);
+
+ IRBuilder<> Builder(Inst);
+ ShapeInfo &Shape = I->second;
+
+ MatrixTy Result;
+ MatrixTy M = getMatrix(Op, Shape, Builder);
+
+ Builder.setFastMathFlags(getFastMathFlags(Inst));
+
+ auto *OrigVTy = cast<VectorType>(Inst->getType());
+ auto *NewVTy = VectorType::get(OrigVTy->getElementType(),
+ ElementCount::getFixed(M.getStride()));
+
+ for (unsigned I = 0; I < Shape.getNumVectors(); ++I)
+ Result.addVector(
+ Builder.CreateCast(Inst->getOpcode(), M.getVector(I), NewVTy));
+
+ finalizeLowering(Inst,
+ Result.addNumComputeOps(getNumOps(Result.getVectorTy()) *
+ Result.getNumVectors()),
+ Builder);
----------------
fhahn wrote:
I think this is the same for most `Visit*Instruction` (same as setting up `Result`), should we refactor the code and hoist it to do it in the caller?
https://github.com/llvm/llvm-project/pull/141869
More information about the llvm-commits
mailing list