Uh oh!
There was an error while loading. Please reload this page.
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.
voltjiaforce-pushed
the
refactor/component-manifest
branch
2 times, most recently
from
August 13, 2026 16:44
713a008 to
15ddde2Comparevoltjiaforce-pushed
the
refactor/component-manifest
branch
from
August 13, 2026 16:46
15ddde2 to
2a83578Compare6 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 freeto 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 atf890afb4b2327f13ccdd3c1b6b0d49567c5fe00d, and InfiniCCL ate8ccc0cb23ca5b1b1d63be29ba61ea031de72807.CONTRIBUTING.mdfor the shared component contribution conventions.Component Revisions
0cdbb16967e15f2e055dea1ec9641617bf3b6cf6.f890afb4b2327f13ccdd3c1b6b0d49567c5fe00dis the merge revision of feat(linked): add FlashInfer sampling provider InfiniOps#930. It contains the consumer-owned exact-slotops.jsonselector from feat(build): select operator implementations fromops.jsonInfiniOps#931, the TVM-FFI linked-provider transport from feat(linked): support TVM FFI providers InfiniOps#945, and the FlashInferTopKTopPSamplingFromLogitsslot 16 provider from feat(linked): add FlashInfer sampling provider InfiniOps#930. Its ancestry does not contain the native sampling draft feat(nvidia): add top-k top-p sampling provider InfiniOps#922.flashinfer-jit-cache>=0.6.7,<0.7andapache-tvm-ffi==0.1.10in the NVIDIA consumer environment.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.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.The manifest itself intentionally has no build or packaging entry point. End-to-end consumer build, packaging, and Qwen sampling validation are owned by InfiniTensor/InfiniLM#506. All component prerequisites for this manifest have merged.
Supersedes #1405.
Closes#1373