Files
clang-p2996/mlir/lib/Dialect/OpenACC/CMakeLists.txt
Valentin Clement 4225e7fa34 [mlir][openacc] Introduce OpenACC dialect with parallel, data, loop operations
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
2020-08-13 10:01:30 -04:00

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
)