MCPcopy Create free account
hub / github.com/antirez/llama.cpp-deepseek-v4-flash / seq_pos_min

Method seq_pos_min

src/llama-batch.cpp:457–459  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

455}
456
457llama_pos llama_batch_allocr::seq_pos_min(llama_seq_id seq_id) const {
458 return seq_pos[seq_id].empty() ? -1 : *seq_pos[seq_id].begin();
459}
460
461llama_pos llama_batch_allocr::seq_pos_max(llama_seq_id seq_id) const {
462 return seq_pos[seq_id].empty() ? -1 : *seq_pos[seq_id].rbegin();

Callers 2

llama_memory_seq_pos_minFunction · 0.45
initMethod · 0.45

Calls 2

emptyMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected