Home
last modified time | relevance | path

Searched refs:columnCount (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Dialect/SPIRV/IR/
H A DSPIRVTypes.cpp1078 MatrixTypeStorage(Type columnType, uint32_t columnCount) in MatrixTypeStorage()
1079 : TypeStorage(), columnType(columnType), columnCount(columnCount) {} in MatrixTypeStorage()
1092 return key == KeyTy(columnType, columnCount); in operator ==()
1096 const uint32_t columnCount; member
1099 MatrixType MatrixType::get(Type columnType, uint32_t columnCount) { in get() argument
1100 return Base::get(columnType.getContext(), columnType, columnCount); in get()
1104 Type columnType, uint32_t columnCount) { in getChecked() argument
1106 columnCount); in getChecked()
1110 Type columnType, uint32_t columnCount) { in verify() argument
1111 if (columnCount < 2 || columnCount > 4) in verify()
[all …]
H A DSPIRVDialect.cpp421 int64_t columnCount = countDims[0]; in parseMatrixType() local
423 if (columnCount < 2 || columnCount > 4) { in parseMatrixType()
436 return MatrixType::get(columnType, columnCount); in parseMatrixType()
/llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVTypes.h429 static MatrixType get(Type columnType, uint32_t columnCount);
432 Type columnType, uint32_t columnCount);
435 Type columnType, uint32_t columnCount);