From a1cb380703c3fbabe20ca599d6f2faa4ce9e4a7b Mon Sep 17 00:00:00 2001 From: Matt Hurd Date: Tue, 7 Oct 2025 13:03:01 -0700 Subject: [PATCH] [xprof] Add support for tracemark_lower and tracemark_upper profiler options PiperOrigin-RevId: 816343394 --- tsl/profiler/protobuf/profiler_options.proto | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tsl/profiler/protobuf/profiler_options.proto b/tsl/profiler/protobuf/profiler_options.proto index 5ffe1e799..9ce240330 100644 --- a/tsl/profiler/protobuf/profiler_options.proto +++ b/tsl/profiler/protobuf/profiler_options.proto @@ -75,12 +75,14 @@ message ProfileOptions { TraceOptions trace_options = 11; // AdvancedConfigValue represents the configuration value, it can be one of - // the following types: string, bool, int64, depending upon the config type. + // the following types: string, bool, int64, int32, depending upon the config + // type. message AdvancedConfigValue { oneof value { string string_value = 1; bool bool_value = 2; int64 int64_value = 3; + int32 int32_value = 4; } }