search for: uncompiled

Displaying 20 results from an estimated 49 matches for "uncompiled".

2005 Apr 13
2
easy question: obtaining rw1080.exe
Dear All, Can anyone please tell me where I can obtain uncompiled binary instalation files for R version 1.8. (i.e. rw1080.exe)? I can only find the uncompiled source code on CRAN today. Thank you, Mary Wisz msw@dmu.dk [[alternative HTML version deleted]]
2005 Jan 25
1
Regex Crashing R (perl = TRUE) (PR#7564)
...yed crash, such that R crashes after you try to access the "string" object again, or you might get the odd error: Error in for (i in 1:5) { : bad for loop sequence If you set perl = FALSE, then the script runs fine (albeit slowly). As a side note, is there a good way of incorporating an uncompiled perl script into an R package to be invoked from a system call? Putting it in the /src directory seems like the obvious place, but I can't convince R to copy over the script uncompiled upon installation. Thanks, Robert > version _ platform i686-pc-linux-gnu arch i686 os...
2015 Feb 12
2
Samba 4.2.0rc4 fails to start up
...er? > > > > > > Crap... Probably our own libreplace snprintf version does > > > not do it.... > > > > > > Volker > > > > You guys sure work at odd hours. > > Not so odd if you take timezones into account :-) > > The attached (uncompiled, I don't have access to Solaris > right now) patch *might* already do it for you. Can you give > it a try? Ping. Can I push this with your 'Signed-off' please ? Then we can log it and get it fixed for 4.2.0. > -- > SerNet GmbH, Bahnhofsallee 1b, 37081 G?ttingen > ph...
2006 May 24
3
[LLVMdev] Error with llc after using llvm-g++ WIN32
Hello, Ashwin. You wrote Wednesday, May 24, 2006, 11:25:11 AM: AC> "Pass::getClassPassInfo<PassClass>() "Pass class not AC> registered!"" failed: file AC> "/cygdrive/c/llvm/llvm/include/llvm/PassAnalysisSupport.h", line 76 AC> Aborted Same for me. AC> Wihtout the -march specified (using native x86 assembly) it does AC> convert it into
2018 Aug 12
2
Package compiler - efficiency problem
...to compiler package. I attach short demonstration of the problem to this mail (demonstration makes use of compiler and tictoc packages only). In short, the compiler package has problems in compiling large functions - their compilation and execution may take much longer than direct execution of an uncompiled function. Such functions are generated by gEcon package as they describe steady state for economy. I am curious if you are aware of such problems and plan to handle the efficiency issues. On one of the boards I saw that there were efficiency issues in rpart package but they have been resolved. Or...
2015 Feb 11
3
Samba 4.2.0rc4 fails to start up
> On Wed, Feb 11, 2015 at 11:13:42AM +0100, Volker Lendecke wrote: > > On Tue, Feb 10, 2015 at 08:59:21PM -0800, Jeremy Allison wrote: > > > Ah ok - I expected as much. snprintf seems to be > > > broken in that it's returning -1. > > > > > > Is this our snprintf or one from Solaris ? Can > > > you try and track down why it's returning
2001 Dec 05
1
Code for Hodrick-Prescott Filter
Has anyone written any code for the Hodrick-Prescott filter? I have a some uncompiled FORTRAN code from Ed Prescott but I'd like to save myself some programming time if possible. Thanks for your help. Nick Davis Crown Financial Policy Asset and Liability Management Branch The New Zealand Treasury Direct: +64-4-471-5924 Fax: +64-4-499-0143 Email: m...
2010 Oct 16
1
Compiling from source - where is winecfg?
...the prefix in the terminal, but what I usually do then is run winecfg (which creates the directory and so forth).... and I don't have it anymore. I have a source/programs/winecfg folder which contains a winecfg.exe.so, but I have no idea how to use that, if indeed it is useable, rather than the uncompiled source of winecfg. The wiki doesn't say anything about how to compile the attached tools (I would guess that wine regedit isn't compiled either), or about how to get along without them in the event that you don't have them in a separate package or compiled or whatever. .... Help? How...
2008 Apr 18
2
[LLVMdev] PATCH: Use size reduction -- wave2
On Apr 17, 7:01 pm, Owen Anderson <resis... at mac.com> wrote: > Gabor, > > Have you updated llvm2cpp to generate calls to the appropriate new Yes. These are caught by my conversion scripts. > constructors? Also, could you check the code in the tutorials to make > sure it matches the new API? Good point, will do. Thanks, Gabor > > --Owen
2008 Apr 19
0
[LLVMdev] PATCH: Use size reduction -- wave2
On Apr 18, 5:51 pm, heisenbug <ggr... at gmail.com> wrote: > On Apr 17, 7:01 pm, Owen Anderson <resis... at mac.com> wrote: > > > Gabor, > > > Have you updated llvm2cpp to generate calls to the appropriate new > > Yes. These are caught by my conversion scripts. > > > constructors?  Also, could you check the code in the tutorials to make > >
2008 May 20
0
[LLVMdev] Making use of SSE intrinsics
...at 5:03 AM, Nicolas Capens <nicolas at capens.net> wrote: > LoadInst *x = new LoadInst(ptr_x, "", false, basicBlock); > > // y = rcpps(x) // FIXME > StoreInst *storeResult = new StoreInst(y, ptr_y, false, basicBlock); Using an IRBuilder, something like the following (uncompiled, but it's at least approximately right): Value* x = Builder.CreateLoad(ptr_x); Function* rcpps = Intrinsic::getDeclaration(Module, Intrinsic::x86_sse_rcp_ps); Value* y = Builder.CreateCall(rcpps, x); Builder.CreateStore(y, ptr_y); > Somewhat related to this, I'd also like to know how to...
2006 May 25
3
[LLVMdev] Error with llc after using llvm-g++ WIN32
Hi Anton, Is the patch going to be uploaded to the CVS source? Ashwin On 5/24/06, Evan Cheng <evan.cheng at apple.com> wrote: > > > On May 24, 2006, at 5:03 AM, Anton Korobeynikov wrote: > > > Hello, Ashwin. > > > > You wrote Wednesday, May 24, 2006, 11:25:11 AM: > > > > AC> "Pass::getClassPassInfo<PassClass>() "Pass class
2018 Aug 16
3
Package compiler - efficiency problem
...e time is included or not). > > I think it is not a good idea to generate code for functions like foo() in > R (or any interpreted language). You say that R's byte-code compiler > produces code that runs 5-10x faster than when the function is interpreted > by the AST interpreter (uncompiled), which sounds like a good result, but I > believe that avoiding code generation would be much faster than that, apart > from drastically reducing code size and therefore compile time. The > generator of these functions has much more information than the compiler - > it could be turned...
2018 Jun 05
1
Byte-compilation failure on different architectures / low-memory systems
...e test system is not necessary, the | memory requirements of the byte-code compiler are usually | platform-independent and specifically with this package I can reproduce | they are very high. We'll have a look what we can do, certainly there | should at least be a way to recover and use the uncompiled version when | memory allocation fails, this is already done by the JIT but not when | compiling during installation. Before R or the package is patched, the | only workaround for memory constrained systems is probably to disable | byte-compilation of this package, as I read you are doing alrea...
2008 May 20
2
[LLVMdev] Making use of SSE intrinsics
Hi all, I'd like to make use of some specific x86 Streaming SIMD Extension instructions, but I don't know where to start. For instance the 'rcpps' instructions computes a low precision but fast reciprocal. I've noticed that LLVM supports intrinsics, but I couldn't find any information on how to use them. I've tried digging through the LLVM-GCC code but it's just
2006 May 24
0
[LLVMdev] Error with llc after using llvm-g++ WIN32
On May 24, 2006, at 5:03 AM, Anton Korobeynikov wrote: > Hello, Ashwin. > > You wrote Wednesday, May 24, 2006, 11:25:11 AM: > > AC> "Pass::getClassPassInfo<PassClass>() "Pass class not > AC> registered!"" failed: file > AC> "/cygdrive/c/llvm/llvm/include/llvm/PassAnalysisSupport.h", > line 76 > AC> Aborted > Same
2019 Jul 18
2
Eager compilation and relocatable dynamic linkable code-generation
...nt the module to be compiled fully after I do add module to compile_layer. What is the best way to achieve this? Or should I not use ORC API at all? 2. I want to compile on one process and want to ship the machine code to another process and load it for execution (with no lazy compilation where an uncompiled function will trigger compilation to remote process which as I understand is what the tutorial talks about). This means we need to generate position-independent code and may need dynamic linking to resolve any unknown function call based on symbol name. What is the best way to achieve this? Is ther...
2008 Apr 11
2
Help load a package into R
Dear R List, I want to download kinship_1.2_S.tar.gz in http://mayoresearch.mayo.edu/mayo/research/biostat/splusfunctions.cfm to R. Once save this file to C:\, how I could load into R? I am working in Windows XP. Usually what I do is, I go to "packages" and then "install packages from local zip files". This procedure fails for .tar.gz files. Can someone help here please....
2006 May 26
2
[LLVMdev] Error with llc after using llvm-g++ WIN32
Hi Evan, I updated cvs and recompilled llvm. Still getting some unrecognized commas in the compilation of the assembly file after using llc. I guess this is still future work... Ashwin On 5/25/06, Evan Cheng <evan.cheng at apple.com> wrote: > > The patch is now in. Sorry about the delay! > > Evan > > On May 25, 2006, at 10:20 AM, Ashwin Chandra wrote: > > Hi
2018 Aug 13
0
Package compiler - efficiency problem
...nce (when the compile time is included or not). I think it is not a good idea to generate code for functions like foo() in R (or any interpreted language). You say that R's byte-code compiler produces code that runs 5-10x faster than when the function is interpreted by the AST interpreter (uncompiled), which sounds like a good result, but I believe that avoiding code generation would be much faster than that, apart from drastically reducing code size and therefore compile time. The generator of these functions has much more information than the compiler - it could be turned into an interpre...