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.cpp193 struct ShapeInfo { struct
199 ShapeInfo(unsigned NumRows = 0, unsigned NumColumns = 0) in ShapeInfo() function
203 ShapeInfo(Value *NumRows, Value *NumColumns) in ShapeInfo() function
204 : ShapeInfo(cast<ConstantInt>(NumRows)->getZExtValue(), in ShapeInfo()
207 bool operator==(const ShapeInfo &other) { in operator ==() argument
210 bool operator!=(const ShapeInfo &other) { return !(*this == other); } in operator !=() argument
232 ShapeInfo t() const { return ShapeInfo(NumColumns, NumRows); } in t() argument
234 friend raw_ostream &operator<<(raw_ostream &OS, ShapeInfo SI);
239 raw_ostream &operator<<(raw_ostream &OS, ShapeInfo SI) { in operator <<()
300 static std::optional<ShapeInfo>
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FastTileConfig.cpp138 for (auto &ShapeInfo : ShapeInfos) { in configBasicBlock() local
140 unsigned TMMIdx = ShapeInfo.first; in configBasicBlock()
141 Register RowReg = ShapeInfo.second.getRow()->getReg(); in configBasicBlock()
142 Register ColReg = ShapeInfo.second.getCol()->getReg(); in configBasicBlock()