Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/python/mlir/dialects/
H A D_pdl_ops_ext.py150 attributeNames = []
153 attributeNames.append(StringAttr.get(attrName))
155 attributeNames = ArrayAttr.get(attributeNames)
158 … super().__init__(result, args, attributeValues, attributeNames, types, name=name, loc=loc, ip=ip)
/llvm-project-15.0.7/mlir/lib/Dialect/PDL/IR/
H A DPDL.cpp270 ArrayAttr attributeNames = attributeNamesAttr(); in verify() local
272 if (attributeNames.size() != attributeValues.size()) { in verify()
276 << attributeNames.size() << " names and " << attributeValues.size() in verify()
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DOperationSupport.h128 ArrayRef<StringAttr> attributeNames; member
377 return impl->attributeNames; in getAttributeNames()
/llvm-project-15.0.7/mlir/test/Dialect/PDL/
H A Dinvalid.mlir124 attributeNames = ["attr"],
/llvm-project-15.0.7/mlir/include/mlir/Dialect/PDL/IR/
H A DPDLOps.td347 StrArrayAttr:$attributeNames,
352 custom<OperationOpAttributes>($attributes, $attributeNames)
/llvm-project-15.0.7/mlir/lib/IR/
H A DMLIRContext.cpp776 impl.attributeNames = cachedAttrNames; in insert()
/llvm-project-15.0.7/mlir/include/mlir/Dialect/PDLInterp/IR/
H A DPDLInterpOps.td438 "ValueRange":$attributes, "ArrayAttr":$attributeNames), [{
440 operands, attributes, attributeNames, types, inferredResultTypes);
/llvm-project-15.0.7/mlir/lib/Conversion/PDLToPDLInterp/
H A DPredicateTree.cpp147 for (auto it : llvm::zip(op.attributeNames(), op.attributes())) { in getTreePredicates()
H A DPDLToPDLInterp.cpp720 attributes, operationOp.attributeNames()); in generateRewriter()