config.h 199 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
#pragma once

namespace Config {

static constexpr int BLOCK_SIZE_M = 64;
static constexpr int PAGE_BLOCK_SIZE = 64;

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

}