Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/include/mlir/Dialect/Tosa/Utils/
H A DCoversionUtils.h57 SmallVector<ShapedType> dynTypes; in checkHasDynamicBatchDims() local
62 dynTypes.push_back(paramTy); in checkHasDynamicBatchDims()
65 if (dynTypes.empty()) in checkHasDynamicBatchDims()
68 for (const ShapedType &dynTy : dynTypes) { in checkHasDynamicBatchDims()
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DExtensibleDialect.h480 auto it = dynTypes.find(id); in lookupTypeDefinition()
481 if (it == dynTypes.end()) in lookupTypeDefinition()
533 DenseMap<TypeID, std::unique_ptr<DynamicTypeDefinition>> dynTypes;
/llvm-project-15.0.7/mlir/lib/IR/
H A DExtensibleDialect.cpp400 auto registered = dynTypes.try_emplace(typeID, std::move(type)).second; in registerDynamicType()