Benchmark / test report

Container name: Singularity.Wine-6.0.4.localimage.sif

test script

#!/bin/bash
#SBATCH -N1
#SBATCH --ntasks-per-node=4
#SBATCH -J plcr-wine-cpu-test

PLCR=${PLCR:-/net/pr2/projects/plgrid/plggsoftware/containers}
CONT=${1:-Singularity.Wine-6.0.4.localimage.sif}

echo "PLCR test: $SLURM_JOB_NAME"
echo "PLCR jobid: $SLURM_JOBID"
echo "PLCR path: $PLCR"

echo "Test performed on: "`date`
echo "Testing container: $CONT"
SHA=`dd bs=1M if=$PLCR/images/$CONT 2>/dev/null | sha256sum | cut -d' ' -f1`
echo "Container checksum: $SHA"

cd $TMPDIR

wget -q https://www.7-zip.org/a/7z2107-extra.7z
ml p7zip
7z x 7z2107-extra.7z
module purge

export GMX_MAXBACKUP=-1

time singularity -s run -B $PWD:/host_pwd --pwd /host_pwd $PLCR/images/$CONT wine 7za.exe b
RC=$?

echo  "Test completed, rc=$RC"
rm -rf $TMPDIR

test results

PLCR test: plcr-wine-cpu-test
PLCR jobid: 377650
PLCR path: /net/pr2/projects/plgrid/plggsoftware/containers
Test performed on: Mon Apr 25 11:19:56 CEST 2022
Testing container: Singularity.Wine-6.0.4.localimage.sif
Container checksum: 3a0f2d85c5b5ebb98707cf99719da56ad49bc5ca804abfba5adf622013f463ff
 gcccore/11.2.0 loaded.
 p7zip/17.04-gcccore-11.2.0 loaded.

7-Zip [64] 17.04 : Copyright (c) 1999-2021 Igor Pavlov : 2017-08-28
p7zip Version 17.04 (locale=en_US.UTF-8,Utf16=on,HugeFiles=on,64 bits,48 CPUs x64)

Scanning the drive for archives:
1 file, 994295 bytes (971 KiB)

Extracting archive: 7z2107-extra.7z
--
Path = 7z2107-extra.7z
Type = 7z
Physical Size = 994295
Headers Size = 535
Method = LZMA:22 BCJ2
Solid = +
Blocks = 2

Everything is Ok

Files: 18
Size:       3841992
Compressed: 994295
 p7zip/17.04-gcccore-11.2.0 unloaded.
 gcccore/11.2.0 unloaded.

7-Zip (a) 21.07 (x86) : Copyright (c) 1999-2021 Igor Pavlov : 2021-12-26

0024:fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_PERFORMANCE_INFORMATION
Windows 6.1 7601 SP:1.0
x86 6.5507 act:FFFFFFFF cpus:48 4G - x64 6.5507 act:FFFFFFFF cpus:48 4G f:1F000A27F4C
Intel(R) Xeon(R) Platinum 8268 CPU @ 2.90GHz (50657) 

1T CPU Freq (MHz):  3478  3490  3490  3490  3493  3493  3493
2T CPU Freq (MHz): 200% 3471   199% 3488  

RAM size:    4095 MB,  # CPU hardware threads:   4 / 32 : F000000 / FFFFFFFF
RAM usage:    889 MB,  # Benchmark threads:      4

                       Compressing  |                  Decompressing
Dict     Speed Usage    R/U Rating  |      Speed Usage    R/U Rating
         KiB/s     %   MIPS   MIPS  |      KiB/s     %   MIPS   MIPS

22:      16974   276   5981  16513  |     169305   399   3623  14444
23:      16562   281   6008  16875  |     167763   399   3640  14516
24:      19073   332   6184  20508  |     165277   398   3648  14504
25:      18582   327   6497  21217  |     163631   399   3650  14563
----------------------------------  | ------------------------------
Avr:     17798   304   6167  18778  |     166494   399   3640  14507
Tot:             351   4904  16643

real    0m38.669s
user    1m38.620s
sys 0m0.613s
Test completed, rc=0