Git Product home page Git Product logo

samprager / fpga Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ettusresearch/fpga

0.0 0.0 1.0 233.72 MB

The USRP™ Hardware Driver FPGA Repository

Makefile 0.38% Verilog 87.89% Python 0.41% Shell 0.42% Perl 0.01% SystemVerilog 1.57% Batchfile 0.22% Tcl 0.84% VHDL 5.15% HTML 0.41% Stata 0.36% Coq 0.30% C 1.99% C++ 0.01% JavaScript 0.01% MATLAB 0.02% M 0.01% Mathematica 0.01% Assembly 0.01% Pawn 0.01%

fpga's People

Contributors

a-will avatar achaudhari avatar alfayez avatar balister avatar brentstapleton avatar cellery23 avatar djepson1 avatar dkozel avatar ejk43 avatar gitjonk avatar guruofquality avatar hjimenez-ni avatar ion-concepts avatar jmcorgan avatar jpendlum avatar marcusmueller avatar mbr0wn avatar michael-west avatar noc0lour avatar pentin-as avatar ryanvolz avatar samprager avatar smunaut avatar sugandhagupta avatar tomberek avatar wordimont avatar

Watchers

 avatar

fpga's Issues

pulseciravg fails for avg_size = 1

New test case added to test bench for avg_size=1. The block fails to output any data in this case. Fix will probably require adding a special case to handle this in the HLS state machine source code -- ie. if avg_size =1, just pass the data through without storing in fifo.

32 bit addition merges I and Q samples

Probably something we should have realized sooner. The IQ samples are arranged as [16'b I, 16'bQ], when we add samples together for averaging, the Q samples overflow into the I samples. We are using a 64 bit width fifo (data_fifo) so we should really be writing to the data_fifo as the data_in[31:16] -> data_fifo[47:32], data_in[15:0] -> data_fifo[15:0]. Adding/averaging should still work the same (need to confirm that division works correctly here), but when we write to the out_fifo from data_fifo, we will need to realign ie something like: out_fifo.write({tmp_data[47:32],tmp_data[15:0]}).

Vivado cannot find/locate variables from noc_block_pulse_cir_avg.v file. Thus, the simulation window shows all signals as invalid or empty -- no waveform is generated.

Vivado cannot find/locate variables from noc_block_pulse_cir_avg.v file. Thus, the simulation window shows all signals as invalid or empty -- no waveform is generated.

