23 lines
474 B
CMake
23 lines
474 B
CMake
add_op_to_compiled_list()
|
|
|
|
if (BUILD_OPEN_PROJECT)
|
|
target_sources(op_host_aclnn PRIVATE
|
|
causal_conv1d_def.cpp
|
|
)
|
|
endif()
|
|
|
|
add_ops_compile_options(
|
|
OP_NAME CausalConv1d
|
|
OPTIONS
|
|
--cce-auto-sync=on
|
|
-Wno-deprecated-declarations
|
|
)
|
|
|
|
if (NOT BUILD_OPS_RTY_KERNEL)
|
|
add_modules_sources(OPTYPE causal_conv1d ACLNNTYPE aclnn)
|
|
target_include_directories(${OPHOST_NAME}_tiling_obj PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
endif()
|
|
|