Jiefei Wang

Results 27 comments of Jiefei Wang

Thank you @MarkEdmondson1234 . Currently, my package is using the system environment, which is exactly the same as your suggestion, but the issue would be that if a user sets/resets...

Sure, here is a simple example code: ``` pkg_private

Thanks for pointing it out, this is because of `log=FALSE` in the BPPARAM and the warnings are discarded. A temporary workaround is to enable the log manually by ``` fun

Sure, for the sequential balancer, the task dispatching plan is ``` A: 1, 2, 3 B: 4, 5, 6 C: 7, 8, 9, 10 ``` For the stepwise balancer, it...

Yes, the random balancers have the lowest expected evaluation time, but the highest variance(when you redo the same apply function many times). If we do not know the task evaluation...

Hello @DarwinAwardWinner , for your comments 1. The balancer is designed for `bplapply` and `bpiterate`. Since the other apply functions depend on these two functions, they will also inherit the...

For @mtmorgan 's comment, I think if we know the task evaluation time in advance, we can provide a customized balancer to reach the optimal performance. It is not very...

I made a mistake in my previous comment. If we have 10 tasks and 3 workers, the actual task sizes are 4, 4, 2. I think this is better than...

Hello Martin, I wonder if you can merge this pull request. It looks like we have some new feature requests these days.

I think there are some reasons that I did not touch `bpmapply` when I was reconstructing these `apply` functions, but I'm not exactly sure why... Maybe error handling? I need...