-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
[Data] Simplify and consolidate progress bar outputs #47692
Conversation
Signed-off-by: Scott Lee <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Can we print a message in the beginning explaining all the legends?
- The resource usage section is still very lengthy, do you also plan to simplify it?
@@ -259,16 +259,16 @@ def refresh_progress_bar(self, resource_manager: ResourceManager) -> None: | |||
def summary_str(self, resource_manager: ResourceManager) -> str: | |||
queued = self.num_queued() + self.op.internal_queue_size() | |||
active = self.op.num_active_tasks() | |||
desc = f"- {self.op.name}: {active} active, {queued} queued" | |||
desc = f"- {self.op.name}. Tasks: {active} 🟢, {queued} 🟡" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"N queued" actually means N blocks in the input buffer, not number of tasks.
(the previous was already a bit confusing)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also since we have a "Tasks: " section here. I'm wondering maybe we can also move the actor info after this. Instead of at the very end.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe format it as "Tasks ..., Actors ..., Input blocks ..."
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also, and blocked sign can be part of "tasks"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe format it as "Tasks ..., Actors ..., Input blocks ..."
+1 something like this seems reasonable to me
f"{limits.object_store_memory_str()} object_store_memory " | ||
"(pending: " | ||
f"{limits.object_store_memory_str()} object store " | ||
"(⏳: " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we hide the pending section if all are 0? (forgot to mention in the previous PR)
@@ -259,16 +259,16 @@ def refresh_progress_bar(self, resource_manager: ResourceManager) -> None: | |||
def summary_str(self, resource_manager: ResourceManager) -> str: | |||
queued = self.num_queued() + self.op.internal_queue_size() | |||
active = self.op.num_active_tasks() | |||
desc = f"- {self.op.name}: {active} active, {queued} queued" | |||
desc = f"- {self.op.name}. Tasks: {active} 🟢, {queued} 🟡" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do the green and yellow circles represent?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
green = active, yellow = queued
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
although after reworking the progress bar as suggested above, i have removed the green/yellow emoji
@@ -259,16 +259,16 @@ def refresh_progress_bar(self, resource_manager: ResourceManager) -> None: | |||
def summary_str(self, resource_manager: ResourceManager) -> str: | |||
queued = self.num_queued() + self.op.internal_queue_size() | |||
active = self.op.num_active_tasks() | |||
desc = f"- {self.op.name}: {active} active, {queued} queued" | |||
desc = f"- {self.op.name}. Tasks: {active} 🟢, {queued} 🟡" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe format it as "Tasks ..., Actors ..., Input blocks ..."
+1 something like this seems reasonable to me
Signed-off-by: Scott Lee <[email protected]>
Signed-off-by: Scott Lee <[email protected]>
Here is the updated progress bar after addressing initial comments: The information is better grouped now, but unfortunately it's not any less verbose. I couldn't come up with any intuitive emojis to represent the concepts: CPU, GPU, object store, tasks, actors, and input blocks. Any suggestions here? These are the best that I/ChatGPT could come up with:
|
Maybe just use the initial letters? Seems fine as long as we print a message explaining them. |
IMO we should err on the side of clarity over conciseness.
Something like this? C, G, O.S, T, A, I.B? As a general design principle, I'd be cautious to rely on tooltips or extra descriptions to make something understandable. |
Yes, that's what i was thinking as well.
When I was discussing with @omatthew98 offline, our thought was that the progress bar should be as concise as possible, but intuitive enough that the user should only need to look at docs once to understand/remember how to use it. We could print a message linking to docs at the beginning of dataset execution once. Does that sound reasonable? |
My preference is still to err on the side of clarity. IMO we shouldn't make reading documentation a pre-requisite to interpreting a user interface, even if you'd only need to read the documentation once. Also, I think single letters would be confusing (e.g., does "G" represent "GPU" or "Giga"?) |
Signed-off-by: Scott Lee <[email protected]>
Signed-off-by: Scott Lee <[email protected]>
This reverts commit 1969bac.
Signed-off-by: Scott Lee <[email protected]>
Signed-off-by: Scott Lee <[email protected]>
Signed-off-by: Scott Lee <[email protected]>
desc += " [backpressured]" | ||
|
||
# Add operator suffix, which includes actor information, | ||
# directly after task details. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we let the operators report num_active/pending_actors
explicitly?
Because other operators will use progress_str
to report non-actor info, and it's weird to put here.
for the actor pool map operator, the locality info can still be in progress_str
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i remember we had this discussion a while back, and we decided we didn't want to add operator-specific logic in this code area. should i add a check here, like if isinstance(op, ActorPoolMapOperator)
explicitly and get the number of actors for ActorPoolMapOperator
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can add the method in PhysicalOperator, and default to return 0
python/ray/data/_internal/execution/streaming_executor_state.py
Outdated
Show resolved
Hide resolved
Signed-off-by: Scott Lee <[email protected]>
Signed-off-by: Scott Lee <[email protected]>
Signed-off-by: Scott Lee <[email protected]>
assert isinstance(self.op, ActorPoolMapOperator) | ||
actor_str = f"; Actors: {active}" | ||
if pending > 0: | ||
actor_str += f", (pending: {pending})" | ||
if self.op._actor_locality_enabled: | ||
actor_str += " " + locality_string( | ||
self._actor_pool._locality_hits, self._actor_pool._locality_misses |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BTW @raulchen i still had to leave some ActorPoolMapOperator
specific logic, in order to add the locality string (checking the attribute if self.op._actor_locality_enabled
which only exists for ActorPoolMapOperator
). but we know that if active or pending
is true, this must be an operator with actors, so i just use assert isinstance(self.op, ActorPoolMapOperator)
check to satisfy type checking. let me know if you prefer another approach
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh, I think we can still keep the locality info at the end (still reported by progress_str
), because it's operator-specific
Signed-off-by: Scott Lee <[email protected]>
Signed-off-by: Scott Lee <[email protected]>
## Why are these changes needed? Adds a section under the `Monitoring Your Workload` docs page, going over progress bar interpretation and configuration. New section: https://anyscale-ray--47804.com.readthedocs.build/en/47804/data/monitoring-your-workload.html#ray-data-progress-bars ## Related issue number Followup PR to #47692. ## Checks - [x] I've signed off every commit(by using the -s flag, i.e., `git commit -s`) in this PR. - [x] I've run `scripts/format.sh` to lint the changes in this PR. - [x] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in `doc/source/tune/api/` under the corresponding `.rst` file. - [x] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( --------- Signed-off-by: Scott Lee <[email protected]>
## Why are these changes needed? Currently, the progress bar is pretty verbose because it is very information dense. This PR: - Reorganizes progress output to group by relevant concepts and clarifies labels - Standardizes global and operator-level progress bar outputs - Removes the use of all emojis (poor rendering on some platforms / external logging systems) Progress bar before this PR: <img width="1403" alt="Screenshot at Sep 16 13-00-17" src="https://github.com/user-attachments/assets/4f459b77-06ba-4395-b883-e4c9ac8ca2ef"> Progress bar after this PR: <img width="1502" alt="Screenshot at Sep 23 13-48-32" src="https://github.com/user-attachments/assets/0c0f8c94-9439-4fd4-ae1a-2857b3a87b59"> Will follow up with a docs PR once we merge this change, so that I don't need to continuously modify the docs. In the future, we should restructure the way progress bars are grouped/tracked, so that we can tabulate the op-level progress bar outputs. ## Related issue number ## Checks - [x] I've signed off every commit(by using the -s flag, i.e., `git commit -s`) in this PR. - [x] I've run `scripts/format.sh` to lint the changes in this PR. - [ ] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in `doc/source/tune/api/` under the corresponding `.rst` file. - [x] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( --------- Signed-off-by: Scott Lee <[email protected]> Signed-off-by: ujjawal-khare <[email protected]>
…t#47804) ## Why are these changes needed? Adds a section under the `Monitoring Your Workload` docs page, going over progress bar interpretation and configuration. New section: https://anyscale-ray--47804.com.readthedocs.build/en/47804/data/monitoring-your-workload.html#ray-data-progress-bars ## Related issue number Followup PR to ray-project#47692. ## Checks - [x] I've signed off every commit(by using the -s flag, i.e., `git commit -s`) in this PR. - [x] I've run `scripts/format.sh` to lint the changes in this PR. - [x] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in `doc/source/tune/api/` under the corresponding `.rst` file. - [x] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( --------- Signed-off-by: Scott Lee <[email protected]> Signed-off-by: ujjawal-khare <[email protected]>
## Why are these changes needed? Currently, the progress bar is pretty verbose because it is very information dense. This PR: - Reorganizes progress output to group by relevant concepts and clarifies labels - Standardizes global and operator-level progress bar outputs - Removes the use of all emojis (poor rendering on some platforms / external logging systems) Progress bar before this PR: <img width="1403" alt="Screenshot at Sep 16 13-00-17" src="https://github.com/user-attachments/assets/4f459b77-06ba-4395-b883-e4c9ac8ca2ef"> Progress bar after this PR: <img width="1502" alt="Screenshot at Sep 23 13-48-32" src="https://github.com/user-attachments/assets/0c0f8c94-9439-4fd4-ae1a-2857b3a87b59"> Will follow up with a docs PR once we merge this change, so that I don't need to continuously modify the docs. In the future, we should restructure the way progress bars are grouped/tracked, so that we can tabulate the op-level progress bar outputs. ## Related issue number ## Checks - [x] I've signed off every commit(by using the -s flag, i.e., `git commit -s`) in this PR. - [x] I've run `scripts/format.sh` to lint the changes in this PR. - [ ] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in `doc/source/tune/api/` under the corresponding `.rst` file. - [x] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( --------- Signed-off-by: Scott Lee <[email protected]> Signed-off-by: ujjawal-khare <[email protected]>
## Why are these changes needed? Currently, the progress bar is pretty verbose because it is very information dense. This PR: - Reorganizes progress output to group by relevant concepts and clarifies labels - Standardizes global and operator-level progress bar outputs - Removes the use of all emojis (poor rendering on some platforms / external logging systems) Progress bar before this PR: <img width="1403" alt="Screenshot at Sep 16 13-00-17" src="https://github.com/user-attachments/assets/4f459b77-06ba-4395-b883-e4c9ac8ca2ef"> Progress bar after this PR: <img width="1502" alt="Screenshot at Sep 23 13-48-32" src="https://github.com/user-attachments/assets/0c0f8c94-9439-4fd4-ae1a-2857b3a87b59"> Will follow up with a docs PR once we merge this change, so that I don't need to continuously modify the docs. In the future, we should restructure the way progress bars are grouped/tracked, so that we can tabulate the op-level progress bar outputs. ## Related issue number ## Checks - [x] I've signed off every commit(by using the -s flag, i.e., `git commit -s`) in this PR. - [x] I've run `scripts/format.sh` to lint the changes in this PR. - [ ] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in `doc/source/tune/api/` under the corresponding `.rst` file. - [x] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( --------- Signed-off-by: Scott Lee <[email protected]> Signed-off-by: ujjawal-khare <[email protected]>
## Why are these changes needed? Currently, the progress bar is pretty verbose because it is very information dense. This PR: - Reorganizes progress output to group by relevant concepts and clarifies labels - Standardizes global and operator-level progress bar outputs - Removes the use of all emojis (poor rendering on some platforms / external logging systems) Progress bar before this PR: <img width="1403" alt="Screenshot at Sep 16 13-00-17" src="https://github.com/user-attachments/assets/4f459b77-06ba-4395-b883-e4c9ac8ca2ef"> Progress bar after this PR: <img width="1502" alt="Screenshot at Sep 23 13-48-32" src="https://github.com/user-attachments/assets/0c0f8c94-9439-4fd4-ae1a-2857b3a87b59"> Will follow up with a docs PR once we merge this change, so that I don't need to continuously modify the docs. In the future, we should restructure the way progress bars are grouped/tracked, so that we can tabulate the op-level progress bar outputs. ## Related issue number ## Checks - [x] I've signed off every commit(by using the -s flag, i.e., `git commit -s`) in this PR. - [x] I've run `scripts/format.sh` to lint the changes in this PR. - [ ] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in `doc/source/tune/api/` under the corresponding `.rst` file. - [x] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( --------- Signed-off-by: Scott Lee <[email protected]> Signed-off-by: ujjawal-khare <[email protected]>
## Why are these changes needed? Currently, the progress bar is pretty verbose because it is very information dense. This PR: - Reorganizes progress output to group by relevant concepts and clarifies labels - Standardizes global and operator-level progress bar outputs - Removes the use of all emojis (poor rendering on some platforms / external logging systems) Progress bar before this PR: <img width="1403" alt="Screenshot at Sep 16 13-00-17" src="https://github.com/user-attachments/assets/4f459b77-06ba-4395-b883-e4c9ac8ca2ef"> Progress bar after this PR: <img width="1502" alt="Screenshot at Sep 23 13-48-32" src="https://github.com/user-attachments/assets/0c0f8c94-9439-4fd4-ae1a-2857b3a87b59"> Will follow up with a docs PR once we merge this change, so that I don't need to continuously modify the docs. In the future, we should restructure the way progress bars are grouped/tracked, so that we can tabulate the op-level progress bar outputs. ## Related issue number ## Checks - [x] I've signed off every commit(by using the -s flag, i.e., `git commit -s`) in this PR. - [x] I've run `scripts/format.sh` to lint the changes in this PR. - [ ] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in `doc/source/tune/api/` under the corresponding `.rst` file. - [x] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( --------- Signed-off-by: Scott Lee <[email protected]> Signed-off-by: ujjawal-khare <[email protected]>
## Why are these changes needed? Currently, the progress bar is pretty verbose because it is very information dense. This PR: - Reorganizes progress output to group by relevant concepts and clarifies labels - Standardizes global and operator-level progress bar outputs - Removes the use of all emojis (poor rendering on some platforms / external logging systems) Progress bar before this PR: <img width="1403" alt="Screenshot at Sep 16 13-00-17" src="https://github.com/user-attachments/assets/4f459b77-06ba-4395-b883-e4c9ac8ca2ef"> Progress bar after this PR: <img width="1502" alt="Screenshot at Sep 23 13-48-32" src="https://github.com/user-attachments/assets/0c0f8c94-9439-4fd4-ae1a-2857b3a87b59"> Will follow up with a docs PR once we merge this change, so that I don't need to continuously modify the docs. In the future, we should restructure the way progress bars are grouped/tracked, so that we can tabulate the op-level progress bar outputs. ## Related issue number ## Checks - [x] I've signed off every commit(by using the -s flag, i.e., `git commit -s`) in this PR. - [x] I've run `scripts/format.sh` to lint the changes in this PR. - [ ] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in `doc/source/tune/api/` under the corresponding `.rst` file. - [x] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( --------- Signed-off-by: Scott Lee <[email protected]> Signed-off-by: ujjawal-khare <[email protected]>
## Why are these changes needed? Currently, the progress bar is pretty verbose because it is very information dense. This PR: - Reorganizes progress output to group by relevant concepts and clarifies labels - Standardizes global and operator-level progress bar outputs - Removes the use of all emojis (poor rendering on some platforms / external logging systems) Progress bar before this PR: <img width="1403" alt="Screenshot at Sep 16 13-00-17" src="https://github.com/user-attachments/assets/4f459b77-06ba-4395-b883-e4c9ac8ca2ef"> Progress bar after this PR: <img width="1502" alt="Screenshot at Sep 23 13-48-32" src="https://github.com/user-attachments/assets/0c0f8c94-9439-4fd4-ae1a-2857b3a87b59"> Will follow up with a docs PR once we merge this change, so that I don't need to continuously modify the docs. In the future, we should restructure the way progress bars are grouped/tracked, so that we can tabulate the op-level progress bar outputs. ## Related issue number ## Checks - [x] I've signed off every commit(by using the -s flag, i.e., `git commit -s`) in this PR. - [x] I've run `scripts/format.sh` to lint the changes in this PR. - [ ] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in `doc/source/tune/api/` under the corresponding `.rst` file. - [x] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( --------- Signed-off-by: Scott Lee <[email protected]> Signed-off-by: ujjawal-khare <[email protected]>
## Why are these changes needed? Currently, the progress bar is pretty verbose because it is very information dense. This PR: - Reorganizes progress output to group by relevant concepts and clarifies labels - Standardizes global and operator-level progress bar outputs - Removes the use of all emojis (poor rendering on some platforms / external logging systems) Progress bar before this PR: <img width="1403" alt="Screenshot at Sep 16 13-00-17" src="https://github.com/user-attachments/assets/4f459b77-06ba-4395-b883-e4c9ac8ca2ef"> Progress bar after this PR: <img width="1502" alt="Screenshot at Sep 23 13-48-32" src="https://github.com/user-attachments/assets/0c0f8c94-9439-4fd4-ae1a-2857b3a87b59"> Will follow up with a docs PR once we merge this change, so that I don't need to continuously modify the docs. In the future, we should restructure the way progress bars are grouped/tracked, so that we can tabulate the op-level progress bar outputs. ## Related issue number ## Checks - [x] I've signed off every commit(by using the -s flag, i.e., `git commit -s`) in this PR. - [x] I've run `scripts/format.sh` to lint the changes in this PR. - [ ] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in `doc/source/tune/api/` under the corresponding `.rst` file. - [x] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( --------- Signed-off-by: Scott Lee <[email protected]> Signed-off-by: ujjawal-khare <[email protected]>
## Why are these changes needed? Currently, the progress bar is pretty verbose because it is very information dense. This PR: - Reorganizes progress output to group by relevant concepts and clarifies labels - Standardizes global and operator-level progress bar outputs - Removes the use of all emojis (poor rendering on some platforms / external logging systems) Progress bar before this PR: <img width="1403" alt="Screenshot at Sep 16 13-00-17" src="https://github.com/user-attachments/assets/4f459b77-06ba-4395-b883-e4c9ac8ca2ef"> Progress bar after this PR: <img width="1502" alt="Screenshot at Sep 23 13-48-32" src="https://github.com/user-attachments/assets/0c0f8c94-9439-4fd4-ae1a-2857b3a87b59"> Will follow up with a docs PR once we merge this change, so that I don't need to continuously modify the docs. In the future, we should restructure the way progress bars are grouped/tracked, so that we can tabulate the op-level progress bar outputs. ## Related issue number ## Checks - [x] I've signed off every commit(by using the -s flag, i.e., `git commit -s`) in this PR. - [x] I've run `scripts/format.sh` to lint the changes in this PR. - [ ] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in `doc/source/tune/api/` under the corresponding `.rst` file. - [x] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( --------- Signed-off-by: Scott Lee <[email protected]> Signed-off-by: ujjawal-khare <[email protected]>
Why are these changes needed?
Currently, the progress bar is pretty verbose because it is very information dense. This PR:
Progress bar before this PR:
Progress bar after this PR:
Will follow up with a docs PR once we merge this change, so that I don't need to continuously modify the docs.
In the future, we should restructure the way progress bars are grouped/tracked, so that we can tabulate the op-level progress bar outputs.
Test script used for generating above screenshots:
Related issue number
Checks
git commit -s
) in this PR.scripts/format.sh
to lint the changes in this PR.method in Tune, I've added it in
doc/source/tune/api/
under thecorresponding
.rst
file.