Ignore:
Timestamp:
May 21, 2014, 11:36:19 AM (10 years ago)
Author:
rolagamo
Message:

Ceci est la version 16 bits de la plateforme ainsi que la version hierarchique du NoCNoC

Location:
PROJECT_CORE_MPI/MPI_HCL/BRANCHES/v2.0
Files:
1 edited
2 copied

Legend:

Unmodified
Added
Removed
  • PROJECT_CORE_MPI/MPI_HCL/BRANCHES/v2.0/NOC/Scheduler.vhd

    r101 r139  
    6161COMPONENT Scheduler3_3
    6262   PORT(
    63       Request : IN std_logic_vector(9 downto 1);
     63      Req : IN std_logic_vector(9 downto 1);
    6464      Fifo_full : IN std_logic_vector(3 downto 1);
    6565      clk : IN std_logic;
     
    8383COMPONENT Scheduler5_5
    8484   PORT(
    85       Request : IN std_logic_vector(25 downto 1);
     85      Req : IN std_logic_vector(25 downto 1);
    8686      Fifo_full : IN std_logic_vector(5 downto 1);
    8787      clk : IN std_logic;
     
    9494COMPONENT Scheduler6_6
    9595   PORT(
    96       Request : IN std_logic_vector(36 downto 1);
     96      Req : IN std_logic_vector(36 downto 1);
    9797      Fifo_full : IN std_logic_vector(6 downto 1);
    9898      clk : IN std_logic;
     
    105105COMPONENT Scheduler7_7
    106106   PORT(
    107       Request : IN std_logic_vector(49 downto 1);
     107      Req : IN std_logic_vector(49 downto 1);
    108108      Fifo_full : IN std_logic_vector(7 downto 1);
    109109      clk : IN std_logic;
     
    127127COMPONENT Scheduler9_9
    128128   PORT(
    129       Request : IN std_logic_vector(81 downto 1);
     129      Req : IN std_logic_vector(81 downto 1);
    130130      Fifo_full : IN std_logic_vector(9 downto 1);
    131131      clk : IN std_logic;
     
    240240  Inst_Scheduler3_3 : Scheduler3_3
    241241   PORT MAP(
    242      Request => Request_latch,
     242     Req => Request_latch,
    243243     Fifo_full => Fifo_full_latch,
    244244     clk => clk ,
     
    268268  Inst_Scheduler5_5 : Scheduler5_5
    269269   PORT MAP(
    270      Request => Request,
     270     Req => Request,
    271271     Fifo_full => Fifo_full,
    272272     clk => clk ,
     
    282282  Inst_Scheduler6_6 : Scheduler6_6
    283283   PORT MAP(
    284      Request => Request_latch,
     284     Req => Request_latch,
    285285     Fifo_full => Fifo_full_latch,
    286286     clk => clk ,
     
    296296  Inst_Scheduler7_7 : Scheduler7_7
    297297   PORT MAP(
    298      Request => Request_latch,
     298     Req => Request_latch,
    299299     Fifo_full => Fifo_full_latch,
    300300     clk => clk ,
     
    324324  Inst_Scheduler9_9 : Scheduler9_9
    325325   PORT MAP(
    326      Request => Request_latch,
     326     Req => Request_latch,
    327327     Fifo_full => Fifo_full_latch,
    328328     clk => clk ,
Note: See TracChangeset for help on using the changeset viewer.