Skip to content
Snippets Groups Projects
Commit f8e3edc6 authored by Pepping's avatar Pepping
Browse files

Added g_sim and disbaled offload in simulation

parent 1bacd2f2
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,7 @@ USE bf_lib.bf_pkg.ALL;
ENTITY node_unb1_fn_bf IS
GENERIC(
g_sim : BOOLEAN := FALSE;
g_use_bf : BOOLEAN := TRUE; -- FALSE skips instantiation of the BF
g_bf : t_c_bf := c_bf;
g_bf_weights_file_name : STRING := "../../../../../dsp/bf/build/data/weights"; -- default file location for synthesis
......@@ -180,7 +181,7 @@ BEGIN
---------------------------------------------------------------------------------------
-- Offload 16b beamlets from out_bst_sosi_arr to udp_offload TX port in ctrl_unb_common
---------------------------------------------------------------------------------------
gen_bf_offload : IF g_bf_offload = TRUE GENERATE
gen_bf_offload : IF g_bf_offload = TRUE AND g_sim = FALSE GENERATE
u_dp_offload : ENTITY dp_lib.dp_offload_tx_legacy
GENERIC MAP (
g_nof_streams => g_bf.nof_bf_units,
......
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