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):  3482  3493  3495  3495  3495  3495  3494
2T CPU Freq (MHz): 197% 3472   199% 3491  

RAM size:    4095 MB,  # CPU hardware threads:   4 / 32 : F / 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:      17358   284   5937  16887  |     169360   399   3623  14449
23:      15736   267   6008  16034  |     167708   399   3638  14512
24:      17391   302   6184  18699  |     165040   397   3648  14484
25:      18659   328   6486  21305  |     163586   399   3648  14559
----------------------------------  | ------------------------------
Avr:     17286   296   6154  18231  |     166424   398   3639  14501
Tot:             347   4896  16366

real    0m39.774s
user    1m38.673s
sys     0m0.647s
Test completed, rc=0