aboutsummaryrefslogtreecommitdiff
path: root/fcp/aggregation/core/agg_core.proto
blob: 0ce048eb25e77ba11c1ee75c405e8a2721acb3d5 (plain)
1
2
3
4
5
6
7
8
9
syntax = "proto3";

package fcp.aggregation;

// Internal state representation of an AggVectorAggregator.
message AggVectorAggregatorState {
  uint64 num_inputs = 1;
  bytes vector_data = 2;
}