1syntax = "proto3"; 2 3option cc_enable_arenas = true; 4package tensorflow.tpu; 5 6import "tensorflow/compiler/xla/service/hlo.proto"; 7import "tensorflow/core/lib/core/error_codes.proto"; 8 9// Describes the result of a TPU compilation. 10message CompilationResultProto { 11 // The error message, if any, returned during compilation. 12 error.Code status_code = 1; 13 string status_error_message = 2; 14 15 // HLO proto. 16 repeated xla.HloProto hlo_protos = 3; 17} 18