2 #------------------------------------------------------------------------------
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
6 # \\ / A nd | Copyright held by original author
8 #------------------------------------------------------------------------------
10 # This file is part of OpenFOAM.
12 # OpenFOAM is free software; you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by the
14 # Free Software Foundation; either version 3 of the License, or (at your
15 # option) any later version.
17 # OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
18 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 # You should have received a copy of the GNU General Public License
23 # along with OpenFOAM; if not, write to the Free Software Foundation,
24 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30 # return system information about running host/system
33 # Martin Beaudoin, Hydro-Quebec, (2013)
35 #------------------------------------------------------------------------------
38 while [ "$#" -ge 1 ]; do echo "$1"; shift; done
41 usage: ${0##*/} [OPTION]
43 -nbrCores return the number of cores present
44 -osInfo [default] return operating system information
46 * return system information about the running host/system.
52 # Basic operating system information
53 getOperatingSystemInfo
()
61 # Minimal number of cores. Can be as low as 1 on virtual machines
64 # First choice above all: using lstopo from the hwloc package
65 if command -v lstopo
>/dev
/null
; then
66 nbrCores
=`lstopo --of console | grep -c Core`
68 # Using some architecture specific heuristics
71 # Warning: this will be wrong if Hyperthreading is enable
72 nbrCores
=`grep -c processor /proc/cpuinfo`
75 nbrCores
=`sysctl -n hw.physicalcpu`
82 # If no options present, return basic information on operating system
85 getOperatingSystemInfo
97 getOperatingSystemInfo
105 usage
"unknown option/argument: '$*'"
111 #------------------------------------------------------------------------------