similar to: [LLVMdev] lli supports different targets than llc?

Displaying 20 results from an estimated 300 matches similar to: "[LLVMdev] lli supports different targets than llc?"

2015 Jul 23
0
[LLVMdev] lli supports different targets than llc?
On Thu, Jul 23, 2015 at 10:31 AM Débora Setton Sanches < setton.debora at gmail.com> wrote: > Hi, > > Is it normal/expected for `llc` to support a different set of targets > than `lli`? > I have a hello.ll on which this works: > > $ llc -mtriple=armv7a-linux-gnueabihf hello.ll > # OK, generates hello.s > > But this doesn't: > > $ lli
2015 Jul 23
2
[LLVMdev] lli supports different targets than llc?
s/pretty much/definitely/ Even then, “works” is too strong a word. Caveat emptor and all that. > On Jul 23, 2015, at 1:20 PM, Eric Christopher <echristo at gmail.com> wrote: > > > > On Thu, Jul 23, 2015 at 10:31 AM Débora Setton Sanches <setton.debora at gmail.com <mailto:setton.debora at gmail.com>> wrote: > Hi, > > Is it normal/expected for `llc`
2015 Jul 24
0
[LLVMdev] lli supports different targets than llc?
But I am running it on the host, as a kind of intermediate step in the cross-compilation, just to check if everything still works after the frontend step. Shouldn't it work then? I don't know much about how everything works yet, sorry if it's a silly question. What I thought was also weird is that the exact same example works if I use the OpenMP/Clang fork
2015 Jul 23
2
[LLVMdev] lli supports different targets than llc?
Hi, Is it normal/expected for `llc` to support a different set of targets than `lli`? I have a hello.ll on which this works: $ llc -mtriple=armv7a-linux-gnueabihf hello.ll # OK, generates hello.s But this doesn't: $ lli -mtriple=armv7a-linux-gnueabihf hello.ll # lli: error creating EE: No available targets are compatible with this triple, see -version for the available targets. I'm
2016 Mar 01
5
EuroLLVM BoF session: Compilers in education
Hi all, I'm organizing a BoF session during the upcoming EuroLLVM developers meeting. As the subject of this message already shows, this session will be on compilers in education. I'm currently looking for both participants to the discussion and input for the actual program of the session. I've already got some ideas which I'll introduce below. At our university, we mostly
2015 Jul 28
0
[LLVMdev] lli supports different targets than llc?
Hi, You're asking lli to create a JIT for ARM code on an Intel platform... That's not realistically going to be achievable :) Cross compilation is easy, cross execution requires an emulator. Cheers, James On Mon, 27 Jul 2015 at 23:13, Débora Setton Fernandes <debora.setton at usp.br> wrote: > Hi, > > Is it normal/expected for `llc` to support a different set of targets
2004 Feb 09
5
Printting 'for' and 'while' indices
Sorry, I forgot to correct the message subject, so I am resending my doubt it below: Hi all! I wrote a very basic program in R, which has some loops ('for' and 'while'). Is there a way to print the 'for' (or while) indice while the program is running so that I am able to estimate where the program is and how long it will last? I mean, I want something like this:
2004 Feb 11
6
AGREP
Hi all, I have two questions 1 - I have the version 1.4.1 of R, and it doesn't have the 'agrep' function in the base library. Is there a way to make this funcion avaliable in R 1.4.1? I mean, how to 'copy' it from R 1.8.1 and 'paste' it in R 1.4.1? 2 - The AGREP function doesn't give me the Levenshtein distance (edit distance). Is there a function in R that does
2004 Feb 13
1
RES: AGREP
"Marcos Sanches" <marcos.sanches at ipsos-opinion.com.br> wrote: Ls1<-length(s1) Ls2<-length(s2) for ( p in 1:ls1){ for (q in 1:ls2){ t1<-levenshteinFast(s1[p],s2[q]) ... Ls1=42000 Ls2=70000 I think I will wait for months untill this program ends. Do you have any sugestion to increase the speed? The first suggestion has to be "search HARD in the
2004 Feb 09
1
RConsole
I changed my R console configurations, for example, the letters are white, the background is black, etc,... Then I saved this new configuration. What should I do if I want to have this new configuration everytime I open R? TIA
2002 Jun 05
5
Monte Carlo
Doctor in veterinary medecine I have a degree in veterinary epidemiology I would ask if someone can perform Monte Carlo simulation with R. Thanks in advance. Dr Kane Ismaila i_kane at hotmail.com -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info",
2004 Feb 26
2
Structural Equation Model
Hello all! I want to estimate parameters in a MIMIC model. I have one latent variable (ksi), four reflexive indicators (y1, y2, y3 and y4) and four formative indicators (x1, x2, x3, x4). Is there a way to do it in R? I know there is the SEM library, but it seems not to be possible to specify formative indicators, that is, observed exogenous variables which causes the latent variable. Thanks,
2004 Mar 05
1
Delivery Status Notification
- These recipients of your message have been processed by the mail server: renato-costa.vieira-pinto at serpro.gov.br; Failed; 5.3.0 (other or undefined mail system status) -------------- next part -------------- An embedded message was scrubbed... From: unknown sender Subject: no subject Date: no date Size: 143 Url:
2013 Mar 09
1
Digium Wildcard TDM800P not working with DAHDI
Hello everyone, How can I let Digium Wildcard TDM800P work successfully with DAHDI? Because the Centos recognizes the card but I can't get the analog card working with DAHDI. Thanks in advance, Gilberto -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20130309/d82ddd47/attachment.htm>
2002 Mar 11
1
Spectral decomposition
Hello all, I have the square symetric matrix A: 2 1 1 1 2 1 1 1 2 My first question is what is the easiest way to enter this matriz in R? Second, matrix A has an eigenvalue with multiplicity 2, in this case, how could I find the two related ortogonal eigenvectors given below by R, without the help of R, I mean, I want to know how R calculate this eigenvectors related to the same eigenvalue.
2003 Nov 17
1
Generalized linear model
Hi all! I am fitting a Poisson model, using the following command: > fit2<-glm(canc~id1+year1+time+lnpa,family=poisson) where 'id1', 'year1' and 'time' are factors. I defined them with: > id1<-C(factor(id1), treatment) and 'lnpa' is a continuous variable. The 'summary' function gives me all the effects estimates, that is, for id1, I
2005 May 17
4
Finding the right number of clusters
SAS has something called the "cubic criterion" cutoff for finding the most appropriate number of clusters. Does R have anything that would replicate that? I've been searching the lists and can't seem to find anything that would point me in the right direction. Thank in advance, Philip Bermingham
1997 Sep 24
21
Samba Problems
I have a couple of problems with Samba that I would appreciate help with: 1. Since installing version 1.9.17p1, error messages such as "ERROR: set_share_mode: failed to ftruncate share mode file /var/smb/locks/share.9175085.1500224 to size 42 (Permission denied)" are appearing in log.smb. 2. When a directory on a UNIX machine contains a file named *, this file appears with the name ~16
2002 May 02
3
Surface Graphic
Hello list! I have a problem with the function 'persp'. I have a data set with the variables X -> The X coordenate of the insect Y -> The Y coordenate of the insect deep-> how deep the insect buried into the soil. I would like to have a plot with a surface simulating the way the insect buried. Is it possible? If I type persp(x,y,deep) R gives me this error message Error in
2015 May 23
2
[LLVMdev] Shared libs build failing since yesterday
Hi, I have a debug build with shared libraries (to reduce compilation time), but since yesterday, it's failing with an ExecutionEngine error: FAILED: : && /usr/lib/ccache/bin/c++ -fPIC -fPIC -fvisibility-inlines-hidden -Wall -W -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wno-missing-field-initializers -pedantic -Wno-long-long -Wno-maybe-uninitialized -Wno-comment -std=c++11