t-openmp.py released

This commit is contained in:
Caner Candan 2010-11-27 23:07:11 +01:00
commit 20fd5b206f
2 changed files with 46 additions and 29 deletions

View file

@ -64,9 +64,9 @@ int main(int ac, char** av)
eoUniformGenerator< double > gen(-5, 5);
std::ostringstream params;
params << "-p" << popMin << "-pS" << popStep << "-P" << popMax
<< "-d" << dimMin << "-dS" << dimStep << "-D" << dimMax
<< "-r" << nRun << "-s" << seedParam;
params << "_p" << popMin << "_pS" << popStep << "_P" << popMax
<< "_d" << dimMin << "_dS" << dimStep << "_D" << dimMax
<< "_r" << nRun << "_s" << seedParam;
std::ofstream speedupFile( std::string( fileNamesPrefix + speedupFileName + params.str() ).c_str() );
std::ofstream efficiencyFile( std::string( fileNamesPrefix + efficiencyFileName + params.str() ).c_str() );
std::ofstream dynamicityFile( std::string( fileNamesPrefix + dynamicityFileName + params.str() ).c_str() );