-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 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
16 changes: 16 additions & 0 deletions
16
plugin/tensorboard_plugin_profile/protobuf/power_metrics.proto
This file contains 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
syntax = "proto3"; | ||
|
||
package tensorflow.profiler; | ||
|
||
message PowerComponentMetrics { | ||
// power rail or component name, e.g. HBM, Core. | ||
string component_name = 1; | ||
// maximum watts monitored. | ||
double max_power = 2; | ||
// average watts monitored. | ||
double avg_power = 3; | ||
} | ||
|
||
message PowerMetrics { | ||
repeated PowerComponentMetrics power_component_metrics = 1; | ||
} |