mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-04 13:41:24 +00:00
* Add image to column kernel * Add instances, tests, profiler, example * Add client example * Several fixes of image to column * Fix variable name in device_image_to_column_impl * Several fixes of image to column profiler * Fix num_btype calculation * Make new mesaurements for correct bytes calculation
11 lines
387 B
CMake
11 lines
387 B
CMake
list(APPEND gpu_list gfx908 gfx90a gfx940 gfx941 gfx942)
|
|
set(target 0)
|
|
foreach(gpu IN LISTS GPU_TARGETS)
|
|
if(gpu IN_LIST gpu_list AND target EQUAL 0)
|
|
add_custom_target(example_image_to_column)
|
|
add_example_executable(example_image_to_column_f32 image_to_column_f32.cpp)
|
|
add_dependencies(example_image_to_column example_image_to_column_f32)
|
|
set(target 1)
|
|
endif()
|
|
endforeach()
|