Home
last modified time | relevance | path

Searched refs:ShapeInfo (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp197 struct ShapeInfo { struct
203 ShapeInfo(unsigned NumRows = 0, unsigned NumColumns = 0) in ShapeInfo() argument
207 ShapeInfo(Value *NumRows, Value *NumColumns) in ShapeInfo() argument
208 : ShapeInfo(cast<ConstantInt>(NumRows)->getZExtValue(), in ShapeInfo()
211 bool operator==(const ShapeInfo &other) { in operator ==() argument
214 bool operator!=(const ShapeInfo &other) { return !(*this == other); } in operator !=() argument
236 ShapeInfo t() const { return ShapeInfo(NumColumns, NumRows); } in t() argument
260 static std::optional<ShapeInfo>
262 const ValueMap<Value *, ShapeInfo> &ShapeMap) { in computeShapeInfoForInst()
268 return ShapeInfo(M, K); in computeShapeInfoForInst()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FastTileConfig.cpp125 for (auto &ShapeInfo : ShapeInfos) { in configBasicBlock() local
127 unsigned TMMIdx = ShapeInfo.first; in configBasicBlock()
128 Register RowReg = ShapeInfo.second.getRow()->getReg(); in configBasicBlock()
129 Register ColReg = ShapeInfo.second.getCol()->getReg(); in configBasicBlock()