Displaying 7 results from an estimated 7 matches for "num_cpu".
Did you mean:
num_cpus
2009 Apr 23
11
Puppet on busybox, Bob Hope or No Hope?
When I say busybox it''s actually VMware ESX server which seems to use
busybox (which I guess is the case a number of other software appliances) .
Reason for wanting to install puppet is to run the cli tools to create
nightly vmware snapshots.
I''m happy to give it a go (and add the docs to the wiki) but I''m not too
sure at this stage how big a task this might be and what,
2010 Apr 13
4
[LLVMdev] darwin dragon-egg build issues
...-print-path`/usr/bin/ld
ulimit -s `ulimit -s`
mkdir ../llvm_objdir
cd ../llvm_objdir
# ../llvm-%v/configure %c --enable-optimized --enable-assertions --enable-pic --enable-targets=host-only
../llvm-2.8/configure %c --enable-optimized --enable-assertions --enable-pic --enable-targets=host-only
num_cpu=$(echo `sysctl -n hw.ncpu`)
make -j $num_cpu
<<
InstallScript: <<
#!/bin/sh -ev
export LD=`xcode-select -print-path`/usr/bin/ld
cd ../llvm_objdir
make install DESTDIR=%d
mkdir -p %i/bin
ln -s %p/lib/llvm/bin/bugpoint %i/bin/bugpoint
ln -s %p/lib/llvm/bin/gccas %i/bin/gccas
ln...
2010 Apr 11
0
[LLVMdev] darwin dragon-egg build issues
On 04/10/2010 08:01 PM, Jack Howarth wrote:
>
> bash-3.2$ GCC=/sw/bin/gcc-4 CC=gcc-4 CXX=g++-4 CFLAGS=-I/sw/include CXXFLAGS=-I/sw/include LLVM_CONFIG=/sw/lib/llvm/bin/llvm-config make
> g++-4 -c -I/sw/lib/llvm/include -D_DEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -MD -MP -DIN_GCC -DREVISION=\"100954M\"
2022 Oct 16
0
[syzbot] net boot error: WARNING in cpumask_next_wrap
...rtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -2295,13 +2295,20 @@ static void virtnet_set_affinity(struct virtnet_info *vi)
0;
cpu = cpumask_first(cpu_online_mask);
+ printk(KERN_ERR "%s +%d : %s cpu %d num %d stride %d stragglers %d\n",
+ __FILE__, __LINE__, __func__, cpu, num_cpu, stride, stragglers);
+
for (i = 0; i < vi->curr_queue_pairs; i++) {
group_size = stride + (i < stragglers ? 1 : 0);
+ printk(KERN_ERR "%s +%d : %s vq %d group_size %d",
+ __FILE__, __LINE__, __func__, i, group_size);
for (j = 0; j < group_size; j++) {
c...
2010 Oct 02
2
[LLVMdev] tblgen(75451) malloc: *** error for object 0x7fff5fbfcbd0: pointer being reallocated was not allocated
...le.common
config.status: executing setup commands
config.status: executing Makefile commands
config.status: executing lib/Makefile commands
config.status: executing lib/sample/Makefile commands
config.status: executing tools/Makefile commands
config.status: executing tools/sample/Makefile commands
num_cpu=$(echo `sysctl -n hw.ncpu`)
echo `sysctl -n hw.ncpu`
sysctl -n hw.ncpu
make -j $num_cpu
llvm[1]: Compiling Alarm.cpp for Release+Asserts build
llvm[1]: Compiling Atomic.cpp for Release+Asserts build
llvm[1]: Compiling Disassembler.cpp for Release+Asserts build
llvm[1]: Compiling DynamicLibrary.cpp...
2010 Oct 04
0
[LLVMdev] tblgen(75451) malloc: *** error for object 0x7fff5fbfcbd0: pointer being reallocated was not allocated
...uting setup commands
> config.status: executing Makefile commands
> config.status: executing lib/Makefile commands
> config.status: executing lib/sample/Makefile commands
> config.status: executing tools/Makefile commands
> config.status: executing tools/sample/Makefile commands
> num_cpu=$(echo `sysctl -n hw.ncpu`)
> echo `sysctl -n hw.ncpu`
> sysctl -n hw.ncpu
> make -j $num_cpu
> llvm[1]: Compiling Alarm.cpp for Release+Asserts build
> llvm[1]: Compiling Atomic.cpp for Release+Asserts build
> llvm[1]: Compiling Disassembler.cpp for Release+Asserts build
> llv...
2010 Apr 11
7
[LLVMdev] darwin dragon-egg build issues
On Sat, Apr 10, 2010 at 01:52:18PM +0200, Duncan Sands wrote:
> Hi Jack,
>
> > Is anyone building dragon-egg on darwin?
>
> Anton built it once. There were some problems with dynamic libraries: gcc's
> plugin support requires the use of dynamic libraries, and the configure logic
> it uses thinks that darwin does not support dynamic libraries! So it is
>