Changeset 1044 for trunk/platforms


Ignore:
Timestamp:
Aug 19, 2016, 7:27:02 PM (8 years ago)
Author:
alain
Message:

Introduce the arch_info.py pythoni script describing the tsar_generic_iob architecture for ALMOS_MK.

Location:
trunk/platforms/tsar_generic_iob
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/platforms/tsar_generic_iob/top.cpp

    r1030 r1044  
    16601660        {
    16611661            gettimeofday(&t2, NULL);
    1662 
    16631662            uint64_t ms1 = (uint64_t) t1.tv_sec  * 1000ULL +
    16641663                           (uint64_t) t1.tv_usec / 1000;
     
    16711670
    16721671            gettimeofday(&t1, NULL);
     1672
     1673            // loop on all processors to display FROZEN stats
     1674            for ( size_t x = 0 ; x < XMAX ; x++ )
     1675            {
     1676                for ( size_t y = 0 ; y < YMAX ; y++ )
     1677                {
     1678                    for ( size_t l = 0 ; l < NB_PROCS_MAX ; l++ )
     1679                    {
     1680                        clusters[x][y]->proc[l]->print_frozen_stats();
     1681                    }
     1682                }
     1683            }
    16731684        }
    16741685
Note: See TracChangeset for help on using the changeset viewer.