MCPcopy Create free account
hub / github.com/andrewkchan/deepseek.cpp / ropebuf

Method ropebuf

src/model.h:120–120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

118 float* kv_b() const { return _kv_b; }
119 float* kv_b(int head) const { return _kv_b + (_config->head_dim - _config->qk_rope_head_dim + _config->v_head_dim) * head; }
120 float* ropebuf() const { return _ropebuf; }
121 float* k() const { return _k; }
122 float* k(int head) const { return _k + _config->head_dim * head; }
123 float* v() const { return _v; }

Callers 1

_attention_implMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected