Add session_id to profiler_options

This will allow a follow-up PR that allows utilizing this proto.

PiperOrigin-RevId: 824709715
This commit is contained in:
Matt Hurd 2025-10-27 15:46:18 -07:00 committed by TensorFlower Gardener
parent 4cb35bb197
commit ffc21f066a

View File

@ -2,7 +2,7 @@ syntax = "proto3";
package tensorflow;
// Next ID: 14
// Next ID: 15
message ProfileOptions {
// Some default value of option are not proto3 default value. Use this version
// to determine if we should use default option value instead of proto3
@ -96,6 +96,10 @@ message ProfileOptions {
map<string, AdvancedConfigValue> advanced_configuration = 12;
bool raise_error_on_start_failure = 13;
// Identifier of the profiling session. This will be used as the subdirectory
// under the repository path. If not set, the current timestamp will be used.
string session_id = 14;
}
// Options for remote profiler session manager.