-
Notifications
You must be signed in to change notification settings - Fork 36
Open
Description
Hey all,
I was working with the older version of Tapa and my design was compiling alright. However, with the recent update, my C-simulation is giving me Segmentation Fault. The following lines are giving me segementaiton fault:
ap_uint<64> local_C_A[8][4096];
#pragma HLS bind_storage variable=local_C_A type=RAM_2P impl=URAM latency=1
#pragma HLS array_partition complete variable=local_C_A dim=1
for (int i = 0; i < 1; i++) {
#pragma HLS loop_tripcount min=1 max=800
#pragma HLS pipeline II=1
for (int p = 0; p < 8; p++) {
local_C_A[p][i] = 0;
}
}
However, if I change p < 8 to p < 7, the seg fault goes away. Not only this, I have several points where I am having abnormal segmentaion faults.
It looks like TAPA got bugged heavily after the recent update. Will be really thankful if this can get solved or someone share the insights what I am doing wrong. Thanks !!
Metadata
Metadata
Assignees
Labels
No labels