Home
last modified time | relevance | path

Searched refs:execution_time (Results 1 – 4 of 4) sorted by relevance

/oneTBB/examples/parallel_for/game_of_life/
H A DGame_of_life.cpp36 double execution_time; //! time for game of life iterations variable
88 execution_time = 5; in ParseCommandLine()
111 execution_time = strtol(argv[argc - 1], &end, 0); in ParseCommandLine()
136 m_seq->Run(execution_time, 1); in main()
141 m_par->Run(execution_time, p); in main()
H A DEvolution.hpp62 virtual void Run(double execution_time, int nthread) = 0;
110 virtual void Run(double execution_time, int nthread);
130 virtual void Run(double execution_time, int nthread);
H A DEvolution.cpp53 void SequentialEvolution::Run(double execution_time, int nthread) { in Run() argument
71 if (m_serial_time > execution_time) { in Run()
95 void ParallelEvolution::Run(double execution_time, int nthread) { in Run() argument
121 if (m_parallel_time > execution_time) { in Run()
H A DREADME.md20 game_of_life [M[:N] -t execution_time] [-h]
24 * `execution_time` - time (in sec) for execution `game_of_life` iterations.