1syntax = "proto3"; 2 3package tensorflow; 4option cc_enable_arenas = true; 5option java_outer_classname = "VerifierConfigProtos"; 6option java_multiple_files = true; 7option java_package = "org.tensorflow.framework"; 8// add go_package externally with copybara 9 10// The config for graph verifiers. 11message VerifierConfig { 12 enum Toggle { 13 DEFAULT = 0; 14 ON = 1; 15 OFF = 2; 16 } 17 18 // Deadline for completion of all verification i.e. all the Toggle ON 19 // verifiers must complete execution within this time. 20 int64 verification_timeout_in_ms = 1; 21 22 // Perform structural validation on a tensorflow graph. Default is OFF. 23 Toggle structure_verifier = 2; 24 25 // Next tag: 3 26} 27