16 lines
356 B
16 lines
356 B
syntax="proto2";
|
|
package paddle.framework;
|
|
|
|
import "op_proto.proto";
|
|
|
|
message NetDesc {
|
|
// network identification
|
|
optional string name = 1;
|
|
// operator contains in network
|
|
repeated OpProto operators = 2;
|
|
// network type to run with. e.g "plainNet", "DAG"
|
|
optional string net_type = 3;
|
|
// num worker always
|
|
optional int32 num_workers = 4;
|
|
}
|