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