open_project project_3.xpr
open_project project_3.xpr
Scanning sources...
Finished scanning sources
INFO: [IP_Flow 19-234] Refreshing IP repositories
INFO: [IP_Flow 19-1704] No user IP repositories specified
INFO: [IP_Flow 19-2313] Loaded Vivado IP repository '/opt/Xilinx/Vivado/2017.4/data/ip'.
WARNING: [IP_Flow 19-2162] IP 'streaming_fft' is locked:

  • IP 'streaming_fft' shares a common output directory with other IP. It is recommended that each IP be placed in its own directory.
  • IP definition 'Fast Fourier Transform (8.0)' for IP 'streaming_fft' has a newer major version in the IP Catalog.
    Please select 'Report IP Status' from the 'Tools/Report' menu or run Tcl command 'report_ip_status' for more information.
    WARNING: [IP_Flow 19-2162] IP 'simple_fir' is locked:
  • IP 'simple_fir' shares a common output directory with other IP. It is recommended that each IP be placed in its own directory.
  • IP definition 'FIR Compiler (6.3)' for IP 'simple_fir' has a newer major version in the IP Catalog.
    Please select 'Report IP Status' from the 'Tools/Report' menu or run Tcl command 'report_ip_status' for more information.
    WARNING: [IP_Flow 19-2162] IP 'dds' is locked:
  • IP definition 'DDS Compiler (6.0)' for IP 'dds' (customized with software release 2015.4) has a different revision in the IP Catalog.
  • Current project part 'xc7k325tffg900-2' and the part 'xc7k410tffg900-2' used to customize the IP 'dds' do not match.
    Please select 'Report IP Status' from the 'Tools/Report' menu or run Tcl command 'report_ip_status' for more information.
    WARNING: [IP_Flow 19-2162] IP 'simple_fft' is locked:
  • IP 'simple_fft' shares a common output directory with other IP. It is recommended that each IP be placed in its own directory.
  • IP definition 'Fast Fourier Transform (8.0)' for IP 'simple_fft' has a newer major version in the IP Catalog.
    Please select 'Report IP Status' from the 'Tools/Report' menu or run Tcl command 'report_ip_status' for more information.
    open_project: Time (s): cpu = 00:00:10 ; elapsed = 00:00:12 . Memory (MB): peak = 6146.801 ; gain = 134.512 ; free physical = 4532 ; free virtual = 39679
    update_compile_order -fileset sources_1
    launch_simulation
    INFO: [Vivado 12-5698] Checking validity of IPs in the design for the 'XSim' simulator...
    INFO: [Vivado 12-5682] Launching behavioral simulation in '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
    INFO: [Vivado 12-4795] Using compiled simulation libraries for IPs
    INFO: [SIM-utils-51] Simulation object is 'sim_1'
    INFO: [USF-XSim-7] Finding pre-compiled libraries...
    INFO: [USF-XSim-11] File '/opt/Xilinx/Vivado/2017.4/data/xsim/ip/xsim_ip.ini' copied to run dir:'/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
    INFO: [SIM-utils-54] Inspecting design source files for 'chdr_crossbar_nxn' in fileset 'sim_1'...
    INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/axi_hb31.mif'
    INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/axi_hb47.mif'
    INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/bootram.mif'
    INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/bootram.coe'
    INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/decim_4_5.coe'
    INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/wrc_phy8.mif'
    INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/wrc_phy8_sim.mif'
    INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fir.asy'
    INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fir_reload_order.txt'
    INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fir_xmdf.tcl'
    INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/decim_4_5.coe'
    INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fft.asy'
    INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fft_xmdf.tcl'
    INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/wrc_phy8.mif'
    INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/wrc_phy8_sim.mif'
    WARNING: [SIM-utils-52] IP component XML file does not exist: '/home/radar/Projects/fpga-v2017/usrp3/lib/ip/dds/dds.xml'
    WARNING: [SIM-utils-52] IP component XML file does not exist: '/home/radar/Projects/fpga-v2017/usrp3/lib/coregen/simple_fft.xml'
    WARNING: [SIM-utils-52] IP component XML file does not exist: '/home/radar/Projects/fpga-v2017/usrp3/lib/coregen/simple_fir.xml'
    WARNING: [SIM-utils-52] IP component XML file does not exist: '/home/radar/Projects/fpga-v2017/usrp3/lib/coregen/streaming_fft.xml'
    INFO: [USF-XSim-97] Finding global include files...
    INFO: [USF-XSim-98] Fetching design files from 'sim_1'...
    INFO: [USF-XSim-2] XSim::Compile design
    INFO: [USF-XSim-61] Executing 'COMPILE and ANALYZE' step in '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
    xvlog --incr --relax -prj chdr_crossbar_nxn_vlog.prj
    INFO: [USF-XSim-69] 'compile' step finished in '1' seconds
    INFO: [USF-XSim-3] XSim::Elaborate design
    INFO: [USF-XSim-61] Executing 'ELABORATE' step in '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
    Vivado Simulator 2017.4
    Copyright 1986-1999, 2001-2016 Xilinx, Inc. All Rights Reserved.
    Running: /opt/Xilinx/Vivado/2017.4/bin/unwrapped/lnx64.o/xelab -wto 2a49832975904da5a1158efcba0d9d89 --incr --debug typical --relax --mt 8 -L xil_defaultlib -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot chdr_crossbar_nxn_behav xil_defaultlib.chdr_crossbar_nxn xil_defaultlib.glbl -log elaborate.log
    Using 8 slave threads.
    Starting static elaboration
    Completed static elaboration
    INFO: [XSIM 43-4323] No Change in HDL. Linking previously generated obj files to create kernel
    INFO: [USF-XSim-69] 'elaborate' step finished in '0' seconds
    INFO: [USF-XSim-4] XSim::Simulate design
    INFO: [USF-XSim-61] Executing 'SIMULATE' step in '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
    INFO: [USF-XSim-98] *** Running xsim
    with args "chdr_crossbar_nxn_behav -key {Behavioral:sim_1:Functional:chdr_crossbar_nxn} -tclbatch {chdr_crossbar_nxn.tcl} -view {/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/noc_block_pulse_cir_avg_tb_behav.wcfg} -log {simulate.log}"
    INFO: [USF-XSim-8] Loading simulator feature
    Vivado Simulator 2017.4
    Time resolution is 1 ps
    open_wave_config /home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/noc_block_pulse_cir_avg_tb_behav.wcfg
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_running was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_failed was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_all_done was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sim_time was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_run_count was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_pass_count was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/bus_clk was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/bus_rst was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/ce_clk was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/ce_rst was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_i_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_i_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_i_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_i_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_o_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_o_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_o_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_o_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_set_stb was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_rb_stb was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_set_addr was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_rb_addr was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_set_data was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_rb_data was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_i_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_i_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_i_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_i_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_o_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_o_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_o_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_o_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_set_stb was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_set_addr was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_set_data was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_rb_stb was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_rb_addr was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_rb_data was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_cmd_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_cmd_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_cmd_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_cmd_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_ack_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_ack_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_ack_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_ack_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_data_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_data_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_data_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_data_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_data_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_data_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_data_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_data_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_axis_data_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_axis_data_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_axis_data_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_axis_data_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_axis_data_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_axis_data_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_axis_data_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_axis_data_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_i_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_i_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_i_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_i_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_o_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_o_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_o_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_o_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sim_time_increment was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/BUS_CLK_PERIOD was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/CE_CLK_PERIOD was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/NUM_CE was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/NUM_STREAMS was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_addr was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sid_noc_block_tb was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sid_tb_config was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sid_noc_block_pulse_cir_avg was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/seq_len was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/avg_size was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/num_samples was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/threshold was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/seq_len1 was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/avg_size1 was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/num_samples1 was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/NUM_ITERATIONS was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/bus_clk was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/bus_rst was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ce_clk was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ce_rst was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/i_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/i_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/i_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/i_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/o_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/o_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/o_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/o_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/debug was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/set_data was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/set_addr was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/set_stb was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/rb_data was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/rb_addr was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/cmdout_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ackin_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/cmdout_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/cmdout_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/cmdout_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ackin_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ackin_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ackin_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_sink_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_src_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_sink_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_sink_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_sink_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_src_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_src_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_src_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/clear_tx_seqnum was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/next_dst_sid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_data_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_data_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_data_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_data_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/s_axis_data_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/s_axis_data_tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/s_axis_data_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/s_axis_data_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_config_tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_config_tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_config_tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/block_reset was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/threshold was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/avg_size was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/seq_len was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/NOC_ID was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/STR_SINK_FIFOSIZE was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/NUM_AXI_CONFIG_BUS was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/AXI_WRAPPER_BASE was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_AXI_CONFIG_BASE was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_BLOCK_RESET was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_THRESHOLD was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_SEQ_LEN was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_AVG_SIZE was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_clk was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_rst_n was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/i_data_TDATA was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/i_data_TVALID was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/i_data_TLAST was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/o_data_TDATA was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/o_data_TREADY was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/o_data_TLAST was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/threshold_V was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/seq_len_V was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/avg_size_V was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/i_data_TREADY was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/o_data_TVALID was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_rst_n_inv was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/currentState was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/seq_len_reg_V was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/avg_size_reg_V was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_in_valid_V was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_in_reg_V was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/wr_cnt_V was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/blk_cnt_V was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_dout was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_empty_n was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_read was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_din was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_full_n was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_write was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_dout was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_empty_n was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_read was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_din was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_full_n was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_write was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_sample_cnt_V was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/rd_cnt_V was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/seq_len_reg_V_loc_reg_216 was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_reg_ppstg_seq_len_reg_V_loc_reg_216_pp0_it2 was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/tmp_17_nbreadreq_fu_132_p4 was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_sig_bdd_65 was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_reg_ppiten_pp0_it0 was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/currentState_load_reg_590 was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_in_valid_V_load_reg_607 was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/clk was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/DWIDTH was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/NUM_STREAMS was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/clk was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/tdata was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/tvalid was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/tlast was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/tready was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/DWIDTH was not found in the design.
    WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/NUM_STREAMS was not found in the design.
    source chdr_crossbar_nxn.tcl

