add user_arg to LayerConfig (#315)

avx_docs
Haichao-Zhang 8 years ago committed by emailweixu
parent 968464cc60
commit d412a5ea21

@ -382,6 +382,15 @@ sinclude(`ModelConfigLayer.proto.m4')
// bias size
optional uint32 bias_size = 48 [default = 0];
// this parameter can be used as a user-defined parameter when necessary,
// without changing the proto file.
// e.g., when a new layer with a user-defined parameter is implemented,
// it can be used to pass that parameter, without modifying the proto file.
// string type is used for flexibility: different types can be converted
// to string and reinterpreted in the user's own layer implementation.
optional string user_arg = 49;
}
message EvaluatorConfig {

Loading…
Cancel
Save