mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-14 02:02:46 +00:00
* add parameters
* tweak gemm
* tweak
* update conv
* update script
* adding bwd 1x1
* update script
* adding 1x1 bwd
* debugging bwd 1x1 failure
* update script
* update script
* test
* test v100
* clean up
[ROCm/composable_kernel commit: b3e8d57d51]
14 lines
315 B
C++
14 lines
315 B
C++
#ifndef DEBUG_HPP
|
|
#define DEBUG_HPP
|
|
|
|
namespace debug {
|
|
namespace debug_driver_gemm_xdlops_v2r3 {
|
|
|
|
// these vars are on host, they control block_id to C matrix tile idx (m0, n0) mapping
|
|
static ck::index_t M01 = 1;
|
|
static ck::index_t N01 = 1;
|
|
|
|
} // namespace debug_driver_gemm_xdlops_v2r3
|
|
} // namespace debug
|
|
#endif
|