mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-20 04:49:54 +00:00
* Enable CMakePresets build
* Verify Convolution, Scaling and ReLU algorithms.
* Add tensor element-wise scale and type cast operation.
* Reduction implemented but does not work.
* Exploration of Reduction functionality.
* Completed example for Convolution scaled with ReLu activation and AMAX reduction.
* WIP: Add required instances for convolution.
* WIP: Create client example. Implement convolution stage.
* Add elementwise instances.
* Add elementwise scale + convert example.
* Add reduction instances.
* WIP: Client example for AMAX reduction.
* WIP: Add instances for multistage reduction.
* WIP: Implementation of multistage reduction.
* Refactoring.
* Clean up.
* Guard off FP8 instances when the data type is not available.
* Improve output readability.
* Addressing reviewer's comments.
[ROCm/composable_kernel commit: a94113a941]
16 lines
792 B
CMake
16 lines
792 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_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)
|