Ignore:
Timestamp:
Jan 14, 2016, 10:13:09 AM (8 years ago)
Author:
cfuguet
Message:

Improving the configuration infrastructure of the coremark application

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/applications/coremark/mach/core_portme.h

    r753 r756  
    182182
    183183
     184/* Configuration : ITERATIONS
     185        Valid values :
     186        0 - the actual number of iterations is computed by the benchmark.
     187        N > 0 - fixed number of iterations
     188*/
     189#ifndef ITERATIONS
     190#define ITERATIONS 0
     191#endif
     192
     193
     194/* Configuration : TOTAL_DATA_SIZE
     195*/
     196#ifndef TOTAL_DATA_SIZE
     197#define TOTAL_DATA_SIZE 2000
     198#endif
     199
     200
    184201/* Variable : default_num_contexts
    185         Not used for this simple port, must cintain the value 1.
    186202*/
    187203extern ee_u32 default_num_contexts;
     
    190206        ee_u8       portable_id;
    191207        pthread_t   thread;
     208
     209        CORE_TICKS  start_time, stop_time;
    192210} core_portable;
    193211
Note: See TracChangeset for help on using the changeset viewer.