search for: coauthor

Displaying 20 results from an estimated 92 matches for "coauthor".

2004 Aug 21
1
Cookbook, was Re: [R] R on gentoo amd64, etc.
<ivo_welch-rstat8783@mailblocks.com> writes: > PS: I am still looking for an R wizard who would be interested in > coauthoring an "R cookbook" ala the "perl cookbook" with me... I think I've said it before, but I think such a book ought to coauthor Paul Johnson, whether or not he does any work beyond the Rtips web pages. A few of the tips may need a bit of critical review (as I remember it -- ha...
2005 Jun 06
3
write.dta limits
Hope everyone id doing great .. Just need some clarification over the limit of write.dta. I have some coauthors that use stata and I need to send them my data in .dta format. the data.frame is 41706x229 and I get the following Error in write.dta(Panel, file = "STATADATA/Panel.dta", version = 7) : a binary write error occured Once I subset the data everything works out fine. my question is what...
2013 Feb 06
3
[LLVMdev] LLVM Coverage GCDA Flush API
...of missed it but I was >> looking for `__gcov_flush` and I did not find the equivalent in llvm at the >> moment. >> > > __gcov_flush is added by the GCOVProfiling.cpp pass by > GCOVProfiler::insertFlush. > > -- > Joshua Cranmer > News submodule owner > DXR coauthor > > > ______________________________**_________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/**mailman/listinfo/llvmdev<http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev> > -------------- next p...
2006 May 10
3
new package error message
My coauthor made a new R package GeneLogit (100% R code) which installs ok on R 2.3 on Windows. But when I type library(GeneLogit) it gave the error message Error in library(GeneLogit) : 'GeneLogit' is not a valid package -- installed < 2.0.0? It runs on R 1.9.0 just fine. It seems that others h...
2013 Feb 06
0
[LLVMdev] LLVM Coverage GCDA Flush API
...for `__gcov_flush` and I did not find the equivalent in llvm at the >>> moment. >>> >> >> __gcov_flush is added by the GCOVProfiling.cpp pass by >> GCOVProfiler::insertFlush. >> >> -- >> Joshua Cranmer >> News submodule owner >> DXR coauthor >> >> >> ______________________________**_________________ >> LLVM Developers mailing list >> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu >> http://lists.cs.uiuc.edu/**mailman/listinfo/llvmdev<http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev> &g...
2012 Aug 21
2
[LLVMdev] issues registering passes in osx 10.8
...r plugins. If you edit this line of Makefile.rules: > ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755 > > so that it looks like this: > ProgInstall = $(INSTALL) -m 0755 > > it should work after installing. > -- > Joshua Cranmer > News submodule owner > DXR coauthor > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
2011 Oct 11
2
SLOW split() function
dear R experts: ?apologies for all my speed and memory questions. ?I have a bet with my coauthors that I can make R reasonably efficient through R-appropriate programming techniques. this is not just for kicks, but for work. for benchmarking, my [3 year old] Mac Pro has 2.8GHz Xeons, 16GB of RAM, and R 2.13.1. right now, it seems that 'split()' is why I am losing my bet. ?(split is...
2012 May 04
2
Off-Topic: Crime Statistics Don't Pay
...ly misleading. ?If you look at crime rates from year to year and you see a change, there?s a fundamental ambiguity in whether that change is caused by a real change in crime, a change in reporting or some of both,? says criminologist Robert Brame of the University of North Carolina at Charlotte, a coauthor of the new study. ?Our position is we should own that. There?s ambiguity here and we should learn to deal with it.? --- Aside from, "Well, duhhh...," my reaction was: what other misleading "data" are being thrown around in the public domain whose uncertainty has been blithely...
2012 Apr 09
1
[LLVMdev] Loop strip-mining pass in LLVM
Does anyone know of any loop strip-mining passes implemented in LLVM? -- Joshua Cranmer News submodule owner DXR coauthor
2013 Feb 06
0
[LLVMdev] LLVM Coverage GCDA Flush API
...> If there is another way of doing this, I might of missed it but I was > looking for `__gcov_flush` and I did not find the equivalent in llvm > at the moment. __gcov_flush is added by the GCOVProfiling.cpp pass by GCOVProfiler::insertFlush. -- Joshua Cranmer News submodule owner DXR coauthor
2012 Aug 21
0
[LLVMdev] issues registering passes in osx 10.8
...X, using the installed tool makes it unusable for plugins. If you edit this line of Makefile.rules: ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755 so that it looks like this: ProgInstall = $(INSTALL) -m 0755 it should work after installing. -- Joshua Cranmer News submodule owner DXR coauthor -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120821/ee8c8fc6/attachment.html>
2010 Aug 17
2
HMisc/rms package questions
...of revising the plsmo procedure to use ggplot? I'd like to capture several such graphs into a faceted arrangement. 2) The 2nd issue is more about communications than software. I have developed a model using lrm() and am using plot to display the model. All that is fairly easy. However, my coauthors are used to traditional methods, where baseline categories are rather broadly defined (e.g. males, age 25-40, height 170-180cm, BP 120-140, etc) and results are reported as odds-ratios, not as probabilities of outcomes. Therefore, and understandably, they are finding the graphs which arise fr...
2013 Feb 06
2
[LLVMdev] LLVM Coverage GCDA Flush API
The way `-ftest-coverage -fprofile-arcs` works at the moment it only flushes via `atexit()`. This patch allows you to flush the coverage at any point by calling `__llvm_gcov_flush` the same way `__gcov_flush` works for gcc. If there is another way of doing this, I might of missed it but I was looking for `__gcov_flush` and I did not find the equivalent in llvm at the moment. -- John Harrison
2013 Jan 03
0
[LLVMdev] building a jump table in LLVM IR
...but I would appreciate any pointers you > can give me. You can use a jump table using indirectbr, although note that this instruction requires you to label all the possible target blocks and that the targets can only be blocks in the same function. -- Joshua Cranmer News submodule owner DXR coauthor
2012 Oct 24
0
[LLVMdev] How to Find Instruction Encoding for a MachineInstr
...jmp instruction: the choice between near and long jumps (and hence 2 bytes or 5 bytes on x86-64) is not made until the actual conversion to MCInst and after applying all of the fixups--which only happens deep within the bowels of the AsmPrinter pass. -- Joshua Cranmer News submodule owner DXR coauthor
2012 Jun 16
0
[LLVMdev] Windows development and "virus" in LLVM test suite
...n list. A better rule of thumb I would say is to exclude the entire source and build directories from antivirus. On-access file scan hurts build times a fair amount, and I really doubt that any of your source code is going to have viruses in them :-P -- Joshua Cranmer News submodule owner DXR coauthor -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120615/028634ba/attachment.html>
2012 Apr 25
0
[LLVMdev] [PATCH][RFC] NVPTX Backend
...o I see any support for the llvm exp2/log2 intrinsics... am I missing something, or are these operations (still) unsupported in the NVPTX backend? On the plus side, it's nice to see that at least two or three of the small fixes are already fixed. -- Joshua Cranmer News submodule owner DXR coauthor -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120424/d31f0d9e/attachment.html>
2013 Feb 07
1
[LLVMdev] LLVM Coverage GCDA Flush API
...er way of doing this, I might of missed it but I was looking for `__gcov_flush` and I did not find the equivalent in llvm at the moment. > > __gcov_flush is added by the GCOVProfiling.cpp pass by GCOVProfiler::insertFlush. > > -- > Joshua Cranmer > News submodule owner > DXR coauthor > > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > > > _______________________________________________ > LLVM Developers...
2013 Nov 23
0
[LLVMdev] "Mapping High-Level Constructs to LLVM IR"
...this is paid for by a relatively expensive throw implementation. Details of such an implementation can be found in the Itanium ABI <http://mentorembedded.github.io/cxx-abi/abi-eh.html> (which, despite its name, is the ABI used by gcc and clang). -- Joshua Cranmer News submodule owner DXR coauthor
2012 Aug 21
2
[LLVMdev] issues registering passes in osx 10.8
Hi everyone, This is Ashwin. I have a mac running osx 10.8. I am new to LLVM and have the version 3.1 installed. I am trying to get some LLVM transform passes running on my machine. After having compiled the LLVM source without making changes to the configuration files I am able to run the LLVM gcc and clang. But I am having some trouble using the passes. I tried loading the hello pass inside the