-
Notifications
You must be signed in to change notification settings - Fork 121
Print argv at the top for all benchmarking runs #463
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Jacobfaib
wants to merge
4
commits into
NVIDIA:main
Choose a base branch
from
Jacobfaib:jacobf/2026-08-27/printer-show-argv
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+242
−1
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
68c3ea1
Print argv at the top for all benchmarking runs
Jacobfaib e7e391b
fixup! Print argv at the top for all benchmarking runs
Jacobfaib 789a844
fixup! Print argv at the top for all benchmarking runs
Jacobfaib 6b2d433
fixup! Print argv at the top for all benchmarking runs
Jacobfaib File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -41,6 +41,111 @@ | |||||
| namespace nvbench | ||||||
| { | ||||||
|
|
||||||
| namespace | ||||||
| { | ||||||
|
|
||||||
| // Quote an argument for the shell of the current platform, so that the printed | ||||||
| // command line can be copied and pasted. | ||||||
| #ifdef _WIN32 | ||||||
|
|
||||||
| // The Windows command processor (cmd.exe) does not group text inside single | ||||||
| // quotes, so use double quotes with backslash escapes. | ||||||
| std::string shell_quote(const std::string &arg) | ||||||
| { | ||||||
| if (!arg.empty() && arg.find_first_of(" \t\n\v\"^&|<>()%!") == std::string::npos) | ||||||
| { | ||||||
| return arg; | ||||||
| } | ||||||
|
|
||||||
| // Follow the rules of CommandLineToArgvW: a run of backslashes is only special | ||||||
| // when a double quote comes after it. | ||||||
| std::string result; | ||||||
|
|
||||||
| result.reserve((4 * arg.size()) + 2); | ||||||
| result += '\''; | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Windows quoted line should start with |
||||||
| for (auto iter = arg.begin(); iter != arg.end(); ++iter) | ||||||
| { | ||||||
| std::size_t num_backslashes = 0; | ||||||
| while (iter != arg.end() && *iter == '\\') | ||||||
| { | ||||||
| ++num_backslashes; | ||||||
| ++iter; | ||||||
| } | ||||||
|
|
||||||
| if (iter == arg.end()) | ||||||
| { // Double the backslashes that come before the closing quote. | ||||||
| result.append(num_backslashes * 2, '\\'); | ||||||
| break; | ||||||
| } | ||||||
|
|
||||||
| if (*iter == '"') | ||||||
| { // Double the backslashes that come before a quote, then escape the quote. | ||||||
| result.append(num_backslashes * 2, '\\'); | ||||||
| result += "\\\""; | ||||||
| } | ||||||
| else | ||||||
| { | ||||||
| result.append(num_backslashes, '\\'); | ||||||
| result += *iter; | ||||||
| } | ||||||
| } | ||||||
| result += '"'; | ||||||
| return result; | ||||||
| } | ||||||
|
|
||||||
| #else | ||||||
|
|
||||||
| // POSIX shells (sh, bash, zsh) take single quotes. | ||||||
| std::string shell_quote(const std::string &arg) | ||||||
| { | ||||||
| if (!arg.empty() && arg.find_first_of(" \t\n\"'\\$`|&;<>()*?[]{}#~!") == std::string::npos) | ||||||
| { | ||||||
| return arg; | ||||||
| } | ||||||
|
|
||||||
| std::string result; | ||||||
|
|
||||||
| result.reserve((4 * arg.size()) + 2); | ||||||
| result += '\''; | ||||||
| for (const char c : arg) | ||||||
| { | ||||||
| if (c == '\'') | ||||||
| { // A single quote cannot appear inside single quotes; close, escape, reopen. | ||||||
| result += "'\\''"; | ||||||
| } | ||||||
| else | ||||||
| { | ||||||
| result += c; | ||||||
| } | ||||||
| } | ||||||
| result += '\''; | ||||||
| return result; | ||||||
| } | ||||||
|
|
||||||
| #endif // _WIN32 | ||||||
|
|
||||||
| } // namespace | ||||||
|
|
||||||
| void markdown_printer::do_log_argv(const std::vector<std::string> &argv) { m_argv = argv; } | ||||||
|
|
||||||
| void markdown_printer::do_print_argv() | ||||||
| { | ||||||
| if (m_argv.empty()) | ||||||
| { | ||||||
| return; | ||||||
| } | ||||||
|
|
||||||
| fmt::memory_buffer buffer; | ||||||
| fmt::format_to(fmt::appender(buffer), "# Command Line\n\n```\n"); | ||||||
| for (std::size_t i = 0; i < m_argv.size(); ++i) | ||||||
| { | ||||||
| fmt::format_to(fmt::appender(buffer), "{}{}", i == 0 ? "" : " ", shell_quote(m_argv[i])); | ||||||
| } | ||||||
| fmt::format_to(fmt::appender(buffer), "\n```\n\n"); | ||||||
|
|
||||||
| m_ostream << fmt::to_string(buffer); | ||||||
| } | ||||||
|
|
||||||
| void markdown_printer::do_print_device_info() | ||||||
| { | ||||||
| fmt::memory_buffer buffer; | ||||||
|
|
||||||
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.