Skip to content
Snippets Groups Projects
Commit 5bebbe13 authored by xliu79's avatar xliu79
Browse files

fix some new pragmas

parent 6e6f3dba
No related branches found
No related tags found
No related merge requests found
......@@ -362,20 +362,6 @@ void wino_systolic_top(
ConvDesc_t conv_desc;
int inheight=conv_desc.inheight;
int inwidth=conv_desc.inwidth;
int stride=conv_desc.stride;
int pad_size=conv_desc.pad_size;
int inwidth_align8=conv_desc.inwidth_align8;
int indepth_align8=conv_desc.indepth_align8;
int group_indepth_x_inwidth_align8_by8=conv_desc.group_indepth_x_inwidth_align8_by8;
int group_indepth_offset_x_inwidth_align8_by8=conv_desc.group_indepth_offset_x_inwidth_align8_by8;
int inwidth_ceildiv_inbufferwidth=conv_desc.inwidth_ceildiv_inbufferwidth;
int buffer_address_mid_increment_step=conv_desc.buffer_address_mid_increment_step;
int input_load_burst_length=conv_desc.input_load_burst_length;
int row_address_bitnumber_flag=conv_desc.row_address_bitnumber_flag;
int out_rowstep=conv_desc.out_rowstep;
ap_uint<1> pingpong=0;
#if DEBUG_FILE_PRINT
......@@ -423,7 +409,7 @@ void wino_systolic_top(
{
ap_uint<16> start_row_idx_minus_pad_size=compute_start_row-conv_desc.pad_size;
#pragma HLS DEPENDENCE variable=input_buffer inter false
#pragma HLS DEPENDENCE variable=input_buffer intra false
if(pingpong )
......
......@@ -629,8 +629,6 @@ void weight_feed_one_port(
for(ap_uint<16> cnt=0;cnt< weightDDR_burst_number ;cnt++)
{
#pragma HLS DEPENDENCE variable=weight_buff inter false
#pragma HLS DEPENDENCE variable=weight_buff intra false
if(DDR_load_cnt == weightDDR_burst_number-1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment