Commit graph

3 commits

Author SHA1 Message Date
Claude
3f5543d16d
fix: remove unused loop variables in GPU benchmark tests
All checks were successful
Security Scan / security (push) Successful in 8s
Test / test (push) Successful in 1m21s
Go 1.26 range-over-int `for i := range b.N` assigns i but it was
never used, causing build failure with -tags rag.

Co-Authored-By: Virgil <virgil@lethean.io>
2026-02-24 18:56:26 +00:00
Snider
d188b05ad8 feat: modernise to Go 1.26 iterators and stdlib helpers
Some checks failed
Security Scan / security (push) Successful in 10s
Test / test (push) Failing after 39s
Add ChunkMarkdownSeq, QuerySeq, KeywordFilterSeq, ListCollectionsSeq
iterators for streaming. Use slices.SortFunc, slices.Contains,
slices.Collect in mock/query/keyword. Range-over-int in benchmarks.

Co-Authored-By: Gemini <noreply@google.com>
Co-Authored-By: Virgil <virgil@lethean.io>
2026-02-23 05:36:39 +00:00
Claude
f5f1e68c5c
feat(bench): add Phase 4 GPU benchmarks on RX 7800 XT
Benchmarks for embedding (Ollama ROCm), chunking (pure CPU), and search
(Qdrant) latency. Key results: 97 embeds/sec single (10.3ms), Qdrant
search 152µs (6.5K QPS), chunking 11µs per 50-section doc.

EmbedBatch confirmed sequential — Ollama has no batch API.

Co-Authored-By: Charon <developers@lethean.io>
2026-02-20 11:51:25 +00:00