similar to: (fwd from phsan@cs.siu.edu) Compiling error

Displaying 20 results from an estimated 90 matches similar to: "(fwd from phsan@cs.siu.edu) Compiling error"

2012 Jun 28
3
[LLVMdev] Another LLVM JIT extension to Python
Dear LLVM, I am a young developer who have just uploaded my first opensource project based on LLVM. I would like to know what professionals think of my project. I have started a JIT extension to Python called Pymothoa ( http://code.google.com/p/pymothoa/). Unlike other similar projects, I did not modify the interpreter. Pymothoa uses Python decorators to mark function for JIT compiling. It
2012 Jun 29
0
[LLVMdev] Another LLVM JIT extension to Python
On 06/29/2012 01:06 AM, Siu Kwan Lam wrote: > Dear LLVM, > > I am a young developer who have just uploaded my first opensource > project based on LLVM. I would like to know what professionals think of > my project. > > I have started a JIT extension to Python called Pymothoa ( > http://code.google.com/p/pymothoa/). Unlike other similar projects, I > did not modify the
2012 Jun 29
1
[LLVMdev] Another LLVM JIT extension to Python
On 06/29/2012 02:47 AM, Tobias Grosser wrote: > On 06/29/2012 01:06 AM, Siu Kwan Lam wrote: >> Dear LLVM, >> >> I am a young developer who have just uploaded my first opensource >> project based on LLVM. I would like to know what professionals think of >> my project. >> >> I have started a JIT extension to Python called Pymothoa ( >>
2016 Dec 26
1
Multiple simplifycfg pass make some loop significantly slower
Hi all, I am noticing a significant degradation in execution performance in loops with just one backedge than loops with two backedges. Unifying the backedges into one will also cause the slowdown. To replicate this problem, I used the C code in https://gist.github.com/sklam/11f11a410258ca191e6f263262a4ea65 and checked against clang-3.8 and clang-4.0 nightly. Depending on where I put the
2006 Jul 27
3
bug with rpois (PR#9106)
The R poisson random generator rpois appears to have a bug for theta 10 or larger. The sample mean of the pseudo variates is too small: sample mean approx theta - 0.5. I use Version 1.1.1 (August 15, 2000) Of R on a Dell OptiPlex computer with the Windows XP Professional operating system. Has this bug been fixed in later versions? (I found another reported rpois bug, but it appears to be
1997 Nov 20
0
R-beta: questions from a beginner
I am new to R and I was wondering if I could ask a few questions. (I am running R on a Windows NT box.) 1. Is the random number generator in R the same as the one in S "Super-Duper")? 2. Is it possible to use dyn.load in the Windows version? 3. When is the next release of R coming out? Thanks a lot. Best, Francisco --
2013 Jan 14
1
[LLVMdev] Question about the loop vectorizer
Hi all, I have a question about the loop vectorizer. For the following code: void example1 (float a[], float b[], float c[], int n) { int i; for (i=0; i<n; i++){ a[i] = c[i]; } for (i=0; i<n; i++){ a[i] += b[i]; } } void example2 (float a[], float b[], float c[], int n) { int i; for (i=0; i<n; i++){ a[i] = b[i] + c[i]; } } The
1998 Jan 28
1
R-beta: executable problem
I downloaded the rseptbeta.zip and exe.zip files for Windows (I'm running Win 95 4.00.950a) about three weeks ago and until now had been very impressed. Today the executable rsept.exe (dated 10/29/97) went strange. It would open a window and immediately close the window (I've seen this before when inadvertently trying to open certain non-windows applications within windows). Here is
1998 Jan 20
1
R-beta: questions and comments
Let me first tell you that you and your cohorts are doing a great service to the statistical community with R. I have been working with Rseptbeta under Win95 and I am very impressed with its capabilities. I thought I give you some feedback gained from my limited playing with R. Fritz Scholz fritz.scholz at boeing.com ============================================================= When
2012 Dec 31
3
[LLVMdev] Trying out Loop Vectorizer
Hi all, I am trying out the new loop vectorizer in LLVM 3.2. I wanted to see the effect of the pass in `opt` but I have no success. I used LLVM IR generated from C examples in http://blog.llvm.org/2012/12/new-loop-vectorizer.html#more and pass them to `opt -S -O3 -vectorize-loops example.ll`. However, I do not see vectorized output. What am I doing wrong? Thanks, Siu -------------- next part
1997 Dec 02
2
R-beta: wish: hist() returning breaks and counts
Hi, would it be possible to change the hist() function in future R Versions to accept a "plot=F" parameter (like hist() in S it should return a list with "breaks" and "counts" in this case). This change should be very simple. Albrecht ------------------------------------------------------------------------------- Albrecht Gebhardt email :
1997 Dec 02
2
R-beta: wish: hist() returning breaks and counts
Hi, would it be possible to change the hist() function in future R Versions to accept a "plot=F" parameter (like hist() in S it should return a list with "breaks" and "counts" in this case). This change should be very simple. Albrecht ------------------------------------------------------------------------------- Albrecht Gebhardt email :
1997 Nov 22
3
R-beta: help ((message first bounced because of subject -- your admin.))
The help file provided within the rsept.zip is somewhat outdated compared to the one available on http://www.stat.math.ethz.ch/R/manual/; would it be possible to update the file for a more easy download instead of having either to download individually or going online ? Troels =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--- r-help mailing list -- Read
1997 Nov 27
0
R-beta: [?] two questions on R for Windows
> From r-help-owner at stat.math.ethz.ch Thu Nov 27 17:29 NZD 1997 > From: "Francisco Cribari" <cribari at siu.edu> > To: r-help <r-help at stat.math.ethz.ch> > Date: Wed, 26 Nov 1997 22:23:57 +0000 > MIME-Version: 1.0 > Content-transfer-encoding: 7BIT > Subject: R-beta: [?] two questions on R for Windows > > > Two question on R for Windows
2004 May 25
2
binary R for Fedora Core 2 e tcl
I update my linux version of FC1 for FC2. FC2 uses tcl-8.4.5 and R-1.9.0 (rpm version for FC1, not install/not run). We have the rpm binary version at FC2? -- Eng. Juan Santiago Ramseyer Email: juan_sr@uol.com.br Fones: 71-341.6473 71-8806.6473
2012 Dec 31
0
[LLVMdev] Trying out Loop Vectorizer
On 31.12.2012, at 20:03, Michael Lam <michael.lam.sk at gmail.com> wrote: > Hi all, > > I am trying out the new loop vectorizer in LLVM 3.2. I wanted to see the effect of the pass in `opt` but I have no success. I used LLVM IR generated from C examples in http://blog.llvm.org/2012/12/new-loop-vectorizer.html#more and pass them to `opt -S -O3 -vectorize-loops example.ll`.
2004 Nov 10
0
Problem with write permissions
Pegasus Mail (PM) v4.21c in Linux (SuSE Pro v9.1)/Wine (v20040914) environment. My New Mail mailbox in PM is in one FAT32 (VFAT) partition and I have another added mailbox in another FAT32 partition. From time to time (not consistent) I have a problem with either or both of these partitions appearing to become write only in the middle of a session during which I am filtering new mail. (If the
2009 Nov 27
0
No subject
su testuser11 cd /storage/CME/test No problem. But when I try to access the same directory in windows I get these entries in my logs.... /var/log/samba/log.smbd ------------------ [2010/01/04 16:08:25, 1] smbd/sesssetup.c:reply_spnego_kerberos(350) Failed to verify incoming ticket with error NT_STATUS_LOGON_FAILURE! log.winbindd reports no errors so it seems that the SIU/UID mapping
2006 Jun 30
5
Way to convert data frame to matrix
I have a text file that I have imported into R. It contains 3 columns and 316940 rows. The first column is vegetation plot ID, the second species names and the third is a cover value (numeric). I imported using the read.table function. My problem is this. I need to reformat the information as a matrix, with the first column becoming the row labels and the second the column labels and the
2005 Nov 24
2
type III sums of squares in R
Hi everyone, Can someone explain me how to calculate SAS type III sums of squares in R? Not that I would like to use them, I know they are problematic. I would like to know how to calculate them in order to demonstrate that strange things happen when you use them (for a course for example). I know you can use drop1(lm(), test="F") but for an lm(y~A+B+A:B), type III SSQs are only