Skip to content

Commit

Permalink
tag 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mschubert committed Nov 26, 2017
1 parent e9798d7 commit 5c8531f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
* 0.8.1
* Fix performance issues for a high number of function calls (#56)
* Fix bug where multicore workers were not shut down properly (#58)
* Fix default templates for SGE, LSF and SLURM (misplaced quote)

* 0.8.0
* Templates changed: `clustermq:::worker` now takes only master as argument
* Fix a bug where copies of `common_data` are collected by gc too slowly (#19)
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: clustermq
Title: Evaluate Function Calls on HPC Schedulers (LSF, SGE, SLURM)
Version: 0.8.0
Version: 0.8.1
Author: Michael Schubert <mschu.dev@gmail.com>
Maintainer: Michael Schubert <mschu.dev@gmail.com>
Description: Evaluate arbitrary function calls using workers on HPC schedulers
Expand Down
2 changes: 1 addition & 1 deletion R/qsys_multicore.r
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ MULTICORE = R6::R6Class("MULTICORE",

cmd = quote(clustermq:::worker(private$master))
for (i in seq_len(n_jobs)) {
p = parallel::mcparallel(cmd, detached=TRUE)
p = parallel::mcparallel(cmd, silent=TRUE, detached=TRUE)
private$pids = c(private$pids, list(p$pid))
}
},
Expand Down

0 comments on commit 5c8531f

Please sign in to comment.