1// Protocol message for the fast Example parse unit test. 2syntax = "proto3"; 3 4import "tensorflow/core/example/feature.proto"; 5option cc_enable_arenas = true; 6 7package tensorflow; 8 9// This message is parallel to Example, but with additional fields to test 10// unknown fields handling in example_proto_fast_parsing_test.cc. 11message ExampleWithExtras { 12 Features features = 1; 13 14 string extra1 = 1337; 15 int64 extra2 = 1338; 16 fixed32 extra3 = 1339; 17 fixed64 extra4 = 1340; 18 double extra5 = 1341; 19 repeated float extra6 = 1342; 20 Features extra7 = 1343; 21}; 22