-
Notifications
You must be signed in to change notification settings - Fork 554
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
Log UMAP arrays at trace verbosity level. #6274
Log UMAP arrays at trace verbosity level. #6274
Conversation
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
6cccf26
to
d7efec6
Compare
|
if (ML::default_logger().should_log(ML::level_enum::debug)) { | ||
CUML_LOG_DEBUG("Compute Membership Strength"); | ||
if (ML::default_logger().should_log(ML::level_enum::trace)) { | ||
CUML_LOG_TRACE("Compute Membership Strength"); |
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 think we should keep these at DEBUG level but put any actual arrays at trace level.
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.
Addressed in c6b6e36 .
/merge |
d7af773
to
16f79b3
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## branch-25.02 #6274 +/- ##
================================================
- Coverage 68.24% 67.07% -1.18%
================================================
Files 202 202
Lines 13079 13069 -10
================================================
- Hits 8926 8766 -160
- Misses 4153 4303 +150 ☔ View full report in Codecov by Sentry. |
@dantegd I think this PR might need an admin merge. |
Reduce the UMAP logging verbosity. Avoids printing potentially large arrays.