config.h 199 Bytes
Newer Older
1
2
3
4
#pragma once

namespace Config {

zhanghj2's avatar
zhanghj2 committed
5
static constexpr int BLOCK_SIZE_M = 16;
6
7
8
9
10
11
static constexpr int PAGE_BLOCK_SIZE = 64;

static constexpr int HEAD_DIM_K = 576;
static constexpr int HEAD_DIM_V = 512;

}