-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStream_CPI_Info.fbs
More file actions
46 lines (39 loc) · 859 Bytes
/
Stream_CPI_Info.fbs
File metadata and controls
46 lines (39 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
namespace StreamCPIInfo;
table Partition {
graph_metadata: GraphMetadata;
partition_configuration: PartitionConfiguration;
runtime: RunTime;
memory_consumption: MemoryConsumption;
metrics: PartitionMetrics;
}
table GraphMetadata {
filename: string;
num_nodes: ulong;
num_edges: ulong;
max_degree: ulong;
}
table PartitionConfiguration {
k: uint;
seed: int;
input_balance: double;
set_part_zero: int;
rle_length: ulong;
kappa: double;
}
table RunTime {
io_time: double;
mapping_time: double;
total_time: double;
}
table PartitionMetrics{
edge_cut: ulong;
balance: double;
}
table MemoryConsumption{
uncompressed_vec_bytes: ulong;
rle_vector_bytes: ulong;
rle_vector_mb: double;
relative_compression: double;
overall_max_rss: long;
}
root_type Partition;