Displaying 11 results from an estimated 11 matches for "beaut".
Did you mean:
beast
2008 Feb 11
4
Conditional rows
Hi,
Given a simple example, test <- matrix(c(0.1, 0.2, 0.1, 0.2, 0.1, 0.1, 0.3,
0.1, 0.1), 3, 3)
How to generate row indexes for which their corresponding row values are
less than or equal to 0.2 ? For this example, row 2 and 3 are the correct
ones.
Thanks
[[alternative HTML version deleted]]
2012 Jun 09
3
More simple implementation is slow.
...rame cp.table) can be produced with the following
commands:
> n<-132
> cpt<-data.frame(x=runif(n, min=0, max=100), y=runif(n, min=0, max=100),
> la=runif(n, min=0, max=360), phi=runif(n, min=-90, max=90))
Any random data will do.
The second variant seems to me much more readable and beauteful.
However, the first ugly variant runs much faster.
Why??
Here are the profiles:
--
View this message in context: http://r.789695.n4.nabble.com/More-simple-implementation-is-slow-tp4632872.html
Sent from the R help mailing list archive at Nabble.com.
2010 Apr 19
0
[LLVMdev] Performing my own pass with a single command line?
...9;s Makefiles automate the task for you.
3) You can add your passes to libLTO
(http://llvm.org/docs/GoldPlugin.html and
http://llvm.org/docs/LinkTimeOptimization.html). This will allow your
passes to be run at link-time by the linker. This method takes some
time to set up, but it should work beautfully once set up. Furthermore,
it can do whole-program analysis and optimization (the linker knows when
it is creating a final executable vs. an object file and can defer whole
program analysis and transformation until the final link stage).
-- John T.
Zheng Wang wrote:
> Hello,
>
>...
2010 Apr 21
1
[LLVMdev] Performing my own pass with a single command line?
...te the task for you.
>
> 3) You can add your passes to libLTO (http://llvm.org/docs/GoldPlugin.html
> and http://llvm.org/docs/LinkTimeOptimization.html). This will allow your
> passes to be run at link-time by the linker. This method takes some time to
> set up, but it should work beautfully once set up. Furthermore, it can do
> whole-program analysis and optimization (the linker knows when it is
> creating a final executable vs. an object file and can defer whole program
> analysis and transformation until the final link stage).
>
> -- John T.
>
>
> Zheng...
2010 Apr 19
2
[LLVMdev] Performing my own pass with a single command line?
Hello,
As far as I know, the LLVM pass manager only perform at the llvm
bytecode level.
This means for each program, I have to convert it to a LLVM bytecode by:
llvm-gcc -c -emit-llvm test.c
then, I can issue the llvm pass manager to invoke my own pass and
produce an output as LLVM bytecode, such as:
opt -my-pass < test.o > test.new.o
After this point, I need to convert it to assembly
2007 Sep 10
3
[Bug 1358] New: closefromtest fails, differently, sometimes
http://bugzilla.mindrot.org/show_bug.cgi?id=1358
Summary: closefromtest fails, differently, sometimes
Product: Portable OpenSSH
Version: 4.7p1
Platform: Sparc
OS/Version: Solaris
Status: NEW
Severity: normal
Priority: P2
Component: Miscellaneous
AssignedTo: bitbucket at mindrot.org
2007 Jul 16
2
CID on Polycom Phones
Hi All,
I have a site using Polycom 501 phones and for some reason the caller
ID of the phone number is coming up as sip:<number>@<ip of server>
Does anyone know why? It seems to be a Polycom thing as a Linksys phone
displays the CID number as just the number.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Feb 24
18
I need more bling!
Hello everyone,
I just showed a friend a prototype of a site offering a service I''m
trying to sell (sorry, not on the Internet yet - he saw it at my
house).
His comment: "Looks like it does everything, but also looks pretty
ugly. You''re not going to wow anybody with that". Sitting back and
thinking about it, he''s dead right - it needs some bling to make it
2007 Sep 26
13
Nice chassis for ZFS server
Hi,
I just came across this box [0] (McKay Creek). Seems to be exceptional
building material for ZFS based NAS/iSCSI unit. I especially liked the
two extra system disks hidden inside the box !
Any one have an experience with these ?
[0] http://www.intel.com/design/servers/storage/ssr212mc2
--
Regards,
Cyril
2007 Apr 25
2
[LLVMdev] Work in progress patch to speed up andersen's implementation
...means you will build many short symbols and a
few long symbols. At the time you are reading a symbol you don't know
how long it is. One traditional method is to read a symbol into a
buffer, realloc()ating the buffer every time you try to read a symbol
that is longer than the buffer. This is beaut, but you still will
want to copy the symbol from the buffer to a more permanent
symbol-table entry say about half the time.
With obstacks, you can work differently. Use one obstack for all symbol
names. As you read a symbol, grow the name in the obstack gradually.
When the name is complete, fina...
2003 Dec 01
0
No subject
...m Potter wrote:
> Ray writes:
> > Does anyone know of (or have) something like a howto for winbind? Maybe
> > even a simple set of instructions?
> There should be some information in the manual page for winbindd
> on how to set it up. A proper howto is probably needed though.
Beaut, thanks.
> > I am running Samba 2.2.0, but I think I'm supposed to be
> > running HEAD or TNG, otherwise winbind won't work at all. Can
> > anyone confirm?
> You should be able to run Samba 2.2.0 smbd/nmbd and the HEAD
> winbindd with no problems.
Dumb question tim...