search for: reaching

Displaying 20 results from an estimated 15909 matches for "reaching".

Did you mean: teaching
2012 Oct 04
2
[LLVMdev] Problems of manipulating GEP for struct type
Hi, I use JIT to execute the following LLVM IR, ------------------------------------------------------------------------------------------------------------ define internal fastcc i32 @L_00008120_(%struct.ThreadContext* %ThreadCtx) { L_00000000_: %0 = alloca i32 %1 = alloca i32 %2 = alloca %struct.ThreadContext*, align 4 store %struct.ThreadContext* %ThreadCtx, %struct.ThreadContext**
2008 Aug 17
1
Allocated Memory Warnings in Vista 32 bit with 4 GB (PR#12557)
Hello I am running Windows Vista 32 with 4 GB (installed, though Windows of cours= e only recognizes 3326 MB, as reported by Windows "My Computer") I am running R 2.7.1 I was trying to read in a comma delimited single column CSV file, assign th= at file to a variable ("data") and then extract a sample (assigned to "part= ial"). I was getting memory allocation
2011 Feb 15
1
Passing Arguments in a function
Hi All, I'm having some trouble assigning arguments inside a function to produce a plot from a model Can anyone help me? Below I've outlined the situation and examples of failing and working code. Regards Mike ## data ## decay.data <- ... behaviors lift reach.uu estimated.conversions.uu total.reach 1 1 432.0083 770 770 0.00 2
2012 Oct 04
0
[LLVMdev] Problems of manipulating GEP for struct type
Hi Chia Lun, On 04/10/12 07:58, ChiaLun wrote: > Hi, > > I use JIT to execute the following LLVM IR, > > ------------------------------------------------------------------------------------------------------------ > define internal fastcc i32 @L_00008120_(%struct.ThreadContext* %ThreadCtx) { does the caller also specify the fastcc calling convention when calling this? Ciao,
2008 Aug 18
0
Allocated Memory Warnings in Vista 32 bit with 4 GB (PR#12560)
I see no bug here. R is telling you that you have insufficient memory available: see also ?"Memory-limits". See also rw-FAQ Q2.9. Note that we don't have a reproducible example and in particular have no idea of how many columns this data frame has. The 'R Data Import/Export' manual gives you many hints on how to do this more efficiently, and it is referenced from the
2009 Oct 15
1
Warning messages: Reached total allocation of 1023Mb: see help(memory.size)
Hi there, I run the following code in R and got the warning like that, how can I change the memory.size? Or anything else? Thanks a lot! Faye temp<-apply(Idd4.perms$permstats[-stratum1,], + 2,sort) Error: cannot allocate vector of size 47.5 Mb In addition: Warning messages: 1: In apply(Idd4.perms$permstats[-stratum1, ], 2, sort) : Reached total allocation of 1023Mb: see help(memory.size)
2017 Sep 12
6
Reaching definitions on Machine IR post register allocation
...s? No concrete plan, no. We've been thinking about for quite some time now, but never got at it. Cheers, -Quentin > > The case that you have pointed out involving partial writes to a register together completely killing a wider register is interesting and did not occur to me. But, for reaching definitions, even if you do not detect this case, shouldn't this be safe (although conservative) since you would only end up over-estimating the set of reaching definitions at a point? > > But for other scenarios such as copy propagation, you may need to detect this scenario because othe...
2019 Jul 17
1
Bug#880554: Bug#880554: #880554: max grant frames problem
Hi, On 10/23/18 7:34 PM, Ian Jackson wrote: > Control: retitle -1 max grant frames problem (domu freeze with linux-image-4.9.0-4-amd64) > Control: severity -1 important > Control: reassign -1 src:xen 4.8.3+xsa267+shim4.10.1+xsa267-1+deb9u9 my last comment in this bts bug was about:
2009 Mar 17
2
[LLVMdev] Looking for a Reaching Definition Analysis
Hello, I am a newbie to LLVM as well as compilers and I am hoping for some direction in finding an instance of where a Reaching Definition Analysis is being implemented within LLVM. I have referenced the sources files, initially hoping to find an explicit ReachingDefinitionAnalysis.cpp file ;-) but with no such luck. Other than that I have found the files SimpleRegisterCoalescing.cpp and the PreAllocSplitting.cpp which ar...
2016 Apr 06
4
Memory problem
Dear R Forum, I have about 2000+ FX forward transactions and I am trying to run 1000 simulations. If I use less no of simulations, I am able to get the desired results. However, when I try to use more than 1000 simulations, I get following error. > sorted2 <- ddply(sorted, .(currency_from_exch, id), mutate, change_in_mtm_bc = mtm_bc - mtm_bc[1]) Error: cannot allocate vector of size 15.6
2017 Oct 31
2
Reaching definitions on Machine IR post register allocation
...fter RA. > > I am hoping that this plan would work. > > Regards, > > Venu. > > From: *Krzysztof Parzyszek via llvm-dev* <llvm-dev at lists.llvm.org > <mailto:llvm-dev at lists.llvm.org>> > Date: Mon, Oct 30, 2017 at 7:25 PM > Subject: Re: [llvm-dev] Reaching definitions on Machine IR post register > allocation > To: llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org> > > > Hi Raghavan, > Thanks for asking the questions, it's not a problem at all. > > The RDF graph simulates SSA. It does so by having &quo...
2001 Aug 28
1
Error: vector memory exhausted (limit reached?)
While runing R1.3.0 on a Win95 machine, a process has produced the following error: Error: vector memory exhausted (limit reached?) In addition: Warning message: Reached total allocation of 47Mb: see help(memory.size) Lost warning messages Now I cannot save the work (not too bad, I had used save.image() just prior to launch the process), but cannot quit the program: > save.image() Error:
2009 Mar 17
0
[LLVMdev] Looking for a Reaching Definition Analysis
The immediate uses info provides reaching definitions already, at least while the code is in SSA form. So uh, what more are you looking for? 2009/3/17 Shone Sadler <shone.sadler at gmail.com>: > Hello, > > > I am a newbie to LLVM as well as compilers and I am hoping for some > direction in finding an instance of where...
2017 Sep 04
7
Reaching definitions on Machine IR post register allocation
Hi, Just to clarify I am looking for a whole machine function analysis not just something restricted to within a machine basic block. Thanks. Regards, Venu. From: Raghavan, Venugopal Sent: Saturday, September 02, 2017 12:56 PM To: llvm-dev at lists.llvm.org Subject: Reaching definitions on Machine IR post register allocation Hi, Given a definition of a register by a machine instruction in the Machine IR post register allocation, I would like to compute the set of uses of this register reached by this definition. Does LLVM already have this kind of analysis I can use?...
2009 Mar 17
2
[LLVMdev] Looking for a Reaching Definition Analysis
Thanks for the response. I was more specifically looking through the source code for a place where Reaching Definitions was implemented to derive those uses and/or to generate the SSA. To provide some context, as a student I have a project to implement a path infeasibility algorithm to "Sharpen" the results of the Reaching Definitions results in LLVM. Being new to LLVM I wasn't looking for...
2017 Nov 01
2
Reaching definitions on Machine IR post register allocation
...oned above to which Krzysztof drew my attention. Regards, Venu. -----Original Message----- From: Geoff Berry [mailto:gberry at codeaurora.org] Sent: Tuesday, October 31, 2017 8:33 PM To: llvm-dev at lists.llvm.org; Raghavan, Venugopal <Venugopal.Raghavan at amd.com> Subject: Re: [llvm-dev] Reaching definitions on Machine IR post register allocation Hi Venu, FWIW, I have a pass that does copy propagation after RA [1] (currently only within a basic block) that should be enabled some time in the not-too-distant future. It has been reviewed and accepted, but I'm currently working on gettin...
2020 Sep 16
2
dovecot 2.2.36.4 problem with ulimit
Hi I update os from debian8 to debian9 # 2.2.36.4 (baf9232c1): /etc/dovecot/dovecot.conf # Pigeonhole version 0.4.24.2 (aaba65b7) # OS: Linux 4.9.0-13-amd64 x86_64 Debian 9.13 All works fine but sometimes I get: Sep 16 09:17:00 dovecot4 dovecot: master: Error: service(pop3): fork() failed: Resource temporarily unavailable (ulimit -u 257577 reached?) Sep 16 09:17:00 dovecot4 dovecot: master:
2005 Jul 14
2
broadcast from domain-0 not reaching guest
Hello, I got Xen working on my machine using the packages that come with Fedora Core 4, but I got one problem: broadcast packages sent from Domain-0 will not reach the guest os. The rest seems to work perfectly. broadcast from guest reaches LAN. broadcast from LAN(but not Domain-0) reaches guest. Does anybody know how to get this working? Thorsten.
2007 Feb 15
3
Fwd: devnull-dev.stanford.edu syslog filter results (fwd)
We''re still intermittantly getting these messages in syslog on various different systems: Feb 14 17:32:10 server-dev puppetd[20363]: Could not call puppetreports.report: #<EOFError: end of file reached> Feb 14 17:32:10 server-dev puppetd[20363]: Reporting failed: end of file reached Anyone else ever see stuff like this?
2016 Apr 06
0
Memory problem
It is hard to tell from the information that you have provided. Do you have a list of the sizes of all the objects that you have in memory? Are you releasing large objects at the end of each simulation run? Are you using 'gc' to garbage collect any memory after deallocating objects? Collect some additional information with a simple function like below: f_mem_stats <-