Skip to content

Commit

Permalink
[bazel] Remove libraries that don't build anymore after 5e83a5b
Browse files Browse the repository at this point in the history
I don't know who uses these python extensions, probably nobody.
  • Loading branch information
d0k committed Jul 19, 2022
1 parent 8711fca commit 9235faf
Showing 1 changed file with 0 additions and 45 deletions.
45 changes: 0 additions & 45 deletions utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
Expand Up @@ -765,7 +765,6 @@ cc_library(
":CAPIDebugHeaders",
":CAPIGPUHeaders",
":CAPIIRHeaders",
":CAPIRegistrationHeaders",
":MLIRBindingsPythonHeaders",
"//llvm:Support",
"@pybind11",
Expand All @@ -787,7 +786,6 @@ cc_library(
":CAPIGPUObjects",
":CAPIIRObjects",
":CAPIInterfacesObjects",
":CAPIRegistrationObjects",
],
)

Expand Down Expand Up @@ -824,7 +822,6 @@ cc_binary(
deps = [
":CAPIIR",
":CAPILinalg",
":CAPIRegistration",
":MLIRBindingsPythonHeadersAndDeps",
],
)
Expand All @@ -843,7 +840,6 @@ cc_binary(
deps = [
":CAPIIR",
":CAPIQuant",
":CAPIRegistration",
":MLIRBindingsPythonHeadersAndDeps",
],
)
Expand All @@ -861,32 +857,11 @@ cc_binary(
],
deps = [
":CAPIIR",
":CAPIRegistration",
":CAPISparseTensor",
":MLIRBindingsPythonHeadersAndDeps",
],
)

# Dynamic library with the MLIR Conversions Python extension.
cc_binary(
name = "_mlirConversions.so",
srcs = ["lib/Bindings/Python/Conversions/Conversions.cpp"],
copts = PYBIND11_COPTS,
features = PYBIND11_FEATURES,
linkshared = 1,
linkstatic = 0,
tags = [
"manual", # External dependency
"nobuildkite", # TODO(gcmn): Add support for this target
],
deps = [
":CAPIConversion",
":MLIRBindingsPythonHeadersAndDeps",
"@pybind11",
"@python_runtime//:headers",
],
)

# Dynamic library with the MLIR Conversions Python extension.
cc_binary(
name = "_mlirExecutionEngine.so",
Expand All @@ -907,26 +882,6 @@ cc_binary(
],
)

# Dynamic library with the MLIR Transforms Python extension.
cc_binary(
name = "_mlirTransforms.so",
srcs = ["lib/Bindings/Python/Transforms/Transforms.cpp"],
copts = PYBIND11_COPTS,
features = PYBIND11_FEATURES,
linkshared = 1,
linkstatic = 0,
tags = [
"manual", # External dependency
"nobuildkite", # TODO(gcmn): Add support for this target
],
deps = [
":CAPITransforms",
":MLIRBindingsPythonHeadersAndDeps",
"@pybind11",
"@python_runtime//:headers",
],
)

# Dynamic library with the MLIR Linalg dialect+passes Python extension.
cc_binary(
name = "_mlirLinalgPasses.so",
Expand Down

0 comments on commit 9235faf

Please sign in to comment.