File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed
mlir/include/mlir/Dialect/GPU
utils/bazel/llvm-project-overlay/mlir Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,11 @@ mlir_tablegen(CompilationAttrInterfaces.h.inc -gen-attr-interface-decls)
21
21
mlir_tablegen (CompilationAttrInterfaces.cpp.inc -gen-attr-interface-defs )
22
22
add_public_tablegen_target (MLIRGPUCompilationAttrInterfacesIncGen )
23
23
24
+ set (LLVM_TARGET_DEFINITIONS GPUDeviceMappingAttr.td )
25
+ mlir_tablegen (GPUDeviceMapperEnums.h.inc -gen-enum-decls )
26
+ mlir_tablegen (GPUDeviceMapperEnums.cpp.inc -gen-enum-defs )
27
+ add_public_tablegen_target (MLIRGPUDeviceMapperEnumsGen )
28
+
24
29
set (LLVM_TARGET_DEFINITIONS GPUOps.td )
25
30
mlir_tablegen (GPUOpsAttributes.h.inc -gen-attrdef-decls -attrdefs-dialect=gpu )
26
31
mlir_tablegen (GPUOpsAttributes.cpp.inc -gen-attrdef-defs -attrdefs-dialect=gpu )
File renamed without changes.
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ include "mlir/Dialect/DLTI/DLTIBase.td"
17
17
include "mlir/Dialect/GPU/IR/GPUBase.td"
18
18
include "mlir/Dialect/GPU/IR/CompilationAttrInterfaces.td"
19
19
include "mlir/Dialect/GPU/IR/CompilationAttrs.td"
20
+ include "mlir/Dialect/GPU/IR/GPUDeviceMappingAttr.td"
20
21
include "mlir/Dialect/GPU/IR/ParallelLoopMapperAttr.td"
21
- include "mlir/Dialect/GPU/TransformOps/GPUDeviceMappingAttr.td"
22
22
include "mlir/IR/CommonTypeConstraints.td"
23
23
include "mlir/IR/EnumAttr.td"
24
24
include "mlir/IR/SymbolInterfaces.td"
Original file line number Diff line number Diff line change @@ -4,8 +4,3 @@ mlir_tablegen(GPUTransformOps.cpp.inc -gen-op-defs)
4
4
add_public_tablegen_target (MLIRGPUTransformOpsIncGen )
5
5
6
6
add_mlir_doc (GPUTransformOps GPUTransformOps Dialects/ -gen-op-doc )
7
-
8
- set (LLVM_TARGET_DEFINITIONS GPUDeviceMappingAttr.td )
9
- mlir_tablegen (GPUDeviceMapperEnums.h.inc -gen-enum-decls )
10
- mlir_tablegen (GPUDeviceMapperEnums.cpp.inc -gen-enum-defs )
11
- add_public_tablegen_target (MLIRGPUDeviceMapperEnumsGen )
Original file line number Diff line number Diff line change @@ -5421,9 +5421,9 @@ td_library(
5421
5421
"include/mlir/Dialect/GPU/IR/CompilationAttrInterfaces.td" ,
5422
5422
"include/mlir/Dialect/GPU/IR/CompilationAttrs.td" ,
5423
5423
"include/mlir/Dialect/GPU/IR/GPUBase.td" ,
5424
+ "include/mlir/Dialect/GPU/IR/GPUDeviceMappingAttr.td" ,
5424
5425
"include/mlir/Dialect/GPU/IR/GPUOps.td" ,
5425
5426
"include/mlir/Dialect/GPU/IR/ParallelLoopMapperAttr.td" ,
5426
- "include/mlir/Dialect/GPU/TransformOps/GPUDeviceMappingAttr.td" ,
5427
5427
],
5428
5428
includes = ["include" ],
5429
5429
deps = [
@@ -5451,7 +5451,7 @@ gentbl_cc_library(
5451
5451
),
5452
5452
],
5453
5453
tblgen = ":mlir-tblgen" ,
5454
- td_file = "include/mlir/Dialect/GPU/TransformOps /GPUDeviceMappingAttr.td" ,
5454
+ td_file = "include/mlir/Dialect/GPU/IR /GPUDeviceMappingAttr.td" ,
5455
5455
deps = [
5456
5456
":GPUOpsTdFiles" ,
5457
5457
":OpBaseTdFiles" ,
You can’t perform that action at this time.
0 commit comments