Lines Matching defs:ShapeInfo
197 struct ShapeInfo { struct
198 unsigned NumRows;
199 unsigned NumColumns;
201 bool IsColumnMajor;
203 ShapeInfo(unsigned NumRows = 0, unsigned NumColumns = 0) in ShapeInfo() argument
207 ShapeInfo(Value *NumRows, Value *NumColumns) in ShapeInfo() argument
211 bool operator==(const ShapeInfo &other) { in operator ==()
214 bool operator!=(const ShapeInfo &other) { return !(*this == other); } in operator !=()
218 operator bool() const { in operator bool()
223 unsigned getStride() const { in getStride()
229 unsigned getNumVectors() const { in getNumVectors()
236 ShapeInfo t() const { return ShapeInfo(NumColumns, NumRows); } in t()
747 Value *Op0, ShapeInfo Shape0, Value *Op1, ShapeInfo Shape1, in distributeTransposes() argument