Conversation
yuslepukhin
pushed a commit
that referenced
this pull request
Mar 17, 2026
The `olive run-pass` command was implemented and available in the CLI but was not documented in the CLI reference documentation at `docs/source/reference/cli.rst`. ## Changes Made - Added "Run Pass" section to `docs/source/reference/cli.rst` between "Run" and "Finetune" sections - Used the command's help text description: "Run a single pass on the input model (supports HuggingFace, ONNX, PyTorch, and Azure ML models)" - Added proper `argparse` directive pointing to the correct path `run-pass` - Maintained consistent formatting with all other CLI command documentation ## Verification The documentation now includes all available CLI commands and follows the same pattern as the existing 11 documented commands. The `run-pass` command allows users to execute individual optimization passes on models, complementing the full workflow execution provided by the `run` command. Fixes #1910. <!-- START COPILOT CODING AGENT TIPS --> --- 💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more [Copilot coding agent tips](https://gh.io/copilot-coding-agent-tips) in the docs. --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: devang-ml <47577486+devang-ml@users.noreply.github.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.
Description:
Copy the tensorflow's softmax implementation to there.
Motivation and Context
Improve batch perf.
The old one is not parallelized well.
The new one has much less code.