This patch introduces the OpenACC dialect with three operation defined parallel, data and loop operations with custom parsing and printing. OpenACC dialect RFC can be find here: https://llvm.discourse.group/t/rfc-openacc-dialect/546/2 Reviewed By: rriddle, kiranchandramohan Differential Revision: https://reviews.llvm.org/D84268
14 lines
196 B
CMake
14 lines
196 B
CMake
add_mlir_dialect_library(MLIROpenACC
|
|
IR/OpenACC.cpp
|
|
|
|
ADDITIONAL_HEADER_DIRS
|
|
${MLIR_MAIN_INCLUDE_DIR}/mlir/Dialect/OpenACC
|
|
|
|
DEPENDS
|
|
MLIROpenACCOpsIncGen
|
|
|
|
LINK_LIBS PUBLIC
|
|
MLIRIR
|
|
)
|
|
|