similar to: [LLVMdev] Implementing a new feature in LVVM

Displaying 20 results from an estimated 300 matches similar to: "[LLVMdev] Implementing a new feature in LVVM"

2010 Oct 21
1
Different time between date() and Sys.date()
Hi, I got two different times between these functions : > date() [1] "Thu Oct 21 12:11:37 2010" > Sys.time() [1] "2010-10-21 10:11:40 GMT" > I know that its because I did Sys.setenv(TZ="GMT"). Even if my system is set by default at CEST. I think that the difference between date() and Sys.time() is equal to the difference between CEST and GMT. I would like
2011 Jan 12
0
flexmix: predictions on new data from flexmix object
Dear R Users, R Core Team, I currently wonder how to predict the probability of an event with new data resulting from a finite mixture. I read the documentation of the flexmix package and the examples of applications provided on CRAN but I could not find how to predict (except "manually" but I am looking for a simpler solution) the final probability of the mixture (for each individual)
2013 Sep 04
1
[LLVMdev] opengl es 2
Hello, Can LLVM execute OpenGL ES 2.0 programs safely? As I tried a simple code, and I get some crashes while using lli example LLVM ERROR: Program used external function '__dso_handle' which could not be resolved! Thanks in advance Sara Une messagerie gratuite, garantie à vie et des services en plus, ça vous tente ? Je crée ma boîte mail www.laposte.net -------------- next part
2010 Nov 22
1
RCurl : All connection are used ?
     Hi everybody, I got a problem with the ftpUpload function from the RCurl package. My goal is to Upload a lot of files from a local directory to a web server. 1st try : for (i in 1:length(file)){       ftpUpload(what=files[i],to=files[i]) } At i=11 I get : (my server has only 10 available open connections available) : Erreur dans curlPerform(url = to, upload = TRUE, readfunction =
2010 Sep 10
2
Data.frames : difference between x$a and x[, "a"] ? - How set new values on x$a with a as variable ?
Hi, I got two questions : 1st Question             a="S"             b=data.frame(S=3)             do.call(`<-`,list(do.call(`$`,list(b,"S")),5)) => How can I put new values on S column having the column name as a variable ? 2 nd Question        a="S"        b=data.frame(S=3)        b[,"S"]=list(1:10) #Doesnt works        b$S=list(1:10) #Works =>
2010 Sep 02
1
Using library and lib.loc
Hi, I didn't find any post on this subject so I ll ask you some advices. Let's say that I have two library trees. Number 1 is the default R library tree on path1 Number 2 is another library tree on a server with all packages on path2. When I set library(aaMI,lib.loc=paths2) it loads the package even if its not on default R library When I set library(fOptions,lib.loc=paths2) it
2010 Jul 01
0
Cholmod warning when fitting a poisson GLMM
Hi, I am getting a warning message when I am fitting a generalized mixed model (mod_2) and I don't understand why because when I add just an interaction factor the model works perfectly (mod_1). Does anyone know what it happpens ? Thanks, Aïda   > mod_1<-lmer(sur15~soeviv15_4plus+frviv15_4plus+frat_15death+dad_class_new+soeviv15_4plus:dad_class_new +frviv15_4plus:dad_class_new+
2013 Jan 26
1
[LLVMdev] lli problem with a simple OpenGL
 Hello, I wrote a very simple openGL application, as below #include #include int main(int argc, char **argv) {   glutInit(&argc, argv);   glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH);   glutCreateWindow("red 3D lighted cube");   printf("GL_VERSION = %s\n",glGetString(GL_VERSION) );   return 0; } Compiling it with Clang and adding -lglut option worked
2018 Mar 28
1
Accentuated characters issue when receiving attributes from "samba user syncpasswords"
On Wed, 2018-03-28 at 16:06 +0200, Reindl Harald via samba wrote: > > Am 28.03.2018 um 15:52 schrieb Lapin Blanc via samba: > > I receive stdin input from "samba user syncpasswords" in my python script. > > The user is created with ' Active Directory Users and Computers', and have > > some accentuated characters in their givenName and/or familyName (sn)
2018 Mar 28
5
Accentuated characters issue when receiving attributes from "samba user syncpasswords"
I receive stdin input from "samba user syncpasswords" in my python script. The user is created with ' Active Directory Users and Computers', and have some accentuated characters in their givenName and/or familyName (sn) When parsing the diff, the CN reads of, but weird characters appears in the attributes instead of the right name : INFO:root:DN found: CN=Arsène
2018 Mar 28
0
broken mailing-list -> Re: Accentuated characters issue when receiving attributes from "samba user syncpasswords"
Am 28.03.2018 um 16:50 schrieb Lapin Blanc: > Thank you for the tip, i'll use it, but how come it's correctly encoded > in the DN and not in the attribute ? > Is it related to the ldif format or something ? no idea and hence *do not* reply privately on mailing-lists i just recognize base64 when i see it proper mail clients respect List-Post: <mailto:samba at
2017 Jan 26
2
Question about versioning of LVVM IR
Hello, It is likely that I missing something however I have to ask. We are working on Mull project https://github.com/mull-project which deals with LLVM IR in the first place so it is often that we encounter errors like the following one when we do things like parseAssemblyString(IR, Err, GlobalCtx);`: ``` test: <string>:7237:187: error: invalid field 'variable' !1526 = distinct
2012 Sep 05
0
[LLVMdev] branch on vector compare?
Am 05.09.2012 00:24, schrieb Stephen: > Roland Scheidegger <sroland <at> vmware.com> writes: >> This looks quite similar to something I filed a bug on (12312). Michael >> Liao submitted fixes for this, so I think >> if you change it to >> %16 = fcmp ogt <4 x float> %15, %cr >> %17 = sext <4 x i1> %16 to <4 x i32> >> %18 =
2015 Jul 27
2
using virt-v2v
Hi, I'm trying to migrate some VMs from KVM to oVirt using virt-v2v and I cannot get it to work. Where do I have to install virt-v2v on the oVirt management host? I've setup a RHEL 7.1 VM with the libguestfs preview for RHEL 7.2, will this work that way. My VM are located on FC LUNs on the KVM server, I'm able to access libvirt using qemu+ssh but the it returns an error that it
2016 Jun 29
0
Question about VectorLegalizer::ExpandStore() with v4i1
Rob, Ahmed, and Jingu, [I'm sorry if my point of view is too x86 centric.] >>the tricky part about fixing it is the need to settle on a memory layout for these vectors >> (packed vs byte per i1; packed would be compatible with AVX512, I think). I agree with Ahmed here, in principle. It's actually more than that, since vector compare in AVX2 and below produces the same
2012 Aug 24
4
Network with xen 4.2
Hallo Mailinglist:), i used xen 4.1 with xend xm a while. I compiled the unstable 4.2 today and most thinks run fine :). I have only one big problem, the network for my guestsystems. It don't want to work. Hopefully somebody can help me. In Xen 4.1 i only wrote the following line in my questconfig: vif = [ "bridge=eth0,script=vif-bridge" ] And everything works fine. This does not
2012 Sep 04
2
[LLVMdev] branch on vector compare?
Roland Scheidegger <sroland <at> vmware.com> writes: > This looks quite similar to something I filed a bug on (12312). Michael > Liao submitted fixes for this, so I think > if you change it to > %16 = fcmp ogt <4 x float> %15, %cr > %17 = sext <4 x i1> %16 to <4 x i32> > %18 = bitcast <4 x i32> %17 to i128 > %19 = icmp ne i128 %18, 0
2015 Jul 27
0
Re: using virt-v2v
On Mon, Jul 27, 2015 at 07:10:05PM +0200, Arsène Gschwind wrote: > Hi, > > I'm trying to migrate some VMs from KVM to oVirt using virt-v2v and > I cannot get it to work. > > What will be the best/working strategy for doing such a migration. You don't need to (and _shouldn't_) use virt-v2v if the guest already works on KVM. It's only for importing guests which
2012 Sep 04
0
[LLVMdev] branch on vector compare?
Am 04.09.2012 00:08, schrieb Stephen: >>> which goes through memory. Is there some idiom I'm missing so that it would > use >>> for instance movmsk for SSE or vcmpgt & cr6 for altivec? >> >> I don't think you are missing anything: LLVM IR has no support for horizontal >> operations like or'ing the elements of a vector of boolean together.
2010 Mar 19
1
Envoi de SMS
Bonjour, Quelqu''un envoie des sms à partir de son application? Vous avez des fournisseurs à conseiller. Le plus simple c''est d''envoyer à partir d''un email puis le fournisseur transforme ça en sms. Niveau tarif ça va du simple au triple apparement. Merci pour vos suggestions -- Posted via http://www.ruby-forum.com/. -- You received this message because you