mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-03 13:11:25 +00:00
* Add dynamic elementwise op Co-authored-by: ThruptiRajLakshmanaGowda <thruptiraj.lakshmanagowda@amd.com> * CI issues fix * Custom parameter value for dynamic functions - Comments addressed --------- Co-authored-by: ThruptiRajLakshmanaGowda <thruptiraj.lakshmanagowda@amd.com> Co-authored-by: ThruptiRajLakshmanaGowda <tlakshma@amd.com>
17 lines
824 B
CMake
17 lines
824 B
CMake
add_subdirectory(binary)
|
|
add_subdirectory(convinvscale)
|
|
add_subdirectory(convscale)
|
|
add_subdirectory(convscale_relu)
|
|
add_subdirectory(convscale_add)
|
|
add_subdirectory(convscale_reduce)
|
|
add_subdirectory(multi_AB)
|
|
add_subdirectory(unary)
|
|
add_subdirectory(dynamic_unary)
|
|
|
|
add_custom_target(example_convnd_activ_xdl)
|
|
# ScaleAdd ScaleAdd Relu
|
|
add_example_executable(example_convnd_fwd_xdl_scaleadd_scaleadd_relu_fp16 convnd_fwd_xdl_scaleadd_scaleadd_relu_fp16.cpp)
|
|
add_example_dependencies(example_convnd_activ_xdl example_convnd_fwd_xdl_scaleadd_scaleadd_relu_fp16)
|
|
add_example_executable(example_convnd_fwd_xdl_scaleadd_scaleadd_relu_bcasted_bias_fp16 convnd_fwd_xdl_scaleadd_scaleadd_relu_bcasted_bias_fp16.cpp)
|
|
add_example_dependencies(example_convnd_activ_xdl example_convnd_fwd_xdl_scaleadd_scaleadd_relu_bcasted_bias_fp16)
|