refactor!: reduce InfiniCore to a component manifest#1406
Draft
voltjia wants to merge 3 commits into
Draft
Conversation
BREAKING CHANGE: InfiniCore no longer provides the legacy in-tree runtime, operator, build, packaging, or Python APIs.
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
08677bb566ee3009586ae4194e6f7e50a4bbad66, InfiniOps at296271487beb594a248fd463e5fff14f7ab74293, and InfiniCCL at1f3e24a68448c3f2af4475d603ed7c2b85e28f12.CONTRIBUTING.mdthat consolidates the shared commit, branch, pull request, and validation conventions used by the component repositories.Motivation
InfiniCore should coordinate compatible component revisions instead of maintaining duplicate runtime and operator implementations. Keeping a single 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, recursive submodule checkout, and contribution guide.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 exactly the seven intended paths.160000and resolve to the pinned revisions.git submodule update --init --recursive --depth 1checks out the complete component graph.CONTRIBUTING.md.git diff --check origin/issue/1373...HEADpasses.Supersedes #1405, which GitHub closed automatically when its head branch was renamed.
Closes #1373