search for: tofallis

Displaying 6 results from an estimated 6 matches for "tofallis".

Did you mean: tofall
2009 Aug 22
0
[LLVMdev] Profiling in LLVM Patch Followup 1
Hi, here's a patch for a minor issue I stumbled upon today, which may prevent some profiling info files from being loaded (on win32 -- I doubt that other systems are affected). Martin -------------- next part -------------- A non-text attachment was scrubbed... Name: llvm-r79697-profileinfoloader.patch Type: application/octet-stream Size: 616 bytes Desc: not available URL:
2011 Jul 27
3
Ordinary Least Products regression in R
Dear all, Does any one know if any R package or function can do Ordinary Least Products regression? Many thanks! Bill
2009 Jan 08
0
[LLVMdev] LLVMdev Digest, Vol 55, Issue 16
1. Re: LLVM optmization (Bill Wendling) Hi, The IR is not wrong. I said that the assembler generated by MSVC is quicker. We can see that the for loop, in the TESTE function, is done without jump's in the MSVC and with jumps in LLVM. I think thats the point. If we don't use threads, the result is the same. My test were done with one billion interactions in the for loop. The MSVC
2009 Aug 18
3
[LLVMdev] Profiling in LLVM Patch Followup 1
Hi! Daniel Dunbar wrote: > Applied as r78477. > > I do have a few comments on the patch, below, but I'll wait to see > where things are going before acting on them. :) > > -- > >> Index: include/llvm/Analysis/ProfileInfo.h >> =================================================================== > >> + // MissingValue - The value that is returned
2009 Jan 07
0
[LLVMdev] opt pass plugins on Windows?
Hello, this is just a quick follow-up to my previous email. I now tried statically linking the 'hello' pass to opt which does seem to work. But I'm not sure if this is reliable or if I'm bound to run into problems later, so any comments on this issue would be appreciated. Martin Wednesday, January 7, 2009, 2:54:52 AM, you wrote: MT> Hello, MT> I'm just starting out
2009 Jan 07
2
[LLVMdev] opt pass plugins on Windows?
Hello, I'm just starting out with LLVM, currently using Visual Studio on Windows. Now I'd like to write a custom pass that can be loaded dynamically as demonstrated in the 'hello world' tutorial. So far my DLL loads OK but the actual pass registration does not seem to work. My question then is (as I could not find any information on the subject): is this even possible on win32 or