-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[python] Remove unused MLIR components #2443
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# ============================================================================ # | ||
# Copyright (c) 2022 - 2024 NVIDIA Corporation & Affiliates. # | ||
# All rights reserved. # | ||
# # | ||
# This source code and the accompanying materials are made available under # | ||
# the terms of the Apache License 2.0 which accompanies this distribution. # | ||
# ============================================================================ # | ||
|
||
from ._mlir_libs._quakeDialects import register_all_dialects |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -6,19 +6,15 @@ | |||||
* the terms of the Apache License 2.0 which accompanies this distribution. * | ||||||
******************************************************************************/ | ||||||
|
||||||
#include "py_register_dialects.h" | ||||||
#include "cudaq/Optimizer/Builder/Intrinsics.h" | ||||||
#include "cudaq/Optimizer/CAPI/Dialects.h" | ||||||
#include "cudaq/Optimizer/CodeGen/Passes.h" | ||||||
#include "cudaq/Optimizer/CodeGen/Pipelines.h" | ||||||
#include "cudaq/Optimizer/Dialect/CC/CCDialect.h" | ||||||
#include "cudaq/Optimizer/Dialect/CC/CCOps.h" | ||||||
#include "cudaq/Optimizer/Dialect/CC/CCTypes.h" | ||||||
#include "cudaq/Optimizer/Dialect/Quake/QuakeDialect.h" | ||||||
#include "cudaq/Optimizer/Dialect/Quake/QuakeTypes.h" | ||||||
#include "cudaq/Optimizer/InitAllDialects.h" | ||||||
#include "cudaq/Optimizer/InitAllPasses.h" | ||||||
#include "cudaq/Optimizer/Transforms/Passes.h" | ||||||
#include "mlir/Bindings/Python/PybindAdaptors.h" | ||||||
#include "mlir/InitAllDialects.h" | ||||||
#include "mlir/CAPI/IR.h" | ||||||
#include <fmt/core.h> | ||||||
#include <pybind11/complex.h> | ||||||
#include <pybind11/stl.h> | ||||||
|
@@ -27,27 +23,9 @@ namespace py = pybind11; | |||||
using namespace mlir::python::adaptors; | ||||||
using namespace mlir; | ||||||
|
||||||
namespace cudaq { | ||||||
static bool registered = false; | ||||||
|
||||||
void registerQuakeDialectAndTypes(py::module &m) { | ||||||
static void registerQuakeTypes(py::module &m) { | ||||||
auto quakeMod = m.def_submodule("quake"); | ||||||
|
||||||
quakeMod.def( | ||||||
"register_dialect", | ||||||
[](MlirContext context, bool load) { | ||||||
MlirDialectHandle handle = mlirGetDialectHandle__quake__(); | ||||||
mlirDialectHandleRegisterDialect(handle, context); | ||||||
if (load) | ||||||
mlirDialectHandleLoadDialect(handle, context); | ||||||
|
||||||
if (!registered) { | ||||||
cudaq::registerCudaqPassesAndPipelines(); | ||||||
registered = true; | ||||||
} | ||||||
}, | ||||||
py::arg("context") = py::none(), py::arg("load") = true); | ||||||
|
||||||
mlir_type_subclass(quakeMod, "RefType", [](MlirType type) { | ||||||
return unwrap(type).isa<quake::RefType>(); | ||||||
}).def_classmethod("get", [](py::object cls, MlirContext ctx) { | ||||||
|
@@ -138,21 +116,10 @@ void registerQuakeDialectAndTypes(py::module &m) { | |||||
}); | ||||||
} | ||||||
|
||||||
void registerCCDialectAndTypes(py::module &m) { | ||||||
static void registerCCTypes(py::module &m) { | ||||||
|
||||||
auto ccMod = m.def_submodule("cc"); | ||||||
|
||||||
ccMod.def( | ||||||
"register_dialect", | ||||||
[](MlirContext context, bool load) { | ||||||
MlirDialectHandle ccHandle = mlirGetDialectHandle__cc__(); | ||||||
mlirDialectHandleRegisterDialect(ccHandle, context); | ||||||
if (load) { | ||||||
mlirDialectHandleLoadDialect(ccHandle, context); | ||||||
} | ||||||
}, | ||||||
py::arg("context") = py::none(), py::arg("load") = true); | ||||||
|
||||||
mlir_type_subclass(ccMod, "CharspanType", [](MlirType type) { | ||||||
return unwrap(type).isa<cudaq::cc::CharspanType>(); | ||||||
}).def_classmethod("get", [](py::object cls, MlirContext ctx) { | ||||||
|
@@ -292,10 +259,9 @@ void registerCCDialectAndTypes(py::module &m) { | |||||
}); | ||||||
} | ||||||
|
||||||
void bindRegisterDialects(py::module &mod) { | ||||||
registerQuakeDialectAndTypes(mod); | ||||||
registerCCDialectAndTypes(mod); | ||||||
static bool registered = false; | ||||||
|
||||||
void cudaq::bindRegisterDialects(py::module &mod) { | ||||||
mod.def("load_intrinsic", [](MlirModule module, std::string name) { | ||||||
auto unwrapped = unwrap(module); | ||||||
cudaq::IRBuilder builder = IRBuilder::atBlockEnd(unwrapped.getBody()); | ||||||
|
@@ -305,14 +271,22 @@ void bindRegisterDialects(py::module &mod) { | |||||
|
||||||
mod.def("register_all_dialects", [](MlirContext context) { | ||||||
DialectRegistry registry; | ||||||
registry.insert<quake::QuakeDialect, cudaq::cc::CCDialect>(); | ||||||
cudaq::registerAllDialects(registry); | ||||||
cudaq::opt::registerCodeGenDialect(registry); | ||||||
registerAllDialects(registry); | ||||||
auto *mlirContext = unwrap(context); | ||||||
MLIRContext *mlirContext = unwrap(context); | ||||||
mlirContext->appendDialectRegistry(registry); | ||||||
mlirContext->loadAllAvailableDialects(); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does loadAllAvailableDialects actually load Quake, CC, and CodeGen? Do we need an explicit test to verify that all the dialects we expect to be loaded are loaded? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I can make it uniform in a follow-up PR. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The codegen dialect was intended to be sort of second-class in that it would only be applicable at codegen time. The point being we don't want folks to start using it in ad hoc ways in random passes, etc. Adding a few landmines was sort of the idea. OTOH, we could clean it up a bit and remove some of those hurdles. We still don't want that dialect used "in the wild" though... |
||||||
}); | ||||||
|
||||||
// Register type and passes once, when the module is loaded. | ||||||
registerQuakeTypes(mod); | ||||||
registerCCTypes(mod); | ||||||
|
||||||
if (!registered) { | ||||||
cudaq::registerAllPasses(); | ||||||
registered = true; | ||||||
} | ||||||
|
||||||
mod.def("gen_vector_of_complex_constant", [](MlirLocation loc, | ||||||
MlirModule module, | ||||||
std::string name, | ||||||
|
@@ -324,4 +298,3 @@ void bindRegisterDialects(py::module &mod) { | |||||
builder.genVectorOfConstants(unwrap(loc), modOp, name, newValues); | ||||||
}); | ||||||
} | ||||||
} // namespace cudaq |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like it was pre-existing, but I'm not a fan of a global like this. Is there no good way to query whether things have been registered already by asking the dictionary of registered stuff?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, there are actually two options: (1) makes so the dialects get registered upon Python's module loading or (2) make MLIR python automagically register things.
Option (2) requires a slightly different sort of change that doesn't fit well with the rest of this PR. I had (2) implemented before, but I reverted the change because the CI is failing and I can't reproduce the issue locally, even when using the same docker image :(
After various experiments of changing the code, adding global state back, I still can't make it pass CI. (So this is the state of my last try, I will update the branch and revisit the change.)