refactor!: reduce InfiniCore to a component manifest - #1406
Open
voltjia wants to merge 7 commits into
Open
Conversation
BREAKING CHANGE: InfiniCore no longer provides the legacy in-tree runtime, operator, build, packaging, or Python APIs.
voltjia
force-pushed
the
refactor/component-manifest
branch
2 times, most recently
from
August 13, 2026 16:44
713a008 to
15ddde2
Compare
voltjia
force-pushed
the
refactor/component-manifest
branch
from
August 13, 2026 16:46
15ddde2 to
2a83578
Compare
6 tasks
voltjia
marked this pull request as ready for review
August 25, 2026 02:34
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.
Summary
CONTRIBUTING.mdfor the shared component contribution conventions.Current Component Revisions
0cdbb16967e15f2e055dea1ec9641617bf3b6cf6.f890afb4b2327f13ccdd3c1b6b0d49567c5fe00d, the merge revision of feat(linked): add FlashInfer sampling provider InfiniOps#930. It contains the exact-slotops.jsonselector, the TVM-FFI linked-provider transport, and the FlashInferTopKTopPSamplingFromLogitsprovider. Its ancestry does not contain the native sampling draft feat(nvidia): add top-k top-p sampling provider InfiniOps#922.e8ccc0cb23ca5b1b1d63be29ba61ea031de72807, the current tip of the stacked fix(build): regenerate communication bridge for header changes InfiniCCL#57, issue/48/test: 重构rope测试脚本 #58, and issue/7: rmsnorm算子-昇腾 #59 series. Those PRs are still under review; this pin must be refreshed to their final merged revision before refactor!: reduce InfiniCore to a component manifest #1406 lands.The linked FlashInfer provider keeps its DSOs external and requires
flashinfer-jit-cache>=0.6.7,<0.7andapache-tvm-ffi==0.1.10in the NVIDIA consumer environment.Pending Final Pin Refresh
The Moore end-to-end enablement is being reviewed separately:
After those changes and InfiniCCL #57-#59 merge, this PR will update its InfiniOps and InfiniCCL gitlinks to the resulting merged revisions. The manifest will not permanently pin review-only stack heads.
Motivation
InfiniCore should coordinate compatible component revisions instead of maintaining duplicate runtime and operator implementations. Keeping one authoritative implementation in each component removes the legacy API surface and makes the repository boundary explicit.
Repository Surface
The resulting repository has exactly seven tracked paths and no build or packaging entry point of its own.
README.mddocuments the manifest role and recursive checkout, whileCONTRIBUTING.mddocuments the contribution contract.Breaking Change
InfiniCore no longer provides the legacy in-tree runtime, operator, build, packaging, or Python APIs. Component implementations are provided exclusively by the pinned submodules.
Validation
git ls-filesreturns the intended seven paths.160000and resolve to the revisions listed above.git submodule sync --recursiveandgit submodule update --init --recursivecheck out all three exact component revisions, including the pinned nested InfiniOps.cirevision.git diff --check; the final commit changes only the InfiniOps gitlink while the validated InfiniCCL and InfiniRT pins remain unchanged.ldd -rreported no unresolved dependencies, and descriptor-cache stress retained 0 MiB of device memory after cleanup.InfiniCore intentionally has no build or packaging entry point. End-to-end consumer build, packaging, graph execution, and model-command validation are owned by InfiniTensor/InfiniLM#506.
Supersedes #1405.
Closes #1373