CMakeLists.txt 241 字节
Newer Older
1 2 3 4 5 6
# All source files of pd_dialect, except for the source file of op, which is generated in the compilation directory.
file(GLOB PD_PASS_SRCS "*.cc")

cc_library(
  pd_op_to_kernel_pass
  SRCS ${PD_PASS_SRCS}
H
hong 已提交
7
  DEPS ir phi_utils pd_interface)