Re: [R-SIG-Mac] macOS may not give R much time in a long compute

2023-02-18 Thread Spencer Graves
On 2/18/23 4:34 PM, Simon Urbanek wrote: On Feb 19, 2023, at 3:50 AM, Spencer Graves wrote: On 2/18/23 6:40 AM, Prof Brian Ripley wrote: Are you using R.app (you failed to say)? I'm "using the newest version of RStudio" [Version 2022.12.0+353 (2022.12.0+353)]. This means I

Re: [R-SIG-Mac] macOS may not give R much time in a long compute

2023-02-18 Thread Simon Urbanek
> On Feb 19, 2023, at 3:50 AM, Spencer Graves > wrote: > > On 2/18/23 6:40 AM, Prof Brian Ripley wrote: >> Are you using R.app (you failed to say)? > > > I'm "using the newest version of RStudio" [Version 2022.12.0+353 > (2022.12.0+353)]. This means I am running R.app? > No, it

Re: [R-SIG-Mac] macOS may not give R much time in a long compute

2023-02-18 Thread Spencer Graves
On 2/18/23 6:40 AM, Prof Brian Ripley wrote: Are you using R.app (you failed to say)? I'm "using the newest version of RStudio" [Version 2022.12.0+353 (2022.12.0+353)]. This means I am running R.app? If so, have you acted on the documentation about 'app nap'?  E.g. §4.1 of the R-a

Re: [R-SIG-Mac] macOS may not give R much time in a long compute

2023-02-18 Thread Prof Brian Ripley
Are you using R.app (you failed to say)? If so, have you acted on the documentation about 'app nap'? E.g. §4.1 of the R-admin manual. On 18/02/2023 12:31, Spencer Graves wrote: Hello:   During a long compute (in a while loop), I've asked R to report progress via: # Progress report

[R-SIG-Mac] macOS may not give R much time in a long compute

2023-02-18 Thread Spencer Graves
Hello: During a long compute (in a while loop), I've asked R to report progress via: # Progress report every 3 minutes et3i <- proc.time()-startT3i if(max(et3i)>180){ startT3i <- proc.time() cat('iscan = ', iscan3, '; et3i = ', round(et3i[1:3]), '\n') }