1syntax = "proto3"; 2 3package tensorflow; 4 5option go_package = "github.com/tensorflow/tensorflow/tensorflow/go/core/protobuf/for_core_protos_go_proto"; 6 7// If included as a payload, this message flags the Status to be a "derived" 8// Status. Used by StatusGroup to ignore certain Statuses when reporting 9// errors to end users. 10message DerivedStatus {} 11 12// If included as a payload, this message contains associated source location 13// for the error Status. 14message StackTracePayload { 15 message StackFrame { 16 string file_name = 1; 17 int32 line_number = 2; 18 string function_name = 3; 19 } 20 21 repeated StackFrame stack_frames = 1; 22} 23