blob: 5dd74dead495380985b2fa7e4813236a24ff1b15 [file] [log] [blame]
syntax = "proto3";
package tensorflow.tpu;
import "tensorflow/compiler/xla/service/hlo.proto";
import "tensorflow/core/protobuf/error_codes.proto";
option cc_enable_arenas = true;
// Describes the result of a TPU compilation.
message CompilationResultProto {
// The error message, if any, returned during compilation.
error.Code status_code = 1;
string status_error_message = 2;
// HLO proto.
repeated xla.HloProto hlo_protos = 3;
}