Searched refs:cpu_cores (Results 1 – 7 of 7) sorted by relevance
90 cpu_cores=`grep "cpu cores" /proc/cpuinfo | uniq | cut -f2 -d':'`91 [ $siblings -gt $cpu_cores ]; echo $?134 cpu_cores=`grep "cpu cores" /proc/cpuinfo | uniq | cut -f2 -d':'`135 if [ $siblings -eq $cpu_cores ]; then136 [ $cpu_cores -gt 1 ]; echo $?138 : $(( num_of_cpus = siblings / cpu_cores ))145 cpu_cores=`grep "cpu cores" /proc/cpuinfo | uniq \147 if [ $siblings -eq $cpu_cores ]; then148 [ $cpu_cores -eq 2 ]; echo $?150 : $(( num_of_cpus = siblings / cpu_cores ))
63 cpu_cores=`cat /proc/cpuinfo | grep "cpu cores" | cut -f 2 -d ':'\66 if [ $cpu_cores -eq 1 ];then68 elif [ $cpu_cores -ge 2 ];then
27 self.cpu_cores = 869 if self.cpu_cores != utils.count_cpus():71 self.cpu_cores, utils.count_cpus())
35 def cpu_cores method in WorkerServiceImpl49 q.push(gtss.new(stats: bms.mark(req.mark.reset), cores: cpu_cores))77 Grpc::Testing::CoreResponse.new(cores: cpu_cores)
107 def cpu_cores method in ProxyWorkerServiceImpl132 Grpc::Testing::CoreResponse.new(cores: cpu_cores)
67 cpu_cores=`cat /proc/cpuinfo | grep "cpu cores" | cut -f 2 -d ':'\70 if [ $cpu_cores -ge 1 ];then
89 cpu_cores = line.split(":")91 if int( siblings[1] ) / int( cpu_cores[1] )> 1:110 cpu_cores = line.split(":")113 if int( siblings[1] ) == int( cpu_cores[1] ):114 if int( cpu_cores[1] ) > 1:119 num_of_cpus = int(siblings[1]) / int(cpu_cores[1])141 cpu_cores = line.split(":")143 return( int( siblings[1] ) / int( cpu_cores[1] ) )