Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/lib/Bindings/Python/
H A DIRAttributes.cpp153 SmallVector<MlirAttribute> mlirAttributes; in bindDerived() local
154 mlirAttributes.reserve(py::len(attributes)); in bindDerived()
156 mlirAttributes.push_back(pyTryCast<PyAttribute>(attribute)); in bindDerived()
159 context->get(), mlirAttributes.size(), mlirAttributes.data()); in bindDerived()
H A DIRCore.cpp1122 llvm::SmallVector<std::pair<std::string, MlirAttribute>, 4> mlirAttributes; in create() local
1150 mlirAttributes.reserve(attributes->size()); in create()
1164 mlirAttributes.emplace_back(std::move(key), attribute); in create()
1200 if (!mlirAttributes.empty()) { in create()
1205 mlirNamedAttributes.reserve(mlirAttributes.size()); in create()
1206 for (auto &it : mlirAttributes) in create()