Skip to content

Commit

Permalink
New results' modification
Browse files Browse the repository at this point in the history
  • Loading branch information
assa77 committed Dec 11, 2016
1 parent adb6c5e commit 34e4caa
Show file tree
Hide file tree
Showing 3 changed files with 305 additions and 306 deletions.
11 changes: 5 additions & 6 deletions results/2csv.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,24 @@ setlocal disabledelayedexpansion
echo ***************************************************************************** >&2
echo * DLS9 enumerator - Optimized MPI version of the DLS enumeration application >&2
echo * >&2
echo * 2csv.bat : Convert benchmarking data to CSV >&2
echo * 2csv.bat : Convert benchmarking data into the CSV format >&2
echo * >&2
echo ***************************************************************************** >&2
echo * Copyright (c) 2016 by Alexander M. Albertian, ^<assa@4ip.ru^>. >&2
echo * >&2
echo * Usage: >&2
echo * 2csv.bat [^<directory-with-log-files^>] >&2
echo * 2csv.bat [^<directory-with-log-files^>] [^<separator-character^>] >&2
echo ***************************************************************************** >&2
echo. >&2

set "SEPARATOR=;"
set "SEPARATOR=%~2"
if "%SEPARATOR%"=="" set "SEPARATOR=,"
echo "Number of processes"%SEPARATOR%"Squares per second"%SEPARATOR%"Time per square (ns)"

set "DATA=%~dpnx1"
if "%DATA%"=="" set "DATA=%CD%"

cd /d "%DATA%"

echo "Number of processes"%SEPARATOR%"Squares per second"%SEPARATOR%"Time per square (ns)"

for /f "tokens=* delims=" %%i in ( 'dir /b /odsn *.log' ) do (
call :rename "%%~i"
)
Expand Down
38 changes: 19 additions & 19 deletions results/Xeon_E5-1650.csv
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
"Number of processes";"Squares per second";"Time per square (ns)"
2;7330258;136
3;14627493;68
4;21933023;45
5;29035801;34
6;34866874;28
7;34369876;29
8;37196295;26
9;37372697;26
10;41040580;24
11;42301304;23
12;44877848;22
13;43462057;23
14;44661262;22
15;43791015;22
16;45438007;22
17;44605034;22
18;44365446;22
19;44882921;22
"Number of processes","Squares per second","Time per square (ns)"
2,7330258,136
3,14627493,68
4,21933023,45
5,29035801,34
6,34866874,28
7,34369876,29
8,37196295,26
9,37372697,26
10,41040580,24
11,42301304,23
12,44877848,22
13,43462057,23
14,44661262,22
15,43791015,22
16,45438007,22
17,44605034,22
18,44365446,22
19,44882921,22
Loading

0 comments on commit 34e4caa

Please sign in to comment.