59a0a3844c
PR Test AMD / cancel-on-close (push) Has been skipped
PR Test NVIDIA ARM / scan (push) Has been skipped
PR Test NVIDIA / cancel-on-close (push) Has been skipped
PR Test AMD / scan (push) Has been skipped
PR Test NVIDIA ARM / cancel-on-close (push) Has been skipped
PR Test NVIDIA / scan (push) Has been skipped
Release Docker Images / build (cu129-torch-2.11.0) (push) Has been skipped
Release Docker Images / build (cu130-torch-2.11.0) (push) Has been skipped
Release PyPI / publish (push) Has been skipped
Scheduler Python Test / test (push) Successful in 27m19s
Docs / build (push) Successful in 28m8s
Scheduler C++ Test / test (push) Successful in 28m19s
Scheduler C++ Test / test-flat (push) Successful in 28m18s
Docs / deploy (push) Has been cancelled
PR Test AMD / finish (push) Has been cancelled
PR Test NVIDIA / finish (push) Has been cancelled
PR Test NVIDIA ARM / finish (push) Has been cancelled
PR Test NVIDIA ARM / ${{ matrix.name }} (${{ matrix.runner }}) (push) Has been cancelled
PR Test AMD / ${{ matrix.name }} (${{ matrix.runner }}) (push) Has been cancelled
PR Test NVIDIA / ${{ matrix.name }} (${{ matrix.runner }}) (push) Has been cancelled
385 lines
13 KiB
Python
385 lines
13 KiB
Python
from __future__ import annotations
|
|
|
|
import importlib.util
|
|
import os
|
|
import pathlib
|
|
import sys
|
|
import unittest
|
|
|
|
# CI Registration (parsed via AST, runtime no-op)
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
from ci_system.ci_register import register_cuda_ci
|
|
|
|
register_cuda_ci(est_time=10, suite="runtime-1gpu")
|
|
|
|
_CONFIGS_DIR = (
|
|
pathlib.Path(__file__).resolve().parents[2]
|
|
/ "python"
|
|
/ "tokenspeed"
|
|
/ "runtime"
|
|
/ "configs"
|
|
)
|
|
|
|
|
|
def _load(mod_name: str, file_name: str):
|
|
spec = importlib.util.spec_from_file_location(mod_name, _CONFIGS_DIR / file_name)
|
|
assert spec is not None and spec.loader is not None
|
|
mod = importlib.util.module_from_spec(spec)
|
|
# Register before exec: on py3.9 @dataclass + `from __future__ import
|
|
# annotations` resolves field types via sys.modules[cls.__module__].
|
|
sys.modules[mod_name] = mod
|
|
spec.loader.exec_module(mod)
|
|
return mod
|
|
|
|
|
|
_fmp = _load("flat_memory_plan_under_test", "flat_memory_plan.py")
|
|
ComponentSpec = _fmp.ComponentSpec
|
|
BlockGeometry = _fmp.BlockGeometry
|
|
solve_page_geometry = _fmp.solve_page_geometry
|
|
plan_tensors = _fmp.plan_tensors
|
|
plan_component_tensors = _fmp.plan_component_tensors
|
|
components_from_layers = _fmp.components_from_layers
|
|
|
|
|
|
class EqualizerTest(unittest.TestCase):
|
|
def test_gpt_oss_degenerate_keeps_page_size(self):
|
|
comps = [
|
|
ComponentSpec(
|
|
group_id="full_attention",
|
|
layer=0,
|
|
component="kv",
|
|
bytes_per_slot=1024,
|
|
const_bytes=0,
|
|
),
|
|
ComponentSpec(
|
|
group_id="sliding_attention",
|
|
layer=1,
|
|
component="kv",
|
|
bytes_per_slot=1024,
|
|
const_bytes=0,
|
|
),
|
|
]
|
|
geo = solve_page_geometry(comps, block_size=16, alignment=256)
|
|
self.assertEqual(geo.block_size, 16)
|
|
self.assertEqual(geo.block_bytes, 16 * 1024)
|
|
|
|
def test_qwen35_constant_state_inflates_page_size(self):
|
|
comps = [
|
|
ComponentSpec(
|
|
group_id="full_attention",
|
|
layer=0,
|
|
component="kv",
|
|
bytes_per_slot=1024,
|
|
const_bytes=0,
|
|
),
|
|
ComponentSpec(
|
|
group_id="linear_attention",
|
|
layer=1,
|
|
component="conv",
|
|
bytes_per_slot=0,
|
|
const_bytes=40 * 1024,
|
|
),
|
|
ComponentSpec(
|
|
group_id="linear_attention",
|
|
layer=1,
|
|
component="ssm",
|
|
bytes_per_slot=0,
|
|
const_bytes=60 * 1024,
|
|
),
|
|
]
|
|
geo = solve_page_geometry(comps, block_size=16, alignment=4)
|
|
# A state layer's components pack into ONE page row ([conv|ssm|pad]),
|
|
# so the constant demand is their SUM: ceil((40+60)KiB / 1KiB) = 100.
|
|
self.assertEqual(geo.block_size, 100)
|
|
self.assertEqual(geo.block_bytes, 100 * 1024)
|
|
|
|
def test_inflation_rounds_up_to_alignment(self):
|
|
comps = [
|
|
ComponentSpec(
|
|
"full_attention", 0, "kv", bytes_per_slot=1024, const_bytes=0
|
|
),
|
|
ComponentSpec(
|
|
"linear_attention",
|
|
1,
|
|
"state",
|
|
bytes_per_slot=0,
|
|
const_bytes=101 * 1024,
|
|
),
|
|
]
|
|
geo = solve_page_geometry(comps, block_size=16, alignment=16)
|
|
# ceil(101K / 1K) = 101 -> rounded up to the next multiple of 16.
|
|
self.assertEqual(geo.block_size, 112)
|
|
self.assertEqual(geo.block_bytes, 112 * 1024)
|
|
|
|
def test_dsv4_linear_rows_pad_not_inflate(self):
|
|
comps = [
|
|
ComponentSpec("full_mla", 0, "latent", bytes_per_slot=1152, const_bytes=0),
|
|
ComponentSpec(
|
|
"full_mla", 0, "indexer_k", bytes_per_slot=132, const_bytes=0
|
|
),
|
|
]
|
|
geo = solve_page_geometry(comps, block_size=64, alignment=256)
|
|
self.assertEqual(geo.block_size, 64)
|
|
# Same-layer components pack into one row.
|
|
self.assertEqual(geo.block_bytes, 64 * (1152 + 132))
|
|
|
|
def test_constant_components_require_a_linear_row(self):
|
|
comps = [
|
|
ComponentSpec(
|
|
"linear_attention", 0, "state", bytes_per_slot=0, const_bytes=1024
|
|
)
|
|
]
|
|
with self.assertRaises(ValueError):
|
|
solve_page_geometry(comps, block_size=16, alignment=4)
|
|
|
|
|
|
class PlanTensorsTest(unittest.TestCase):
|
|
def _comps_qwen35(self):
|
|
return [
|
|
ComponentSpec(
|
|
"full_attention",
|
|
layer=0,
|
|
component="kv",
|
|
bytes_per_slot=1024,
|
|
const_bytes=0,
|
|
),
|
|
ComponentSpec(
|
|
"full_attention",
|
|
layer=1,
|
|
component="kv",
|
|
bytes_per_slot=1024,
|
|
const_bytes=0,
|
|
),
|
|
ComponentSpec(
|
|
"linear_attention",
|
|
layer=0,
|
|
component="conv",
|
|
bytes_per_slot=0,
|
|
const_bytes=40 * 1024,
|
|
),
|
|
ComponentSpec(
|
|
"linear_attention",
|
|
layer=0,
|
|
component="ssm",
|
|
bytes_per_slot=0,
|
|
const_bytes=60 * 1024,
|
|
),
|
|
]
|
|
|
|
def test_slot_pairing_one_layer_per_group_per_slot(self):
|
|
plan = plan_tensors(
|
|
self._comps_qwen35(),
|
|
block_size=16,
|
|
alignment=4,
|
|
budget_bytes=100 * 1024 * 1024,
|
|
)
|
|
self.assertEqual(len(plan.tensors), 2)
|
|
slot0 = plan.tensors[0]
|
|
self.assertEqual(
|
|
{(b.group_id, b.layer) for b in slot0.bindings},
|
|
{("full_attention", 0), ("linear_attention", 0)},
|
|
)
|
|
slot1 = plan.tensors[1]
|
|
self.assertEqual(
|
|
{(b.group_id, b.layer) for b in slot1.bindings},
|
|
{("full_attention", 1)},
|
|
)
|
|
for t in plan.tensors:
|
|
seen = {}
|
|
for b in t.bindings:
|
|
key = (b.slot, b.group_id)
|
|
self.assertEqual(seen.setdefault(key, b.layer), b.layer)
|
|
|
|
def test_row_offsets_accumulate_within_a_row(self):
|
|
plan = plan_tensors(
|
|
self._comps_qwen35(),
|
|
block_size=16,
|
|
alignment=4,
|
|
budget_bytes=100 * 1024 * 1024,
|
|
)
|
|
state = [
|
|
b for b in plan.tensors[0].bindings if b.group_id == "linear_attention"
|
|
]
|
|
by_comp = {b.component: b for b in state}
|
|
self.assertEqual(by_comp["conv"].row_offset, 0)
|
|
self.assertEqual(by_comp["ssm"].row_offset, 40 * 1024)
|
|
full = [b for b in plan.tensors[0].bindings if b.group_id == "full_attention"]
|
|
self.assertEqual(full[0].row_offset, 0)
|
|
|
|
def test_num_blocks_from_budget_shared_across_slots(self):
|
|
plan = plan_tensors(
|
|
self._comps_qwen35(),
|
|
block_size=16,
|
|
alignment=4,
|
|
budget_bytes=100 * 1024 * 1024,
|
|
)
|
|
geo = plan.geometry
|
|
self.assertEqual(geo.block_size, 100)
|
|
self.assertEqual(geo.block_bytes, 300 * 1024)
|
|
self.assertEqual(geo.num_blocks, 100 * 1024 * 1024 // (300 * 1024)) # 341
|
|
slot0, slot1 = plan.tensors
|
|
self.assertEqual(slot0.nbytes, geo.num_blocks * 200 * 1024)
|
|
self.assertEqual(slot1.nbytes, geo.num_blocks * 100 * 1024)
|
|
|
|
def test_gpt_oss_pairing_matches_hybrid_slab(self):
|
|
comps = [
|
|
ComponentSpec(
|
|
"full_attention",
|
|
layer=i,
|
|
component="kv",
|
|
bytes_per_slot=1024,
|
|
const_bytes=0,
|
|
)
|
|
for i in range(2)
|
|
]
|
|
comps += [
|
|
ComponentSpec(
|
|
"sliding_attention",
|
|
layer=i,
|
|
component="kv",
|
|
bytes_per_slot=1024,
|
|
const_bytes=0,
|
|
)
|
|
for i in range(2)
|
|
]
|
|
plan = plan_tensors(
|
|
comps, block_size=16, alignment=4, budget_bytes=64 * 1024 * 1024
|
|
)
|
|
self.assertEqual(len(plan.tensors), 2)
|
|
for t in plan.tensors:
|
|
self.assertEqual(
|
|
{b.group_id for b in t.bindings},
|
|
{"full_attention", "sliding_attention"},
|
|
)
|
|
|
|
def test_budget_too_small_raises(self):
|
|
with self.assertRaises(ValueError):
|
|
plan_tensors(
|
|
self._comps_qwen35(),
|
|
block_size=16,
|
|
alignment=4,
|
|
budget_bytes=100 * 1024,
|
|
)
|
|
|
|
def test_cross_group_rows_sized_by_own_bindings(self):
|
|
comps = [
|
|
ComponentSpec("full", 0, "kv", 100, 0),
|
|
ComponentSpec("state", 0, "conv", 0, 300),
|
|
ComponentSpec("state", 1, "conv", 0, 300),
|
|
]
|
|
plan = plan_tensors(comps, block_size=4, alignment=1, budget_bytes=100_000)
|
|
# slot0 packs 100*4 + 300 = 700, slot1 packs 300.
|
|
self.assertEqual(plan.geometry.num_blocks, 100_000 // 1000)
|
|
slot0, slot1 = plan.tensors
|
|
self.assertEqual(slot0.nbytes, plan.geometry.num_blocks * 700)
|
|
self.assertEqual(slot1.nbytes, plan.geometry.num_blocks * 300)
|
|
|
|
|
|
class PlanComponentTensorsTest(unittest.TestCase):
|
|
def test_qwen_shape(self):
|
|
kv_per_slot = 2048
|
|
state = {"conv": 848_256, "ssm": 1_298_048}
|
|
layers = (["linear_attention"] * 3 + ["full_attention"]) * 12
|
|
comps = components_from_layers(
|
|
layer_types=layers,
|
|
kv_bytes_per_slot=kv_per_slot,
|
|
state_const_bytes=state,
|
|
)
|
|
plan = plan_component_tensors(comps, block_size=1088, budget_bytes=10 * 1024**3)
|
|
row_sum = 12 * 1088 * kv_per_slot + 36 * sum(state.values())
|
|
self.assertEqual(plan.geometry.num_blocks, (10 * 1024**3) // row_sum)
|
|
self.assertGreaterEqual(plan.geometry.num_blocks, 100)
|
|
self.assertEqual(len(plan.tensors), 12 + 72)
|
|
for t in plan.tensors:
|
|
(b,) = t.bindings
|
|
self.assertEqual(b.row_offset, 0)
|
|
self.assertEqual(t.nbytes, plan.geometry.num_blocks * b.nbytes_per_block)
|
|
|
|
def test_reserved_bytes_shrink_blocks(self):
|
|
comps = components_from_layers(
|
|
layer_types=["full_attention"] * 2,
|
|
kv_bytes_per_slot=100,
|
|
state_const_bytes={},
|
|
)
|
|
base = plan_component_tensors(comps, block_size=4, budget_bytes=10_000)
|
|
tighter = plan_component_tensors(
|
|
comps, block_size=4, budget_bytes=10_000, reserved_bytes_per_block=800
|
|
)
|
|
self.assertEqual(base.geometry.num_blocks, 10_000 // 800)
|
|
self.assertEqual(tighter.geometry.num_blocks, 10_000 // 1600)
|
|
|
|
def test_budget_too_small_raises(self):
|
|
comps = components_from_layers(
|
|
layer_types=["full_attention"],
|
|
kv_bytes_per_slot=100,
|
|
state_const_bytes={},
|
|
)
|
|
with self.assertRaises(ValueError):
|
|
plan_component_tensors(comps, block_size=4, budget_bytes=500)
|
|
|
|
|
|
class GptOssCapacityTest(unittest.TestCase):
|
|
def test_plan_counts_every_layer_row(self):
|
|
comps = [
|
|
ComponentSpec(
|
|
"full_attention",
|
|
layer=i,
|
|
component="kv",
|
|
bytes_per_slot=1024,
|
|
const_bytes=0,
|
|
)
|
|
for i in range(24)
|
|
]
|
|
comps += [
|
|
ComponentSpec(
|
|
"sliding_attention",
|
|
layer=i,
|
|
component="kv",
|
|
bytes_per_slot=1024,
|
|
const_bytes=0,
|
|
)
|
|
for i in range(24)
|
|
]
|
|
budget = 10 * 1024**3
|
|
plan = plan_tensors(comps, block_size=16, alignment=4, budget_bytes=budget)
|
|
self.assertEqual(plan.geometry.num_blocks, budget // (48 * 16 * 1024))
|
|
|
|
|
|
class ComponentsFromLayersTest(unittest.TestCase):
|
|
def test_qwen35_shape(self):
|
|
comps = components_from_layers(
|
|
layer_types=["linear_attention", "full_attention", "linear_attention"],
|
|
kv_bytes_per_slot=1024,
|
|
state_const_bytes={"conv": 40 * 1024, "ssm": 60 * 1024},
|
|
)
|
|
by_key = {(c.group_id, c.layer, c.component): c for c in comps}
|
|
self.assertIn(("full_attention", 0, "kv"), by_key)
|
|
self.assertIn(("linear_attention", 0, "conv"), by_key)
|
|
self.assertIn(("linear_attention", 1, "ssm"), by_key)
|
|
self.assertEqual(by_key[("full_attention", 0, "kv")].bytes_per_slot, 1024)
|
|
self.assertEqual(by_key[("linear_attention", 1, "conv")].const_bytes, 40 * 1024)
|
|
|
|
def test_pure_attention_model_has_no_state_components(self):
|
|
comps = components_from_layers(
|
|
layer_types=["full_attention", "sliding_attention"],
|
|
kv_bytes_per_slot=512,
|
|
state_const_bytes={},
|
|
)
|
|
self.assertTrue(all(c.const_bytes == 0 for c in comps))
|
|
self.assertEqual(len(comps), 2)
|
|
|
|
def test_plan_end_to_end_from_layers(self):
|
|
comps = components_from_layers(
|
|
layer_types=["linear_attention", "full_attention"],
|
|
kv_bytes_per_slot=1024,
|
|
state_const_bytes={"conv": 40 * 1024, "ssm": 60 * 1024},
|
|
)
|
|
plan = plan_tensors(
|
|
comps, block_size=16, alignment=4, budget_bytes=100 * 1024 * 1024
|
|
)
|
|
self.assertEqual(plan.geometry.block_size, 100) # inflated by the state row
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|