Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DLowerMatrixIntrinsics.cpp349 struct ShapeInfo { struct in __anon2dace2cf0111::LowerMatrixIntrinsics
350 unsigned NumRows;
351 unsigned NumColumns;
353 bool IsColumnMajor;
355 ShapeInfo(unsigned NumRows = 0, unsigned NumColumns = 0) in ShapeInfo() function
359 ShapeInfo(Value *NumRows, Value *NumColumns) in ShapeInfo() function
363 bool operator==(const ShapeInfo &other) { in operator ==()
366 bool operator!=(const ShapeInfo &other) { return !(*this == other); } in operator !=()
370 operator bool() const { in operator bool()
375 unsigned getStride() const { in getStride()
[all …]