Displaying 4 results from an estimated 4 matches for "056781".
Did you mean:
56781
2004 Sep 30
2
dev.print and win.print
Dear R Users:
Was there an answer to the question about
using dev.print and win.print to print as horizontal = FALSE,
please?
I was working on it and I didn't find the solution.
R 1.9.1 Windows
Thanks,
Erin Hodgess
mailto: hodgess at gator.uhd.edu
2008 Jan 05
0
[LLVMdev] Calling functions across modules. And those pesky vectors!
Danny wrote:
I made a
> simple function which was just supposed to multiply two 3 component
> float vectors and return the result:
"Vectors must have a power of two length (1, 2, 4, 8, 16 ...)."
- http://llvm.org/docs/LangRef.html#t_vector
> //Snip on:
> VectorType *vType = VectorType::get(Type::FloatTy, 3);
Nick
2008 Jan 03
2
[LLVMdev] Tailcall optimization in jit stopped working
tailcall optimization stop working in jit (lli) in revision 45527. i
guess this is because the jit is tailjmping to the wrong function
address. the following change would reenable tailcallopt in jit. But
i am pretty sure that this is not the correct fix (since i don't
really understand what is going on :). maybe evan can comment on this?
regards arnold
Index:
2008 Jan 04
7
[LLVMdev] Calling functions across modules. And those pesky vectors!
Before I get started with more questions, thanks for the prompt reply on
my last set question, that was much appreciated.
First, I found references to lazy inling and optimizations for calling
functions across modules, but I can't figure out how to do that. If I
just take a Function* that I got out of one module and call it from the
other, it doesn't work. What's the general