-
Notifications
You must be signed in to change notification settings - Fork 7
/
global_para.mk
19 lines (19 loc) · 1.19 KB
/
global_para.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#Little kernel setup
LITTLE_KERNEL_NUM=11
LITTLE_KERNEL_DST_BUFFER_SIZE=65536
#################################################################################################################
#Big kernel setup
BIG_KERNEL_NUM=3
BIG_KERNEL_DST_BUFFER_SIZE=524288 #$(LITTLE_KERNEL_DST_BUFFER_SIZE)#
#################################################################################################################
#the size of destination buffer; patition size should be aligned with 8K size to improve the utilization of URAMs.
PARTITION_SIZE=$(LITTLE_KERNEL_DST_BUFFER_SIZE)
#the size of one ping or pong buffer
SRC_BUFFER_SIZE=4096 # 4096 vertices 16*2 KB per source vertex buffer for a scatter PE// 64 BRAMs per scatter PE
LOG2_SRC_BUFFER_SIZE=12 #4096 vertices 16*2 KB per source vertex buffer for a scatter PE// 64 BRAMs per scatter PE
#SRC_BUFFER_SIZE=16384*2 # 16384 vertices 64 KB per source vertex buffer for a scatter PE
HAVE_APPLY=1
#Wether the application needs apply phase on the accelerator side.
VERTEX_REORDER_ENABLE=1
#Wether we enable the vertex reordering technique for graph preporcessing.
#################################################################################################################