Skip to content

TAPA version 0.1.20250803 looks bugged #267

@UbaidHunts

Description

@UbaidHunts

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions