similar to: [LLVMdev] One question about two passes interaction

Displaying 20 results from an estimated 2000 matches similar to: "[LLVMdev] One question about two passes interaction"

2013 Feb 23
1
[LLVMdev] One question about two passes interaction
Actually I tried ModulePass. It works exactly as what I expect.But I found another problem. In ModulePass, it not only collects the functions I create, it also treat some system function such as 'printf' as a function. I do not if I does something wrong. The codes I use is as follows: virtual bool runOnModule(Module &M) { for (Module::iterator b = M.begin(), be = M.end(); b !=
2013 Feb 22
4
[LLVMdev] Does LLVM optimize variable to constant value in the compiling time?
Considering the following codes: int x = 21; if(x > 20) { p = &C; } else { p = &E; } I looked into the bitcode that LLVM generates, it still considers the 'else' branch, which will be never reached during the runtime. Thanks, Robert -------------- next part -------------- An HTML attachment was scrubbed... URL:
2013 Feb 22
1
[LLVMdev] Does LLVM optimize variable to constant value in the compiling time?
By optimization, do you mean enable the optimization whiling building llvm or use optimization flag while using clang command to get the bitcode file? In my case, I disable the optimization when I built llvm, and I use the following command to get the bitcode: clang -O0 -emit-llvm hello.c -c -o hello.bc To run the pass: opt -load ../../../Debug+Asserts/lib/Hello.so -hello < hello.bc >
2014 Nov 12
2
Query: SELECT "INBOX" permission denied
Yesterday I was forced to migrate servers due to a hardware failure. I have been able to bring up my mail server, and set up Squirrelmail and Dovecot. I am able to access (via Squirrelmail) all users' mail except one - which happens to be my wife's, so it would be really helpful if I could get that working too. I am able to log in, but see the following message in the main pane:
2005 Oct 16
2
[LLVMdev] Help on LLVM Instrumentation
Hi , I am using LLVM for my Post Graduate course project on Optimization. I am trying to do some insrtumentation to the bytecode.I 've been going through your Instrumentation code for the past few days in /llvm/lib/Transforms/Instrumentation folder and finally found two ways of instrumentation : 1) injecting LLVM bytecode instructions 2) calling an external C function. I am trying both and
2018 May 22
4
Pasar palabras de una lista a una variable del dataframe
Buenas tardes, Tengo una lista de 600 palabras. Quiero saber cuántas de esas palabras aparecen en cada observación de mi variable "texto". La variable "texto" es de tipo caracter. ¿Cómo lo haríais? Muchas gracias.
2018 May 23
2
Pasar palabras de una lista a una variable del dataframe
Muchas gracias Carlos, Me da error al hacerlo. Mi variable donde quiero que localice las palabras de la lista tiene más de una palabra, no se si puede ser por eso. Gracias El Mar, 22 de Mayo de 2018, 20:15, Carlos Ortega escribió: > Hola, > > Aquí tienes un ejemplo (reproducible)... > > #----------------------- >> # Generar nombres de mujer >> library(randNames)
2002 Feb 14
4
How to read a long string of characters as a vector
Dear R users, I would really appreciate some help, I have a plain text file which contains info like NANATGGGGGGGCCCAGCTTGAATTCCCNTCCCCNTTCCCATCCAGGCC I would like to read it as a vector, for example, (N,A,N,A,T,G,G,G,G,G,G,G,C,C,C,........) I've tried commands such as read.table and scan but I don't get what I want. Thank you in advanced. Sandra
2010 Mar 24
3
mounting gfs partition hangs
Hi, I have configured two machines for testing gfs filesystems. They are attached to a iscsi device and centos versions are: CentOS release 5.4 (Final) Linux node1.fib.upc.es 2.6.18-164.el5 #1 SMP Thu Sep 3 03:33:56 EDT 2009 i686 i686 i386 GNU/Linux The problem is if I try to mount a gfs partition it hangs. [root at node2 ~]# cman_tool status Version: 6.2.0 Config Version: 29 Cluster Name:
2012 May 06
4
comparaciones planeadas
Hola a todos, hace poquito una persona escribía con una duda que se parece, o es, la misma que yo vengo teniendo. Se trata de hacer comparaciones planeadas. Supongamos un experimento en el que participan 4 grupos de niños 8por ejemplo de distintos coles). Estos niños leen palabras largas y cortas, frecuentes e infrecuentes. Por lo tanto el diseño es fácil, un intergrupo "niños" y dos
2000 Dec 05
2
openssh problems
Hi everyone: I am new so I hope so that this list will be the correct place for my question. I install openssh-2.3.0p1 yesterday on a machine with Red Hut Linux 6.2 and it was fine as client but not as server in other words I can use openssh from my machine to get in the other machines but when I try to do from another machines to the machine that I mentioned above, I got a error that said
2016 Jul 08
2
Problem with Samba 4 samba_dnsupdate
Hello! I have a problem in my AD, after removing a file server that was as AD member. I can no longer put any computer in the domain. In the Samba 4, run a command like wbinfo - u. wbinfo -g, samba-tool user list and it works, but when I type samba_dnsupdate --all-name --verbose generates the following error: Traceback (most recent call last): File "/opt/samba/sbin/samba_dnsupdate",
2005 Nov 22
3
[LLVMdev] Cloning BasicBlock
Hi , I am trying to clone a BasicBlock. I want both to co-exist and I have introduced a conditional branch to the original or the cloned BB. I tried mapping the original instruction and the clone as below : Instruction *NewInst = II->clone(); if (II->hasName()) NewInst->setName(II->getName()); NewBB->getInstList().push_back(NewInst); ValueMap[II] =
2012 Aug 25
12
How can MCollective replace "puppet kick"?
Dear readers, I was shocked to see that "puppet kick" will be deprecated in 3.0.0 https://projects.puppetlabs.com/issues/15735 How can MCollective replace "puppet kick"? Hugs, Sandra -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit
2011 Feb 22
3
nrow()
Hey there, I tried to count the number of rows, where my data isn't NaN in a certain column. this was my guess: (given is a data frame with 2069 rows and 17 cols) NROW(data[jan,16] != NaN) ("jan" is defined this way: jan <- which(data[,2]==1, arr.ind= TRUE)) but I only get the number of columns where my data is "1" in the second col. R isn't removing the
2005 Nov 22
0
[LLVMdev] Cloning BasicBlock
On Tue, 2005-11-22 at 09:12 -0800, Sandra Johnson wrote: > Hi , > I am trying to clone a BasicBlock. I want both to co-exist and I have > introduced > a conditional branch to the original or the cloned BB. I have a pass I haven't commited that does just this. Well, it does so to implement Arnold and Ryder style profiling. I can send you a copy of that if you want (I hope to
2005 Nov 23
1
[LLVMdev] Cloning BasicBlock
Hello Andrew , Yes , I have missed the phi node since my paths merge together. I'll try this out. I am implementing a timer based profiling scheme and hope your code will be useful for me. Please send me a copy of your code. Thanks Sandra Andrew Lenharth <andrewl at lenharth.org> wrote: On Tue, 2005-11-22 at 09:12 -0800, Sandra Johnson wrote: > Hi , > I am trying
2012 Aug 24
3
Chart of the most common Ruby I should know for puppet 3?
Hi all, Being new to puppet 3 and to Ruby. Does there exist a chart of the Ruby I should know? Hugs, Sandra -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/yuEGLZKgC_4J. To post to this group, send email to puppet-users@googlegroups.com. To
2012 Jul 27
11
Possible to push changes to nodes?
Dear readers, When I have made a change to a template, class or file, is it then possible to push this change to the node(s), so they get the changes now? I would like to be able to push the change from the master, and not have to login to each node and pull. Is that possible? Hugs, Sandra -- You received this message because you are subscribed to the Google Groups "Puppet Users"
2006 Mar 30
1
Predict function for 'newdata' of different dimension in svm
I am using the "predict" function on a support vector machine (svm) object, and I don't understand why I can't predict on a dataset with more observations than the training dataset. I think this problem is a generic "predict" problem, but I'm not sure. The original svm was fit on 50 observations.