Dear all
I have the following code that works in paraller (and is pretty fast actually)

The only problem I still have is that every core just prints only once.

dimz<-1000

Shadowlist<-mclapply(1:dimz, function(i) {
                              print(sprintf('Creating the %d map',i));
                              createField(x=x, y=y, model=model, 
grid=TRUE,param=c(mean,variance,nugget,scale))
                            }
            )



In a four core system you will only receive four print messages while this 
works for 1000 iterations

What might be causing this one time printing?


BR
Alex


______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to