Fix pr 4271 stateful doc link#36481
Merged
michalzx merged 2 commits intoJun 23, 2026
Merged
Conversation
p-durandin
previously requested changes
Jun 22, 2026
p-durandin
left a comment
Contributor
There was a problem hiding this comment.
@michalzx please remove oneDNN GPU and LevelZero updates
Contributor
|
@michalzx can you do a PR with just the update to stateful-models.rst? we should just be changing documentation |
82fee17 to
627a585
Compare
Contributor
Author
|
@p-durandin (cc @whitneyfoster), now the PR is only changing the documentation file that likely broke generating builds from the master. |
whitneyfoster
approved these changes
Jun 23, 2026
The requested change was done and confirmed by another reviewer, Whitney.
pj3iL
pushed a commit
to pj3iL/openvino
that referenced
this pull request
Jun 24, 2026
Summary Fixes documentation build failure caused by a broken internal link after removal of the stateful models documentation page. Changes Removed invalid :doc: link referencing the deleted stateful-models page Updated the OpenVINO stateful models guide to eliminate the broken Model Server link Note that this PR also includes inherited submodule pointer updates from the master base commit de95f5c, which updates CPU plugin third-party dependencies (ComputeLibrary and onednn). These changes were already present on the branch base and are unrelated to the documentation fix, but I got them when I was updating my local fork from the master. Motivation After merging [PR openvinotoolkit#4271 ("Remove stateful model feature support")](openvinotoolkit/model_server#4271), builds from the master branch began failing due to a documentation error. The root cause was an internal Sphinx :doc: reference pointing to a page that had been removed, which resulted in a build-breaking error. This change resolves the issue by removing the stale reference. Implementation Notes Fix ensures that all internal documentation links point to valid pages Prevents Sphinx build failures caused by missing targets Keeps documentation consistent with previously removed content Testing Reproduced the issue locally Verified the fix with a local Sphinx build Validated the fix using Jenkins, build completed successfully Checklist Fix is minimal and focused Root cause identified and addressed Documentation builds successfully (local + Jenkins) No unrelated changes included Co-authored-by: whitneyfoster <whitney.foster@intel.com>
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
Fixes documentation build failure caused by a broken internal link
after removal of the stateful models documentation page.
Changes
Removed invalid :doc: link referencing the deleted stateful-models page
Updated the OpenVINO stateful models guide to eliminate the broken Model Server link
Note that this PR also includes inherited submodule pointer updates from the master base commit de95f5c, which updates CPU plugin third-party dependencies (ComputeLibrary and onednn). These changes were already present on the branch base and are unrelated to the documentation fix, but I got them when I was updating my local fork from the master.
Motivation
After merging PR #4271 ("Remove stateful model feature support"),
builds from the master branch began failing due to a documentation error.
The root cause was an internal Sphinx :doc: reference pointing to a page
that had been removed, which resulted in a build-breaking error.
This change resolves the issue by removing the stale reference.
Implementation Notes
Fix ensures that all internal documentation links point to valid pages
Prevents Sphinx build failures caused by missing targets
Keeps documentation consistent with previously removed content
Testing
Reproduced the issue locally
Verified the fix with a local Sphinx build
Validated the fix using Jenkins, build completed successfully
Checklist
Fix is minimal and focused
Root cause identified and addressed
Documentation builds successfully (local + Jenkins)
No unrelated changes included