mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-14 02:02:46 +00:00
* format
* improving pipeline
* fix typo
* format
* adding thread group
* adding thread group
* adding thread group
* adding gemm pipeline
* tweak
* refactor
* refactor
* add missing type convert
* refactor
* refactor
* refactor
* clean
* fix build
* refactor
* format
* clean up
* use remove_cvref_t
* clean
* clean up
* clean up
* clean up
[ROCm/composable_kernel commit: ec7c2e912e]
50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
#pragma once
|
|
#include "config.hpp"
|
|
#include "array.hpp"
|
|
#include "container_helper.hpp"
|
|
#include "statically_indexed_array.hpp"
|
|
#include "container_element_picker.hpp"
|
|
#include "multi_index.hpp"
|
|
#include "data_type.hpp"
|
|
#include "data_type_enum.hpp"
|
|
#include "data_type_enum_helper.hpp"
|
|
#include "functional.hpp"
|
|
#include "functional2.hpp"
|
|
#include "functional3.hpp"
|
|
#include "functional4.hpp"
|
|
#include "enable_if.hpp"
|
|
#include "ignore.hpp"
|
|
#include "integral_constant.hpp"
|
|
#include "math.hpp"
|
|
#include "number.hpp"
|
|
#include "sequence.hpp"
|
|
#include "sequence_helper.hpp"
|
|
#include "tuple.hpp"
|
|
#include "tuple_helper.hpp"
|
|
#include "type.hpp"
|
|
#include "magic_division.hpp"
|
|
#include "c_style_pointer_cast.hpp"
|
|
#include "is_known_at_compile_time.hpp"
|
|
#include "transpose_vectors.hpp"
|
|
#include "inner_product.hpp"
|
|
#include "element_wise_operation.hpp"
|
|
#include "thread_group.hpp"
|
|
#include "debug.hpp"
|
|
|
|
#include "amd_buffer_addressing.hpp"
|
|
#include "generic_memory_space_atomic_add.hpp"
|
|
#include "get_id.hpp"
|
|
#include "synchronization.hpp"
|
|
#include "amd_address_space.hpp"
|
|
#include "static_buffer.hpp"
|
|
#include "dynamic_buffer.hpp"
|
|
|
|
// TODO: remove this
|
|
#if CK_USE_AMD_INLINE_ASM
|
|
#include "amd_inline_asm.hpp"
|
|
#endif
|
|
|
|
#ifdef CK_USE_AMD_MFMA
|
|
#include "amd_xdlops.hpp"
|
|
#endif
|