set curr_wave [current_wave_config]

if { [string length $curr_wave] == 0 } {

if { [llength [get_objects]] > 0} {

add_wave /

set_property needs_save false [current_wave_config]

} else {

send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console."

}

}

run 1000ns

INFO: [USF-XSim-96] XSim completed. Design snapshot 'chdr_crossbar_nxn_behav' loaded.
INFO: [USF-XSim-97] XSim simulation ran for 1000ns
launch_simulation: Time (s): cpu = 00:00:11 ; elapsed = 00:00:06 . Memory (MB): peak = 6332.859 ; gain = 102.402 ; free physical = 4397 ; free virtual = 39550
close_sim
INFO: [Simtcl 6-16] Simulation closed
launch_simulation
INFO: [Vivado 12-5698] Checking validity of IPs in the design for the 'XSim' simulator...
INFO: [Vivado 12-5682] Launching behavioral simulation in '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
INFO: [Vivado 12-4795] Using compiled simulation libraries for IPs
INFO: [SIM-utils-51] Simulation object is 'sim_1'
INFO: [USF-XSim-7] Finding pre-compiled libraries...
INFO: [USF-XSim-11] File '/opt/Xilinx/Vivado/2017.4/data/xsim/ip/xsim_ip.ini' copied to run dir:'/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
INFO: [SIM-utils-54] Inspecting design source files for 'chdr_crossbar_nxn' in fileset 'sim_1'...
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/axi_hb31.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/axi_hb47.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/bootram.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/bootram.coe'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/decim_4_5.coe'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/wrc_phy8.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/wrc_phy8_sim.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fir.asy'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fir_reload_order.txt'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fir_xmdf.tcl'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/decim_4_5.coe'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fft.asy'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fft_xmdf.tcl'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/wrc_phy8.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/wrc_phy8_sim.mif'
WARNING: [SIM-utils-52] IP component XML file does not exist: '/home/radar/Projects/fpga-v2017/usrp3/lib/ip/dds/dds.xml'
WARNING: [SIM-utils-52] IP component XML file does not exist: '/home/radar/Projects/fpga-v2017/usrp3/lib/coregen/simple_fft.xml'
WARNING: [SIM-utils-52] IP component XML file does not exist: '/home/radar/Projects/fpga-v2017/usrp3/lib/coregen/simple_fir.xml'
WARNING: [SIM-utils-52] IP component XML file does not exist: '/home/radar/Projects/fpga-v2017/usrp3/lib/coregen/streaming_fft.xml'
INFO: [USF-XSim-97] Finding global include files...
INFO: [USF-XSim-98] Fetching design files from 'sim_1'...
INFO: [USF-XSim-2] XSim::Compile design
INFO: [USF-XSim-61] Executing 'COMPILE and ANALYZE' step in '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
xvlog --incr --relax -prj chdr_crossbar_nxn_vlog.prj
INFO: [USF-XSim-69] 'compile' step finished in '0' seconds
INFO: [USF-XSim-3] XSim::Elaborate design
INFO: [USF-XSim-61] Executing 'ELABORATE' step in '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
Vivado Simulator 2017.4
Copyright 1986-1999, 2001-2016 Xilinx, Inc. All Rights Reserved.
Running: /opt/Xilinx/Vivado/2017.4/bin/unwrapped/lnx64.o/xelab -wto 2a49832975904da5a1158efcba0d9d89 --incr --debug typical --relax --mt 8 -L xil_defaultlib -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot chdr_crossbar_nxn_behav xil_defaultlib.chdr_crossbar_nxn xil_defaultlib.glbl -log elaborate.log
Using 8 slave threads.
Starting static elaboration
Completed static elaboration
INFO: [XSIM 43-4323] No Change in HDL. Linking previously generated obj files to create kernel
INFO: [USF-XSim-69] 'elaborate' step finished in '1' seconds
INFO: [USF-XSim-4] XSim::Simulate design
INFO: [USF-XSim-61] Executing 'SIMULATE' step in '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
INFO: [USF-XSim-98] *** Running xsim
with args "chdr_crossbar_nxn_behav -key {Behavioral:sim_1:Functional:chdr_crossbar_nxn} -tclbatch {chdr_crossbar_nxn.tcl} -view {/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/noc_block_pulse_cir_avg_tb_behav.wcfg} -log {simulate.log}"
INFO: [USF-XSim-8] Loading simulator feature
Vivado Simulator 2017.4
Time resolution is 1 ps
open_wave_config /home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/noc_block_pulse_cir_avg_tb_behav.wcfg
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_running was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_failed was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_all_done was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sim_time was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_run_count was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_pass_count was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/bus_clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/bus_rst was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/ce_clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/ce_rst was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_i_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_i_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_i_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_i_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_o_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_o_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_o_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_o_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_set_stb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_rb_stb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_set_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_rb_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_set_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_rb_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_i_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_i_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_i_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_i_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_o_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_o_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_o_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_o_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_set_stb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_set_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_set_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_rb_stb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_rb_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_rb_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_cmd_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_cmd_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_cmd_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_cmd_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_ack_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_ack_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_ack_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_ack_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_axis_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_axis_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_axis_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_axis_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_axis_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_axis_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_axis_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_axis_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_i_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_i_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_i_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_i_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_o_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_o_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_o_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_o_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sim_time_increment was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/BUS_CLK_PERIOD was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/CE_CLK_PERIOD was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/NUM_CE was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/NUM_STREAMS was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sid_noc_block_tb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sid_tb_config was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sid_noc_block_pulse_cir_avg was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/seq_len was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/avg_size was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/num_samples was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/threshold was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/seq_len1 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/avg_size1 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/num_samples1 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/NUM_ITERATIONS was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/bus_clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/bus_rst was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ce_clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ce_rst was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/i_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/i_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/i_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/i_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/o_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/o_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/o_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/o_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/debug was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/set_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/set_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/set_stb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/rb_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/rb_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/cmdout_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ackin_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/cmdout_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/cmdout_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/cmdout_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ackin_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ackin_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ackin_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_sink_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_src_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_sink_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_sink_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_sink_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_src_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_src_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_src_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/clear_tx_seqnum was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/next_dst_sid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/s_axis_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/s_axis_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/s_axis_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/s_axis_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_config_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_config_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_config_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/block_reset was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/threshold was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/avg_size was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/seq_len was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/NOC_ID was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/STR_SINK_FIFOSIZE was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/NUM_AXI_CONFIG_BUS was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/AXI_WRAPPER_BASE was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_AXI_CONFIG_BASE was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_BLOCK_RESET was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_THRESHOLD was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_SEQ_LEN was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_AVG_SIZE was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_rst_n was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/i_data_TDATA was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/i_data_TVALID was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/i_data_TLAST was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/o_data_TDATA was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/o_data_TREADY was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/o_data_TLAST was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/threshold_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/seq_len_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/avg_size_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/i_data_TREADY was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/o_data_TVALID was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_rst_n_inv was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/currentState was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/seq_len_reg_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/avg_size_reg_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_in_valid_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_in_reg_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/wr_cnt_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/blk_cnt_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_dout was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_empty_n was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_read was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_din was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_full_n was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_write was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_dout was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_empty_n was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_read was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_din was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_full_n was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_write was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_sample_cnt_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/rd_cnt_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/seq_len_reg_V_loc_reg_216 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_reg_ppstg_seq_len_reg_V_loc_reg_216_pp0_it2 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/tmp_17_nbreadreq_fu_132_p4 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_sig_bdd_65 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_reg_ppiten_pp0_it0 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/currentState_load_reg_590 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_in_valid_V_load_reg_607 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/DWIDTH was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/NUM_STREAMS was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/DWIDTH was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/NUM_STREAMS was not found in the design.
source chdr_crossbar_nxn.tcl

