search for: separatelly

Displaying 4 results from an estimated 4 matches for "separatelly".

Did you mean: separately
2012 Oct 14
0
multivariate lognormal distribution simulation in compositions
...e structure, and they are as follow :   median <-c(0.071,0.003,0.78,0.472,0.203) SD <-c(0.06,0.011,1.023,1.082,0.187)   next I did a quick experiment that I hope will better explain what I am looking for, using the example of the second parameter from the multivariate structure, but runing it separatelly. The known mean, median and SD of this second parameter is:   mean <-0.006 median <-0.003 sd <-<-0.011   next I generate assuming a normal distribution: summary(rnorm(5000,mean,sd))  Min. 1st Qu. Median Mean 3rd Qu. Max. -0.035160 -0.001519 0.005863 0.005856 0.01337...
2019 Sep 18
2
How to debug passes
...several functions, so the module pass should display > something (I placed a message at the verry beginning of the runOnModule > funtion of the pass). I am compiling all the code once with ninja on > Linux and I have seen that the hello pass is compiled as well. I have > not compiled it separatelly. > > Do you have any ideas why is this? > > Thank you, > Iulia > > > > Trimis de pe smartphone-ul meu Samsung Galaxy. > > -------- Mesaj original -------- > De la: Andrzej Warzynski <Andrzej.Warzynski at arm.com> > Date: 17.09.2019 10:44 (GMT+02:00) >...
2005 Dec 14
2
format(1M) quits if there are pools on disks and no zfs module
...mported). I did unload zfs modules then moved zfs driver and run format. Now format quits just because there''s no zfs module (and not even one zfs pool is imported). It shouldn''t behave that way. (problem with ZFS itself - that it couldn''t import that pool is issued separatelly on ZFS portal with id: SDR-0149) bash-3.00# modunload -i 0 bash-3.00# modunload -i 0 bash-3.00# mv /kernel/drv/sparcv9/zfs /kernel/drv/sparcv9/zfs.orig bash-3.00# format -em Searching for disks...done AVAILABLE DISK SELECTIONS: 0. c1t0d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424&gt...
2019 Sep 16
2
How to debug passes
Hi, Could you please confirm the following steps for debugging a pass? 1. copy your pass into llvm/lib/Transforms/Hello/Hello.cpp 2. name you pass Hello 3. insert debug messages like:     errs() << "Vis­iting func­tion " << F.get­Name(); 4. get LLVM bitcode:    clang -O3 -emit-llvm hello.c -c -o hello.bc5. disassemble the bitcode:     llvm-dis hel­lo.bc 6. run the pass on