Ignore:
Timestamp:
May 11, 2011, 6:53:01 PM (13 years ago)
Author:
kane
Message:

delete all timeout reference (multi write buffer)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/platforms/caba-ring-ccxcachev4_memcachev4-mips32el/top.cpp

    r165 r167  
    4949                                           
    5050// * Simulation                             
    51 #  define CONFIG_DEFAULT                      "configuration/default.cfg"
     51#  define CONFIG_DEFAULT                    "configuration/default.cfg"
    5252#  define NCYCLES_DEFAULT                   0
    5353#  define SOFT_DEFAULT                      "soft/bin.soft"
     
    6464  std::cout << "                    - iways, isets, iwords," << std::endl;
    6565  std::cout << "                    - dways, dsets, dwords," << std::endl;
    66   std::cout << "                    - wnwords, wnlines, wtimeout," << std::endl;
     66  std::cout << "                    - wnwords, wnlines, " << std::endl;
    6767  std::cout << "                    - memc_nways, memc_nsets, memc_words, memc_heap_size." << std::endl;
    6868  std::cout << "                  default : \"" << CONFIG_DEFAULT << "\"" << std::endl;
     
    112112        uint32_t iways, isets, iwords;
    113113        uint32_t dways, dsets, dwords;
    114         uint32_t wnwords, wnlines, wtimeout;
     114        uint32_t wnwords, wnlines;
    115115        uint32_t memc_nways, memc_nsets, memc_words, memc_heap_size;
    116116
     
    149149        if (not (inFile >> str)){std::cout << "Invalid parameters number in configuration file." << std::endl; usage(argv[0]);}
    150150        wnlines         =std::atoi(str.c_str());
    151         if (not (inFile >> str)){std::cout << "Invalid parameters number in configuration file." << std::endl; usage(argv[0]);}
    152         wtimeout        =std::atoi(str.c_str());
    153151        if (not (inFile >> str)){std::cout << "Invalid parameters number in configuration file." << std::endl; usage(argv[0]);}
    154152        memc_nways      =std::atoi(str.c_str());
     
    179177        std::cout << "    * wnwords          : " << wnwords          << std::endl;
    180178        std::cout << "    * wnlines          : " << wnlines          << std::endl;
    181         std::cout << "    * wtimeout         : " << wtimeout         << std::endl;
    182179        std::cout << "    * memc_nways       : " << memc_nways       << std::endl;
    183180        std::cout << "    * memc_nsets       : " << memc_nsets       << std::endl;
     
    296293                                                                                    ,iways*nb_cpu_by_cache, isets, iwords
    297294                                                                                    ,dways*nb_cpu_by_cache, dsets, dwords
    298                                                                                     ,wnwords, wnlines*nb_cpu_by_cache, wtimeout
     295                                                                                    ,wnwords, wnlines*nb_cpu_by_cache
    299296#endif
    300297                                                                                    );
Note: See TracChangeset for help on using the changeset viewer.