search for: loopy

Displaying 20 results from an estimated 28 matches for "loopy".

Did you mean: loop
2014 Oct 17
3
[LLVMdev] oprofile support?
...isnt marked as anonymous (as it would be if it came from an mmap/large malloc request) oprofile ignores the samples. I would have though it would attribute those samples to lli which owns its heap. Perhaps that's a bug? My test case is this little C program converted to IR and run with lli: loopy.c: #include <stdio.h> int fib_left(int); int fib_right(int); int fib_left(int i) { if (i < 2) return 1; return fib_left(i-1) + fib_right(i-2); } int fib_right(int i) { if (i < 2) return 1; return fib_left(i-1) + fib_right(i-2); } int fib(int i) { if (i < 2) return 1; return fi...
2014 Nov 29
2
[LLVMdev] oprofile support?
...Oct 17, 2014 at 3:04 PM, Kaylor, Andrew <andrew.kaylor at intel.com> wrote: > The fact that you are getting line number information leads me to > believe that whether you intended it or not you are using the old JIT > (which is now gone), not MCJIT. The “Mapping 0x7f5ed6893032 to loopy.c:13” > lines come from a path called through NotifyFunctionEmitted and as far as I > know nothing in MCJIT calls that. > > > > At one time oprofile support worked completely with the old JIT. It > sounds like you might have a build where the old JIT was partially > dismant...
2000 Jun 14
1
Loopy stuff
June 14 2000 Dear Samba Folks: The same install on a Solaris 7 machine is flawless, this is on Solaris 8. Lots of dmesg stuff piling up. .However the "Toys at Work" (PC's) are running along and mounting their samba files just peachy and as usual don't know any different or better. Any ideas? This was installed using the 2.0.7 install from your site. +/- 3 weeks ago. (
2008 Jul 09
7
recursively divide a value to get a sequence
...can "only" do positive or negative increment. I didn't either find a way with "rep", "sweep" etc. These function normally start from an existing vector, which is not the case here, I have only got a single value to start with. I suppose I could do something "loopy", but I'm sure there is a better way to do it. Thanks a lot for your help, hope the question is not too dumb... Anne-Marie
2009 Apr 06
3
how to subsample all possible combinations of n species taken 1:n at a time?
Hello I apologise for the length of this entry but please bear with me. In short: I need a way of subsampling communities from all possible communities of n taxa taken 1:n at a time without having to calculate all possible combinations (because this gives me a memory error - using combn() or expand.grid() at least). Does anyone know of a function? Or can you help me edit the combn or
2012 Dec 07
2
Assigning cases to groupings based on the values of several variables
...;)&(mydata$age %in% 2),"mygroup.m1"]<-6 mydata[(mydata$sex %in% "f")&(mydata$age %in% 3),"mygroup.m1"]<-7 mydata[(mydata$sex %in% "f")&(mydata$age %in% 4),"mygroup.m1"]<-8 (mydata) # Method 2 of assigning to groups - very "loopy": mydata$mygroup.m2<-NA for(i in 1:nrow(mydata)){ # i<-1 mysex<-mydata[i,"sex"] myage<-mydata[i,"age"] mydata[i,"mygroup.m2"]<-groupings[(groupings$sex %in% mysex)&(groupings$age %in% myage),"mygroup"] } (mydata) # Method 3 of...
2007 Nov 30
3
Do While loop
Hi, Is there a way to have a Do-While sort of loop, as opposed to a simple While? I have a condition that the loop depends on even for the first iteration, as it often happens in life. Regards, Mike -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20071130/2ceb78a2/attachment.htm
2007 Apr 04
2
Newbie: Simple loops: complex troubles
...am not sure why numeric() dosnt make you define length before you use it, yet matrix() does. Is there some other funciton that i should be using to make length not an issue? All in all, I dont know if i am going about this loop stuff a reaaaaly round about way - Any help would make me much less loopy:Pthanks -- View this message in context: http://www.nabble.com/Newbie%3A-Simple-loops%3A-complex-troubles-tf3523751.html#a9830574 Sent from the R help mailing list archive at Nabble.com.
2006 Apr 29
4
Wild SQL -- public/500.html -- postgres-pr
Every page of my DEPOT on Postgresql rails app now gets an error from postgres-pr about some wild left-join SQL that has nothing to do with my tables: SQL (0.000000) NameError: undefined local variable or method `errors'' for #<PostgresPR::Connection:0x3b200c0>: SELECT a.attname, format_type(a.atttypid, a.atttypmod), d.adsrc, a.attnotnull FROM pg_attribute a LEFT JOIN
2005 Sep 11
6
Patch to wxNotebook.rbw
Patch to the notebook example to remove the call to the deprecated NotebookSizer. It appears to work just fine without the sizer. Roy _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2009 Jan 15
1
Bug#511959: klibc-utils: ipconfig times out when several machines boot at the very same time
...and since it's probably overkill to introduce that additional state, I think the functionally equivalent 0003-cleaner.patch will be better if you want to implement my suggestion. Patches against master branch, tested on Debian's sid version (1.5.12). Errm, now that I'm rebooting on a loopy fashion, it looks like those patches don't cure the problem totally, so I guess I'm back to debugging. Hopefully, upstream will figure this out better than I do. Cheers, -- Cyril Brulebois -------------- next part -------------- An embedded message was scrubbed... From: Cyril Brulebois &l...
2012 Jan 23
2
model non-nested random effects in nlme library
Hello all, In lme4 if you want to model two non-nested random effects you code it like this: mod1 <- lmer(y~x + (1|randomvar1) + (1|randomvar2)) How would you go about to model something similar in nlme? In my database I have two variables for which I have repeated measures, lets call them "individual" and "year". But none of the "individuals" were measured in
2011 Dec 29
3
Array element is function of its position in the array
I want to create a new array which selects values from an original array based on a function of the indices. That is: I want to create a new matrix Vnew[i,j,k]=Vold[i,j,ks] where ks is a function of the index elements i,j,k. I want to do this WITHOUT a loop. Call the function "ksfunction", and the array dimensions nis,njs,nks. I can do this using a loop as follows: # Loop version:
2010 Mar 08
2
[LLVMdev] findNearestCommonDominator
On 03/07/2010 10:33 PM, Jochen Wilhelmy wrote: > Hi! Hi Jochen, > I have seen that findNearestCommonDominator has been added > to class PostDominatorTree, maybe on my request. > > Now there is the following problem: > in class DominatorTreeBase there is an assert in findNearestCommonDominator > that asserts if the tree is not a PostDominator tree: > > assert
2023 Aug 06
1
Stacking matrix columns
I wish to stack columns of a matrix into one column. The following matrix command does it. Any other ways? Thanks. > x<-matrix(1:20,5,4) > x ???? [,1] [,2] [,3] [,4] [1,]??? 1??? 6?? 11?? 16 [2,]??? 2??? 7?? 12?? 17 [3,]??? 3??? 8?? 13?? 18 [4,]??? 4??? 9?? 14?? 19 [5,]??? 5?? 10?? 15?? 20 > matrix(x,ncol=1) ????? [,1] ?[1,]??? 1 ?[2,]??? 2 ?[3,]??? 3 ?[4,]??? 4 ?[5,]??? 5
2004 Dec 22
1
Slow Print Dialogue Box
I have a Question I am running Samba 3.10 on Debian with OpenLdap Backend as a Print Server to XP Client Machines without SP2. When printing from Microsoft Word it takes 10 -15 sec. for the Dialogue box to come up. However, in troubleshooting this problem i found that if i edit the smb.conf and add my user account to the admin user under the [Global] Section. The problem goes away. Does
2009 Apr 25
2
Dovecot auth user lookup patch for maildrop
Hi, recently I started using maildrop as a MDA doing lightweight filtering in a Postfix/Dovecot mail server combo. Only thing missing was the fact that maildrop couldn't perform user lookups against a user database that was already being served by Dovecot (for smtp auth in Postfix and for imap access obviously) in order to easily determinate proper mailbox location and home directory of
2009 Jul 12
2
for (n in SystemResults$EnTime) return EnTime[n] until reaching "(all)"
Hi, Newbie alert on for loops... I have a bunch of data.frames built using rbind that have repeated values in the EnTime column. I want to read the value in the EnTime column and use it as an input to a function, but only down to the first occurrence of the string "(all)" where I want to break off and do other things. From the results I'm getting from some test code I clearly
2003 Sep 29
1
Handling of X-Status flags
...ther MUAs I've seen or used: With PINE, mutt and uw-imapd at least, messages are marked with X-Status 'D' for Deleted, and 'T' for drafT. Dovecot reverses this behaviour, using 'D' for Draft, and 'T' for Trashed. Was there any reason behind this? Or have I gone loopy? At our site, we have users reading mail with a mix of PINE locally, and through dovecot via WebMail and there seems to arise a bit of confusion between the two flags. Attached is a patch that reverses this behaviour (prepared against 0.99.10 but applies with a little fuzz to cvs). I'd like to...
2008 Jun 17
1
read.spss {foreign} doesn't work over network?
...FAV_ADD" "F_TAZ" "F_XCORD" "F_YCORD" "BUS_OF_A" [91] "LTFACTOR" "BUSREPFA" "ADDWEIGH" "RESPONSE" "VEHFACT" "FINWGT" [97] "EXPFACTO" "EXPWGT" > Am I just loopy in thinking I've ever read this directly from the network drive? Did I do something stupid that "broke" read.spss? > version _ platform i386-pc-mingw32 arch i386 os...