Skip to content
Snippets Groups Projects
Commit e6054e8b authored by Reinier van der Walle's avatar Reinier van der Walle
Browse files

corrected gains latency

parent f2c7b046
No related branches found
No related tags found
1 merge request!255Resolve DISTURB-1
Pipeline #30303 passed
......@@ -59,8 +59,8 @@ END disturb_beamformer_local;
ARCHITECTURE str OF disturb_beamformer_local IS
CONSTANT c_complex_adder_latency : NATURAL := ceil_log2(c_disturb_S_pn);
CONSTANT c_bf_weights_latency : NATURAL := 3;
CONSTANT c_total_latency : NATURAL := 4 + c_bf_weights_latency + c_complex_adder_latency;
CONSTANT c_bf_weights_latency : NATURAL := 5;
CONSTANT c_total_latency : NATURAL := 3 + c_bf_weights_latency + c_complex_adder_latency;
CONSTANT c_complex_adder_sum_w : NATURAL := c_disturb_W_bf_product + ceil_log2(c_disturb_S_pn);
......
......@@ -99,7 +99,7 @@ ARCHITECTURE str OF node_disturb_filterbank IS
CONSTANT c_coefs_file_prefix : STRING := "data/Coeffs16384Kaiser-quant_1wb";
CONSTANT c_gains_file_name : STRING := "data/gains_1024_complex_16b13f_unit"; -- Can be generated by src/python/disturb_hex.py
CONSTANT c_subband_equalizer_latency : NATURAL := 4;
CONSTANT c_subband_equalizer_latency : NATURAL := 5;
CONSTANT c_nof_masters : POSITIVE := 2;
......
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