search for: reached

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

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)
...cannot open file 'data100000.csv': No such file or directory > data=3Dread.csv("data300000.csv",header=3DFALSE) > partial=3Dsample(data,5000,T) Error: cannot allocate vector of size 2.3 Mb In addition: Warning messages: 1: In names(y) <- make.unique(cols) : Reached total allocation of 1535Mb: see help(memory.size) 2: In names(y) <- make.unique(cols) : Reached total allocation of 1535Mb: see help(memory.size) 3: In names(y) <- make.unique(cols) : Reached total allocation of 1535Mb: see help(memory.size) 4: In names(y) <- make.unique(cols...
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)
...ata100000.csv': No such file or directory > > data=3Dread.csv("data300000.csv",header=3DFALSE) > > partial=3Dsample(data,5000,T) > Error: cannot allocate vector of size 2.3 Mb > In addition: Warning messages: > 1: In names(y) <- make.unique(cols) : > Reached total allocation of 1535Mb: see help(memory.size) > 2: In names(y) <- make.unique(cols) : > Reached total allocation of 1535Mb: see help(memory.size) > 3: In names(y) <- make.unique(cols) : > Reached total allocation of 1535Mb: see help(memory.size) > 4: In names(y) &l...
2009 Oct 15
1
Warning messages: Reached total allocation of 1023Mb: see help(memory.size)
...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) 2: In apply(Idd4.perms$permstats[-stratum1, ], 2, sort) : Reached total allocation of 1023Mb: see help(memory.size) 3: In unlist(ans, recursive = FALSE) : Reached total allocation of 1023Mb: see help(memory.size) 4: In unlist(ans, recursive = FA...
2017 Sep 12
6
Reaching definitions on Machine IR post register allocation
...r >>>> 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? Otherwise, I >>>> will have to implement a reaching definitions analysis which would >>>> be a little involved since it would need to work on a non-SSA IR form. &...
2019 Jul 17
1
Bug#880554: Bug#880554: #880554: max grant frames problem
...rvalds/linux.git/commit/?id=29d11cfd8698038b87458ba4d1329b9da81150a5 ..which is in since linux 4.13-rc2, and buster has 4.19+ Is there anyone who would wants to try reproduce the max grant frames problem on buster with Xen 4.11 and Linux 4.19 dom0/domU? The 'xen/grant-table: max_grant_frames reached' should show up on the serial console. I'd like to see a test report of it actually happening. No further adjustments/fixes will go into the Stretch Xen packages at this stage. Having better documentation about how to set hypervisor and guest options to deal with all of this is still a TO...
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
2016 Apr 06
4
Memory problem
...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 Mb In addition: Warning messages: 1: Reached total allocation of 3583Mb: see help(memory.size) 2: Reached total allocation of 3583Mb: see help(memory.size) 3: In output[[var]][rng] <- df[[var]] : Reached total allocation of 3583Mb: see help(memory.size) 4: In output[[var]][rng] <- df[[var]] : Reached total allocation of 3583Mb: see...
2017 Oct 31
2
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? Otherwise, > I will have to implement a reaching definitions > analysis which > would be a little...
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: vector memory exhausted (limit...
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 a Reaching Definition Analysis is > being implemented
2017 Sep 04
7
Reaching definitions on Machine IR post register allocation
...urday, 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? Otherwise, I will have to implement a reaching definitions analysis which would be a little involved since it would need to work on a non-SSA IR form. If something already exists that would be very helpful for me. Thanks....
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
2017 Nov 01
2
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? Otherwise, > I will have to implement a reaching definitions > analysis which > would be a little...
2020 Sep 16
2
dovecot 2.2.36.4 problem with ulimit
....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: Error: service(imap): fork() failed: Resource temporarily unavailable (ulimit -u 257577 reached?) Sep 16 09:17:00 dovecot4 dovecot: master: Error: service(doveadm): fork() failed: Resource temporarily unavailable (ulimit -u 257577 reached?) Sep 16 09:17:0...
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
...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 Mb > > > In addition: Warning messages: > 1: Reached total allocation of 3583Mb: see help(memory.size) > 2: Reached total allocation of 3583Mb: see help(memory.size) > 3: In output[[var]][rng] <- df[[var]] : > Reached total allocation of 3583Mb: see help(memory.size) > 4: In output[[var]][rng] <- df[[var]] : > Reached total alloc...