set curr_wave [current_wave_config]

if { [string length $curr_wave] == 0 } {

if { [llength [get_objects]] > 0} {

add_wave /

set_property needs_save false [current_wave_config]

} else {

send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console."

}

}

run 1000ns

INFO: [USF-XSim-96] XSim completed. Design snapshot 'chdr_crossbar_nxn_behav' loaded.
INFO: [USF-XSim-97] XSim simulation ran for 1000ns
launch_simulation: Time (s): cpu = 00:00:08 ; elapsed = 00:00:06 . Memory (MB): peak = 6350.180 ; gain = 3.836 ; free physical = 4394 ; free virtual = 39537
close_sim
INFO: [Simtcl 6-16] Simulation closed
launch_simulation
INFO: [Vivado 12-5698] Checking validity of IPs in the design for the 'XSim' simulator...
INFO: [Vivado 12-5682] Launching behavioral simulation in '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
INFO: [Vivado 12-4795] Using compiled simulation libraries for IPs
INFO: [SIM-utils-51] Simulation object is 'sim_1'
INFO: [USF-XSim-7] Finding pre-compiled libraries...
INFO: [USF-XSim-11] File '/opt/Xilinx/Vivado/2017.4/data/xsim/ip/xsim_ip.ini' copied to run dir:'/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
INFO: [SIM-utils-54] Inspecting design source files for 'chdr_crossbar_nxn' in fileset 'sim_1'...
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/axi_hb31.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/axi_hb47.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/bootram.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/bootram.coe'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/decim_4_5.coe'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/wrc_phy8.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/wrc_phy8_sim.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fir.asy'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fir_reload_order.txt'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fir_xmdf.tcl'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/decim_4_5.coe'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fft.asy'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fft_xmdf.tcl'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/wrc_phy8.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/wrc_phy8_sim.mif'
WARNING: [SIM-utils-52] IP component XML file does not exist: '/home/radar/Projects/fpga-v2017/usrp3/lib/ip/dds/dds.xml'
WARNING: [SIM-utils-52] IP component XML file does not exist: '/home/radar/Projects/fpga-v2017/usrp3/lib/coregen/simple_fft.xml'
WARNING: [SIM-utils-52] IP component XML file does not exist: '/home/radar/Projects/fpga-v2017/usrp3/lib/coregen/simple_fir.xml'
WARNING: [SIM-utils-52] IP component XML file does not exist: '/home/radar/Projects/fpga-v2017/usrp3/lib/coregen/streaming_fft.xml'
INFO: [USF-XSim-97] Finding global include files...
INFO: [USF-XSim-98] Fetching design files from 'sim_1'...
INFO: [USF-XSim-2] XSim::Compile design
INFO: [USF-XSim-61] Executing 'COMPILE and ANALYZE' step in '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
xvlog --incr --relax -prj chdr_crossbar_nxn_vlog.prj
INFO: [USF-XSim-69] 'compile' step finished in '0' seconds
INFO: [USF-XSim-3] XSim::Elaborate design
INFO: [USF-XSim-61] Executing 'ELABORATE' step in '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
Vivado Simulator 2017.4
Copyright 1986-1999, 2001-2016 Xilinx, Inc. All Rights Reserved.
Running: /opt/Xilinx/Vivado/2017.4/bin/unwrapped/lnx64.o/xelab -wto 2a49832975904da5a1158efcba0d9d89 --incr --debug typical --relax --mt 8 -L xil_defaultlib -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot chdr_crossbar_nxn_behav xil_defaultlib.chdr_crossbar_nxn xil_defaultlib.glbl -log elaborate.log
Using 8 slave threads.
Starting static elaboration
Completed static elaboration
INFO: [XSIM 43-4323] No Change in HDL. Linking previously generated obj files to create kernel
INFO: [USF-XSim-69] 'elaborate' step finished in '1' seconds
INFO: [USF-XSim-4] XSim::Simulate design
INFO: [USF-XSim-61] Executing 'SIMULATE' step in '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
INFO: [USF-XSim-98] *** Running xsim
with args "chdr_crossbar_nxn_behav -key {Behavioral:sim_1:Functional:chdr_crossbar_nxn} -tclbatch {chdr_crossbar_nxn.tcl} -view {/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/noc_block_pulse_cir_avg_tb_behav.wcfg} -log {simulate.log}"
INFO: [USF-XSim-8] Loading simulator feature
Vivado Simulator 2017.4
Time resolution is 1 ps
open_wave_config /home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/noc_block_pulse_cir_avg_tb_behav.wcfg
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_running was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_failed was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_all_done was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sim_time was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_run_count was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_pass_count was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/bus_clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/bus_rst was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/ce_clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/ce_rst was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_i_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_i_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_i_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_i_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_o_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_o_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_o_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_o_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_set_stb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_rb_stb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_set_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_rb_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_set_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_rb_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_i_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_i_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_i_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_i_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_o_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_o_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_o_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_o_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_set_stb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_set_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_set_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_rb_stb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_rb_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_rb_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_cmd_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_cmd_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_cmd_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_cmd_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_ack_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_ack_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_ack_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_ack_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_axis_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_axis_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_axis_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_axis_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_axis_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_axis_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_axis_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_axis_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_i_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_i_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_i_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_i_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_o_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_o_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_o_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_o_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sim_time_increment was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/BUS_CLK_PERIOD was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/CE_CLK_PERIOD was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/NUM_CE was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/NUM_STREAMS was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sid_noc_block_tb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sid_tb_config was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sid_noc_block_pulse_cir_avg was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/seq_len was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/avg_size was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/num_samples was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/threshold was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/seq_len1 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/avg_size1 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/num_samples1 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/NUM_ITERATIONS was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/bus_clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/bus_rst was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ce_clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ce_rst was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/i_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/i_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/i_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/i_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/o_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/o_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/o_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/o_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/debug was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/set_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/set_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/set_stb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/rb_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/rb_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/cmdout_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ackin_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/cmdout_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/cmdout_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/cmdout_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ackin_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ackin_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ackin_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_sink_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_src_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_sink_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_sink_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_sink_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_src_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_src_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_src_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/clear_tx_seqnum was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/next_dst_sid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/s_axis_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/s_axis_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/s_axis_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/s_axis_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_config_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_config_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_config_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/block_reset was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/threshold was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/avg_size was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/seq_len was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/NOC_ID was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/STR_SINK_FIFOSIZE was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/NUM_AXI_CONFIG_BUS was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/AXI_WRAPPER_BASE was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_AXI_CONFIG_BASE was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_BLOCK_RESET was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_THRESHOLD was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_SEQ_LEN was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_AVG_SIZE was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_rst_n was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/i_data_TDATA was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/i_data_TVALID was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/i_data_TLAST was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/o_data_TDATA was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/o_data_TREADY was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/o_data_TLAST was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/threshold_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/seq_len_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/avg_size_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/i_data_TREADY was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/o_data_TVALID was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_rst_n_inv was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/currentState was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/seq_len_reg_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/avg_size_reg_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_in_valid_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_in_reg_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/wr_cnt_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/blk_cnt_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_dout was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_empty_n was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_read was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_din was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_full_n was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_write was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_dout was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_empty_n was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_read was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_din was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_full_n was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_write was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_sample_cnt_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/rd_cnt_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/seq_len_reg_V_loc_reg_216 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_reg_ppstg_seq_len_reg_V_loc_reg_216_pp0_it2 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/tmp_17_nbreadreq_fu_132_p4 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_sig_bdd_65 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_reg_ppiten_pp0_it0 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/currentState_load_reg_590 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_in_valid_V_load_reg_607 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/DWIDTH was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/NUM_STREAMS was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/DWIDTH was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/NUM_STREAMS was not found in the design.
source chdr_crossbar_nxn.tcl

