refactor!: reduce InfiniCore to a component manifest - #1406
Draft
voltjia wants to merge 6 commits into
Draft
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
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
0cdbb16967e15f2e055dea1ec9641617bf3b6cf6, InfiniOps at94965ca433ea44b9cd4b8520a0f1d9687f81cfa9, and InfiniCCL ate8ccc0cb23ca5b1b1d63be29ba61ea031de72807.CONTRIBUTING.mdfor the shared component contribution conventions.Component Revisions
0cdbb16967e15f2e055dea1ec9641617bf3b6cf6.94965ca433ea44b9cd4b8520a0f1d9687f81cfa9contains the unified consumer-ownedops.jsonimplementation selector from feat(build): select operator implementations from ops.json InfiniOps#931, the TVM-FFI linked transport, and the FlashInferTopKTopPSamplingFromLogitsslot 16 provider from feat(linked): add FlashInfer sampling provider InfiniOps#930. Its ancestry does not contain native sampling PR feat(nvidia): add top-k top-p sampling provider InfiniOps#922.e8ccc0cb23ca5b1b1d63be29ba61ea031de72807contains bridge dependency regeneration from fix(build): regenerate communication bridge for header changes InfiniCCL#57, NCCL point-to-point communication from feat(nccl): add point-to-point communication InfiniCCL#58, and NCCL AllGather from feat(nccl): add all-gather communication InfiniCCL#59.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.master, contains the rebased selector commit87a242bac455d76dcdb5823cd201857909390a6c, and does not contain feat(nvidia): add top-k top-p sampling provider InfiniOps#922 or the superseded selector commit4ba65cedda7c1e3d3942112de8a0117643b58306.git diff --check; only the InfiniOps gitlink changed in the latest commit, while the validated InfiniCCL and InfiniRT pins remain unchanged.The component PRs must land before this manifest is made ready for merge; the current gitlinks intentionally keep the integration reproducible while reviews proceed.
Supersedes #1405.
Closes #1373