-
I'm hoping to get some guidance on the best way to run parallel bootstraping on an HPC system. I have a complicated model - 233 coefficients with 32397 observations from 341 participants. To get an idea of the resources needed to run the bootstrapping I opened an interactive terminal with 48 cores and 360 GB of RAM. For 5,000 iterations the bootstrap gives me an estimate of 41 days. I wasn't sure if this was actually taking advantage of the multiple cores or not, so I tried to run it as distributed following the documentation:
However, I get the following error after the @showprogress remotecall_fetch step:
So I have 2 main questions:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I was able to figure this out. I needed to use @Everywhere to add the ProgressMeter and MixedModels modules to each worker. Add this code seems to have resolved my issue.
|
Beta Was this translation helpful? Give feedback.
I was able to figure this out. I needed to use @Everywhere to add the ProgressMeter and MixedModels modules to each worker. Add this code seems to have resolved my issue.