set curr_wave [current_wave_config]

if { [string length $curr_wave] == 0 } {

if { [llength [get_objects]] > 0} {

add_wave /

set_property needs_save false [current_wave_config]

} else {

send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console."

}

}

run 1000ns

INFO: [USF-XSim-96] XSim completed. Design snapshot 'chdr_crossbar_nxn_behav' loaded.
INFO: [USF-XSim-97] XSim simulation ran for 1000ns
launch_simulation: Time (s): cpu = 00:00:05 ; elapsed = 00:00:05 . Memory (MB): peak = 6368.188 ; gain = 2.520 ; free physical = 4374 ; free virtual = 39526
close_sim
INFO: [Simtcl 6-16] Simulation closed
launch_simulation
INFO: [Vivado 12-5698] Checking validity of IPs in the design for the 'XSim' simulator...
INFO: [Vivado 12-5682] Launching behavioral simulation in '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
INFO: [Vivado 12-4795] Using compiled simulation libraries for IPs
INFO: [SIM-utils-51] Simulation object is 'sim_1'
INFO: [USF-XSim-7] Finding pre-compiled libraries...
INFO: [USF-XSim-11] File '/opt/Xilinx/Vivado/2017.4/data/xsim/ip/xsim_ip.ini' copied to run dir:'/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
INFO: [SIM-utils-54] Inspecting design source files for 'chdr_crossbar_nxn' in fileset 'sim_1'...
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/axi_hb31.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/axi_hb47.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/bootram.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/bootram.coe'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/decim_4_5.coe'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/wrc_phy8.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/wrc_phy8_sim.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fir.asy'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fir_reload_order.txt'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fir_xmdf.tcl'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/decim_4_5.coe'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fft.asy'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/simple_fft_xmdf.tcl'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/wrc_phy8.mif'
INFO: [SIM-utils-43] Exported '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim/wrc_phy8_sim.mif'
WARNING: [SIM-utils-52] IP component XML file does not exist: '/home/radar/Projects/fpga-v2017/usrp3/lib/ip/dds/dds.xml'
WARNING: [SIM-utils-52] IP component XML file does not exist: '/home/radar/Projects/fpga-v2017/usrp3/lib/coregen/simple_fft.xml'
WARNING: [SIM-utils-52] IP component XML file does not exist: '/home/radar/Projects/fpga-v2017/usrp3/lib/coregen/simple_fir.xml'
WARNING: [SIM-utils-52] IP component XML file does not exist: '/home/radar/Projects/fpga-v2017/usrp3/lib/coregen/streaming_fft.xml'
INFO: [USF-XSim-97] Finding global include files...
INFO: [USF-XSim-98] Fetching design files from 'sim_1'...
INFO: [USF-XSim-2] XSim::Compile design
INFO: [USF-XSim-61] Executing 'COMPILE and ANALYZE' step in '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
xvlog --incr --relax -prj chdr_crossbar_nxn_vlog.prj
INFO: [USF-XSim-69] 'compile' step finished in '1' seconds
INFO: [USF-XSim-3] XSim::Elaborate design
INFO: [USF-XSim-61] Executing 'ELABORATE' step in '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
Vivado Simulator 2017.4
Copyright 1986-1999, 2001-2016 Xilinx, Inc. All Rights Reserved.
Running: /opt/Xilinx/Vivado/2017.4/bin/unwrapped/lnx64.o/xelab -wto 2a49832975904da5a1158efcba0d9d89 --incr --debug typical --relax --mt 8 -L xil_defaultlib -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot chdr_crossbar_nxn_behav xil_defaultlib.chdr_crossbar_nxn xil_defaultlib.glbl -log elaborate.log
Using 8 slave threads.
Starting static elaboration
Completed static elaboration
INFO: [XSIM 43-4323] No Change in HDL. Linking previously generated obj files to create kernel
INFO: [USF-XSim-69] 'elaborate' step finished in '0' seconds
INFO: [USF-XSim-4] XSim::Simulate design
INFO: [USF-XSim-61] Executing 'SIMULATE' step in '/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/project_3.sim/sim_1/behav/xsim'
INFO: [USF-XSim-98] *** Running xsim
with args "chdr_crossbar_nxn_behav -key {Behavioral:sim_1:Functional:chdr_crossbar_nxn} -tclbatch {chdr_crossbar_nxn.tcl} -view {/home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/noc_block_pulse_cir_avg_tb_behav.wcfg} -log {simulate.log}"
INFO: [USF-XSim-8] Loading simulator feature
Vivado Simulator 2017.4
Time resolution is 1 ps
open_wave_config /home/radar/Projects/fpga-v2017/usrp3/top/x300/build-X300_RFNOC_PULSECIRAVG/project_3/noc_block_pulse_cir_avg_tb_behav.wcfg
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_running was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_failed was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_all_done was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sim_time was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_run_count was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tc_pass_count was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/bus_clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/bus_rst was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/ce_clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/ce_rst was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_i_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_i_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_i_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_i_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_o_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_o_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_o_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_o_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_set_stb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_rb_stb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_set_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_rb_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_set_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_rb_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_i_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_i_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_i_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_i_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_o_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_o_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_o_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_tb_o_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_set_stb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_set_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_set_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_rb_stb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_rb_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_rb_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_cmd_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_cmd_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_cmd_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_cmd_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_ack_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_ack_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_ack_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_ack_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_cvita_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_cvita_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_axis_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_axis_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_axis_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_m_axis_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_axis_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_axis_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_axis_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_s_axis_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_i_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_i_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_i_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_i_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_o_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_o_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_o_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg_o_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sim_time_increment was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/BUS_CLK_PERIOD was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/CE_CLK_PERIOD was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/NUM_CE was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/NUM_STREAMS was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/xbar_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sid_noc_block_tb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sid_tb_config was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/sid_noc_block_pulse_cir_avg was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/seq_len was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/avg_size was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/num_samples was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/threshold was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/seq_len1 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/avg_size1 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/num_samples1 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/NUM_ITERATIONS was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/bus_clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/bus_rst was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ce_clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ce_rst was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/i_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/i_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/i_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/i_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/o_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/o_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/o_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/o_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/debug was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/set_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/set_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/set_stb was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/rb_data was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/rb_addr was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/cmdout_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ackin_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/cmdout_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/cmdout_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/cmdout_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ackin_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ackin_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/ackin_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_sink_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_src_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_sink_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_sink_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_sink_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_src_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_src_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/str_src_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/clear_tx_seqnum was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/next_dst_sid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/s_axis_data_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/s_axis_data_tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/s_axis_data_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/s_axis_data_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_config_tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_config_tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/m_axis_config_tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/block_reset was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/threshold was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/avg_size was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/seq_len was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/NOC_ID was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/STR_SINK_FIFOSIZE was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/NUM_AXI_CONFIG_BUS was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/AXI_WRAPPER_BASE was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_AXI_CONFIG_BASE was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_BLOCK_RESET was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_THRESHOLD was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_SEQ_LEN was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/SR_AVG_SIZE was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_rst_n was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/i_data_TDATA was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/i_data_TVALID was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/i_data_TLAST was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/o_data_TDATA was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/o_data_TREADY was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/o_data_TLAST was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/threshold_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/seq_len_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/avg_size_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/i_data_TREADY was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/o_data_TVALID was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_rst_n_inv was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/currentState was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/seq_len_reg_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/avg_size_reg_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_in_valid_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_in_reg_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/wr_cnt_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/blk_cnt_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_dout was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_empty_n was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_read was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_din was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_full_n was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_fifo_V_V_write was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_dout was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_empty_n was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_read was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_din was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_full_n was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_fifo_V_V_write was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/out_sample_cnt_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/rd_cnt_V was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/seq_len_reg_V_loc_reg_216 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_reg_ppstg_seq_len_reg_V_loc_reg_216_pp0_it2 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/tmp_17_nbreadreq_fu_132_p4 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_sig_bdd_65 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/ap_reg_ppiten_pp0_it0 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/currentState_load_reg_590 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/noc_block_pulse_cir_avg/inst_pulse_cir_avg/data_in_valid_V_load_reg_607 was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/DWIDTH was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/m_cvita_data/axis/NUM_STREAMS was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/clk was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/tdata was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/tvalid was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/tlast was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/tready was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/DWIDTH was not found in the design.
WARNING: Simulation object /noc_block_pulse_cir_avg_tb/tb_streamer/s_cvita_data/axis/NUM_STREAMS was not found in the design.
source chdr_crossbar_nxn.tcl

set curr_wave [current_wave_config]

if { [string length $curr_wave] == 0 } {

if { [llength [get_objects]] > 0} {

add_wave /

set_property needs_save false [current_wave_config]

} else {

send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console."

}

}

run 1000ns

INFO: [USF-XSim-96] XSim completed. Design snapshot 'chdr_crossbar_nxn_behav' loaded.
INFO: [USF-XSim-97] XSim simulation ran for 1000ns
launch_simulation: Time (s): cpu = 00:00:05 ; elapsed = 00:00:05 . Memory (MB): peak =

Pulse cir avg - simulation issue thread

  1. Simulation sample_t type queues have issues with size changes that affect ability to interpret simulation.

  2. Test bench to verify specific cases must be written.

  • pulse length = 1
  • num pulses = 1
  • pulse length = max size
  • num pulses > 1

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.