Conversation
Input-adaptive contraction-axis reduction for the products that dominate inference: Y = A B keeps only the ceil(rho*d) slices with the largest activation column norms ||A[:,j]||_2, chosen deterministically from the current activations. Training-free and weight-preserving. - ggml-rmm.h: column-norm scoring, quickselect TopK with lowest-index tie breaking, reduced GEMV/GEMM, projections, attention with QK^T feature reduction and optional PV token reduction, reusable workspace, MAC stats. Scalar C11 everywhere, VSX/AltiVec fast path on POWER8, dcbt prefetch of only the retained weight rows. rho = 1 is bit-identical to dense. - tests/rmm_test.c: TopK determinism and ties, dense equivalence at rho = 1, Proposition 1 error bound, activation-aware vs random selection, minimax claim, attention accuracy at rho_d = 0.5, MAC accounting, GEMV benchmark. - Makefile: 'make' runs the suite on x86-64, 'make power8' builds the VSX path. - docs/RMM.md, README and CHANGELOG entries. Co-Authored-By: Erkin Alp Güney <erkinalp9035@gmail.com>
Owner
|
Received, and queued for review — apologies for the silence up to now. This is a maintainer-side backlog rather than any verdict on your contribution. We I'm not going to give you a date I might miss. What I can tell you:
Thanks for your patience, and for the work. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Input-adaptive contraction-axis reduction for the products that dominate inference: Y = A B keeps only the ceil(rho*d) slices with the largest activation column norms ||A[:,j]||_2, chosen deterministically from the current activations. Training-free and weight-preserving.