blob: dde5093e98f3bc9e503d5d84601a47d01eaacbb8 [file] [log] [blame]
syntax = "proto3";
package interface;
enum Op {
DEFAULT = 0;
SCATTER = 1;
GATHER = 2;
}
message WeightsExchange {
Op op_type = 1;
map<string, bytes> weights = 2;
}