You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Errors from training workloads (e.g. GPU) result in local variables that are unserializable or have repr/str methods that call out to a device. Attaching these local variables to Sentry results in segfault errors. While I have the option to not include any local variables with my error event payloads, this is an all or nothing approach, which can lead to the loss of valuable debug context.
Solution Brainstorm
Framework-specific logic within the SDK and an accompanying flag to only extract tensor metadata. Here's an example:
The text was updated successfully, but these errors were encountered:
landenai
changed the title
Smarter local variable serialization for workload training errors
Local variable serialization for workload training errors
Feb 20, 2025
Problem Statement
Errors from training workloads (e.g. GPU) result in local variables that are unserializable or have repr/str methods that call out to a device. Attaching these local variables to Sentry results in segfault errors. While I have the option to not include any local variables with my error event payloads, this is an all or nothing approach, which can lead to the loss of valuable debug context.
Solution Brainstorm
Framework-specific logic within the SDK and an accompanying flag to only extract tensor metadata. Here's an example:
The text was updated successfully, but these errors were encountered: