Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/lib/Dialect/SPIRV/IR/
H A DSPIRVDialect.cpp290 SmallVector<int64_t, 1> countDims; in parseArrayType() local
292 if (parser.parseDimensionList(countDims, /*allowDynamic=*/false)) in parseArrayType()
294 if (countDims.size() != 1) { in parseArrayType()
302 int64_t count = countDims[0]; in parseArrayType()
411 SmallVector<int64_t, 1> countDims; in parseMatrixType() local
413 if (parser.parseDimensionList(countDims, /*allowDynamic=*/false)) in parseMatrixType()
415 if (countDims.size() != 1) { in parseMatrixType()
421 int64_t columnCount = countDims[0]; in parseMatrixType()