summaryrefslogtreecommitdiffstats
path: root/debian/calc-max-parallel.sh
blob: d55d966c748bf4687c2cda7e9dc30188f5db440e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/sh
#
# Simple tool to calculate max parallel jobs based on
# memory of builder.
#
# MDCache.cc generally runs out of RAM in 4G of memory
# with parallel=4

if [ ""$(dpkg-architecture -qDEB_HOST_ARCH_BITS) = 32 ] ; then
	echo "--max-parallel=1"
	exit 0
fi

total_ram=$(grep MemTotal /proc/meminfo | awk '{ print $2 }')

sixtyfour_g=$((64*1024*1024))
fourtyheight_g=$((48*1024*1024))
thirtytwo_g=$((32*1024*1024))
sixteen_g=$((16*1024*1024))
eight_g=$((8*1024*1024))
four_g=$((4*1024*1024))

if [ ${total_ram} -le ${four_g} ]; then
    echo "--max-parallel=1"
elif [ ${total_ram} -le ${eight_g} ]; then
    echo "--max-parallel=2"
elif [ ${total_ram} -le ${sixteen_g} ]; then
    echo "--max-parallel=3"
elif [ ${total_ram} -le ${thirtytwo_g} ]; then
    echo "--max-parallel=8"
elif [ ${total_ram} -le ${fourtyheight_g} ]; then
    echo "--max-parallel=14"
elif [ ${total_ram} -le ${sixtyfour_g} ]; then
    echo "--max-parallel=18"
else
    echo "--max-parallel=24"
fi