mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-12 17:26:00 +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
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
|