Searched refs:operationName (Results 1 – 10 of 10) sorted by relevance
| /llvm-project-15.0.7/mlir/lib/Bindings/Python/ |
| H A D | IRModule.cpp | 74 void PyGlobals::registerOperationImpl(const std::string &operationName, in registerOperationImpl() argument 77 py::object &found = operationClassMap[operationName]; in registerOperationImpl() 80 operationName + in registerOperationImpl() 84 rawOpViewClassMap[operationName] = std::move(rawOpViewClass); in registerOperationImpl() 105 PyGlobals::lookupRawOpViewClass(llvm::StringRef operationName) { in lookupRawOpViewClass() argument 107 auto foundIt = rawOpViewClassMapCache.find(operationName); in lookupRawOpViewClass() 117 auto split = operationName.split('.'); in lookupRawOpViewClass() 123 auto foundIt = rawOpViewClassMap.find(operationName); in lookupRawOpViewClass() 129 rawOpViewClassMapCache[operationName] = foundIt->second; in lookupRawOpViewClass() 133 rawOpViewClassMap[operationName] = py::none(); in lookupRawOpViewClass()
|
| H A D | Globals.h | 70 void registerOperationImpl(const std::string &operationName, 82 lookupRawOpViewClass(llvm::StringRef operationName);
|
| H A D | MainModule.cpp | 69 std::string operationName = in PYBIND11_MODULE() local 72 PyGlobals::get().registerOperationImpl(operationName, opClass, in PYBIND11_MODULE()
|
| /llvm-project-15.0.7/mlir/lib/CAPI/Interfaces/ |
| H A D | Interfaces.cpp | 26 bool mlirOperationImplementsInterfaceStatic(MlirStringRef operationName, in mlirOperationImplementsInterfaceStatic() argument 30 StringRef(operationName.data, operationName.length), unwrap(context)); in mlirOperationImplementsInterfaceStatic()
|
| /llvm-project-15.0.7/mlir/lib/CAPI/IR/ |
| H A D | Pass.cpp | 50 MlirStringRef operationName) { in mlirPassManagerGetNestedUnder() argument 51 return wrap(&unwrap(passManager)->nest(unwrap(operationName))); in mlirPassManagerGetNestedUnder() 55 MlirStringRef operationName) { in mlirOpPassManagerGetNestedUnder() argument 56 return wrap(&unwrap(passManager)->nest(unwrap(operationName))); in mlirOpPassManagerGetNestedUnder()
|
| /llvm-project-15.0.7/mlir/include/mlir-c/ |
| H A D | Pass.h | 87 MlirPassManager passManager, MlirStringRef operationName); 93 MlirOpPassManager passManager, MlirStringRef operationName);
|
| H A D | Interfaces.h | 36 mlirOperationImplementsInterfaceStatic(MlirStringRef operationName,
|
| /llvm-project-15.0.7/mlir/include/mlir/Pass/ |
| H A D | PassManager.h | 218 StringRef operationName = "builtin.module"); 219 PassManager(MLIRContext *ctx, StringRef operationName) in PassManager() argument 220 : PassManager(ctx, Nesting::Explicit, operationName) {} in PassManager()
|
| /llvm-project-15.0.7/mlir/lib/Pass/ |
| H A D | Pass.cpp | 773 StringRef operationName) in PassManager() argument 774 : OpPassManager(OperationName(operationName, ctx), nesting), context(ctx), in PassManager()
|
| /llvm-project-15.0.7/mlir/docs/ |
| H A D | PassManagement.md | 404 PassManager pm(ctx, /*operationName=*/"builtin.module");
|