1syntax = "proto3"; 2 3package xla; 4 5import "tensorflow/compiler/xla/xla_data.proto"; 6 7message RunHloModuleIterationLiterals { 8 // Arguments used by the iteration. 9 repeated LiteralProto arguments = 2; 10 11 // Ressult of the iteration on the target platform. 12 LiteralProto result = 3; 13 14 // Result of the iteration on the reference platform. 15 LiteralProto reference_result = 4; 16} 17 18message RunHloModuleLiterals { 19 // Iterations of run hlo module. 20 repeated RunHloModuleIterationLiterals iterations = 1; 21} 22