Skip to content

Commit

Permalink
added operation comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Berke-Ates committed Aug 7, 2023
1 parent 12c8e88 commit 6fc0d43
Show file tree
Hide file tree
Showing 2 changed files with 124 additions and 53 deletions.
4 changes: 2 additions & 2 deletions lib/SDFG/Dialect/Dialect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ static void printDimensionList(AsmPrinter &printer, Type &elemType,
printer << elemType << ">";
}

/// Parses an array type.
/// Attempts to parse an array type.
::mlir::Type ArrayType::parse(::mlir::AsmParser &odsParser) {
Type elementType;
SmallVector<StringAttr> symbols;
Expand Down Expand Up @@ -142,7 +142,7 @@ ArrayRef<int64_t> ArrayType::getIntegers() {
/// (false = symbolic size, true = integer constant)
ArrayRef<bool> ArrayType::getShape() { return getDimensions().getShape(); }

/// Parses a stream type.
/// Attempts to parse a stream type.
::mlir::Type StreamType::parse(::mlir::AsmParser &odsParser) {
Type elementType;
SmallVector<StringAttr> symbols;
Expand Down
Loading

0 comments on commit 6fc0d43

Please sign in to comment.