-
Notifications
You must be signed in to change notification settings - Fork 548
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
base: branch-25.02
Are you sure you want to change the base?
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 .
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## branch-25.02 #6274 +/- ##
================================================
- Coverage 68.19% 66.02% -2.18%
================================================
Files 201 201
Lines 13055 13055
================================================
- Hits 8903 8619 -284
- Misses 4152 4436 +284 ☔ View full report in Codecov by Sentry. |
Reduce the UMAP logging verbosity. Avoids printing potentially large arrays.