MLIR  19.0.0git
LvlTypeParser.cpp
Go to the documentation of this file.
1 //===- LvlTypeParser.h - `LevelType` parser ----------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "LvlTypeParser.h"
11 
12 using namespace mlir;
13 using namespace mlir::sparse_tensor;
14 using namespace mlir::sparse_tensor::ir_detail;
15 
16 //===----------------------------------------------------------------------===//
17 #define FAILURE_IF_FAILED(STMT) \
18  if (failed(STMT)) { \
19  return failure(); \
20  }
21 
22 // NOTE: this macro assumes `AsmParser parser` and `SMLoc loc` are in scope.
23 #define ERROR_IF(COND, MSG) \
24  if (COND) { \
25  return parser.emitError(loc, MSG); \
26  }
27 
28 //===----------------------------------------------------------------------===//
29 // `LvlTypeParser` implementation.
30 //===----------------------------------------------------------------------===//
31 
33  StringRef base;
34  const auto loc = parser.getCurrentLocation();
35  ERROR_IF(failed(parser.parseOptionalKeyword(&base)),
36  "expected valid level format (e.g. dense, compressed or singleton)")
37  uint64_t properties = 0;
38  SmallVector<unsigned> structured;
39 
40  if (base.compare("structured") == 0) {
43  [&]() -> ParseResult { return parseStructured(parser, &structured); },
44  " in structured n out of m");
46  if (structured.size() != 2) {
47  parser.emitError(loc, "expected exactly 2 structured sizes");
48  return failure();
49  }
50  if (structured[0] > structured[1]) {
51  parser.emitError(loc, "expected n <= m in n_out_of_m");
52  return failure();
53  }
54  }
55 
58  [&]() -> ParseResult { return parseProperty(parser, &properties); },
59  " in level property list");
61 
62  // Set the base bit for properties.
63  if (base.compare("dense") == 0) {
64  properties |= static_cast<uint64_t>(LevelFormat::Dense);
65  } else if (base.compare("batch") == 0) {
66  properties |= static_cast<uint64_t>(LevelFormat::Batch);
67  } else if (base.compare("compressed") == 0) {
68  properties |= static_cast<uint64_t>(LevelFormat::Compressed);
69  } else if (base.compare("structured") == 0) {
70  properties |= static_cast<uint64_t>(LevelFormat::NOutOfM);
71  properties |= nToBits(structured[0]) | mToBits(structured[1]);
72  } else if (base.compare("loose_compressed") == 0) {
73  properties |= static_cast<uint64_t>(LevelFormat::LooseCompressed);
74  } else if (base.compare("singleton") == 0) {
75  properties |= static_cast<uint64_t>(LevelFormat::Singleton);
76  } else {
77  parser.emitError(loc, "unknown level format: ") << base;
78  return failure();
79  }
80 
81  ERROR_IF(!isValidLT(static_cast<LevelType>(properties)),
82  "invalid level type: level format doesn't support the properties");
83  return properties;
84 }
85 
86 ParseResult LvlTypeParser::parseProperty(AsmParser &parser,
87  uint64_t *properties) const {
88  StringRef strVal;
89  auto loc = parser.getCurrentLocation();
90  ERROR_IF(failed(parser.parseOptionalKeyword(&strVal)),
91  "expected valid level property (e.g. nonordered, nonunique or high)")
92  if (strVal.equals(toPropString(LevelPropNonDefault::Nonunique))) {
93  *properties |= static_cast<uint64_t>(LevelPropNonDefault::Nonunique);
94  } else if (strVal.equals(toPropString(LevelPropNonDefault::Nonordered))) {
95  *properties |= static_cast<uint64_t>(LevelPropNonDefault::Nonordered);
96  } else if (strVal.equals(toPropString(LevelPropNonDefault::SoA))) {
97  *properties |= static_cast<uint64_t>(LevelPropNonDefault::SoA);
98  } else {
99  parser.emitError(loc, "unknown level property: ") << strVal;
100  return failure();
101  }
102  return success();
103 }
104 
106 LvlTypeParser::parseStructured(AsmParser &parser,
107  SmallVector<unsigned> *structured) const {
108  int intVal;
109  auto loc = parser.getCurrentLocation();
110  OptionalParseResult intValParseResult = parser.parseOptionalInteger(intVal);
111  if (intValParseResult.has_value()) {
112  if (failed(*intValParseResult)) {
113  parser.emitError(loc, "failed to parse structured size");
114  return failure();
115  }
116  if (intVal < 0) {
117  parser.emitError(loc, "expected structured size to be >= 0");
118  return failure();
119  }
120  structured->push_back(intVal);
121  return success();
122  }
123  parser.emitError(loc, "expected valid integer for structured size");
124  return failure();
125 }
126 
127 //===----------------------------------------------------------------------===//
#define FAILURE_IF_FAILED(STMT)
#define ERROR_IF(COND, MSG)
This base class exposes generic asm parser hooks, usable across the various derived parsers.
@ OptionalParen
Parens supporting zero or more operands, or nothing.
@ OptionalSquare
Square brackets supporting zero or more ops, or nothing.
virtual OptionalParseResult parseOptionalInteger(APInt &result)=0
Parse an optional integer value from the stream.
virtual ParseResult parseCommaSeparatedList(Delimiter delimiter, function_ref< ParseResult()> parseElementFn, StringRef contextMessage=StringRef())=0
Parse a list of comma-separated items with an optional delimiter.
virtual ParseResult parseOptionalKeyword(StringRef keyword)=0
Parse the given keyword if present.
virtual InFlightDiagnostic emitError(SMLoc loc, const Twine &message={})=0
Emit a diagnostic at the specified location and return failure.
virtual SMLoc getCurrentLocation()=0
Get the location of the next token and store it into the argument.
This class provides support for representing a failure result, or a valid value of type T.
Definition: LogicalResult.h:78
This class implements Optional functionality for ParseResult.
Definition: OpDefinition.h:39
bool has_value() const
Returns true if we contain a valid ParseResult value.
Definition: OpDefinition.h:49
This class represents success/failure for parsing-like operations that find it important to chain tog...
FailureOr< uint64_t > parseLvlType(AsmParser &parser) const
constexpr uint64_t mToBits(uint64_t m)
Definition: Enums.h:395
constexpr uint64_t nToBits(uint64_t n)
Definition: Enums.h:394
bool isValidLT(LevelType lt)
Definition: Enums.h:429
constexpr const char * toPropString(LevelPropNonDefault lvlProp)
Returns string representation of the given level properties.
Definition: Enums.h:211
LevelPropNonDefault
This enum defines all the nondefault properties for storage formats.
Definition: Enums.h:204
Include the generated interface declarations.
LogicalResult failure(bool isFailure=true)
Utility function to generate a LogicalResult.
Definition: LogicalResult.h:62
LogicalResult success(bool isSuccess=true)
Utility function to generate a LogicalResult.
Definition: LogicalResult.h:56
bool failed(LogicalResult result)
Utility function that returns true if the provided LogicalResult corresponds to a failure value.
Definition: LogicalResult.h:72
This enum defines all the sparse representations supportable by the SparseTensor dialect.
Definition: Enums.h:238