• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1syntax = "proto3";
2
3package tensorflow.tpu;
4
5import "tensorflow/compiler/xla/service/hlo.proto";
6import "tensorflow/core/protobuf/error_codes.proto";
7
8option cc_enable_arenas = true;
9
10// Describes the result of a TPU compilation. This is also used as TPU
11// compilation result status payload.
12message CompilationResultProto {
13  // The error message, if any, returned during compilation.
14  error.Code status_code = 1;
15  string status_error_message = 2;
16
17  // HLO proto.
18  repeated xla.HloProto hlo_protos = 3;
19}
20