Ignore:
Timestamp:
May 26, 2009, 9:01:47 PM (15 years ago)
Author:
rosiere
Message:

1) Context_state : Add statistics
2) Add configuration with multi front_end
3) Add optionnal pid at log filename

Location:
trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Network/Execution_unit_to_Write_unit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Network/Execution_unit_to_Write_unit/include/Parameters.h

    r88 r120  
    4040  public : bool    *** _table_routing                ; //[nb_execute_unit][nb_execute_unit_port][nb_write_unit]
    4141  public : bool     ** _table_thread                 ; //[nb_write_unit][nb_thread]
     42  public : bool      * _num_thread_valid             ; //[nb_thread]
    4243
    4344  public : uint32_t    _max_nb_execute_unit_port     ;
     
    7172                        bool    *** table_routing                ,
    7273                        bool     ** table_thread                 ,
     74                        bool      * num_thread_valid             , //[nb_thread]
    7375                        bool        is_toplevel=false
    7476                        );
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Execute_loop/Execute_loop/Network/Execution_unit_to_Write_unit/src/Parameters.cpp

    r97 r120  
    3333                          bool    *** table_routing                ,//[nb_execute_unit][nb_execute_unit_port][nb_write_unit]
    3434                          bool     ** table_thread                 ,//[nb_write_unit][nb_thread]                           
     35                          bool      * num_thread_valid             ,//[nb_thread]
    3536                          bool        is_toplevel                  )
    3637  {
     
    4950    _table_routing           = table_routing       ;
    5051    _table_thread            = table_thread        ;
     52    _num_thread_valid        = num_thread_valid    ;
    5153
    5254    _max_nb_execute_unit_port= max<uint32_t>(_nb_execute_unit_port, _nb_execute_unit);
Note: See TracChangeset for help on using the changeset viewer.