Skip to content

Commit

Permalink
version 1.83
Browse files Browse the repository at this point in the history
  • Loading branch information
Jochen Knaus authored and gaborcsardi committed Mar 5, 2010
1 parent e9fd96f commit 0966757
Show file tree
Hide file tree
Showing 15 changed files with 1,281 additions and 298 deletions.
19 changes: 10 additions & 9 deletions DESCRIPTION
@@ -1,18 +1,19 @@
Package: snowfall
Type: Package
Title: Easier cluster computing (based on snow).
Version: 1.70
Date: 2008-12-23
Version: 1.83
Date: 2010-03-05
Author: Jochen Knaus
Maintainer: Jochen Knaus <jo@imbi.uni-freiburg.de>
Description: Usability wrapper around snow for easier development of
parallel R programs. This package offers e.g. extended error checks,
and additional functions.
All functions work in sequential mode, too, if no cluster is present
or wished.
Package is also designed as connector to the cluster management tool
sfCluster, but can also used without it.
parallel R programs. This package offers e.g. extended error
checks, and additional functions. All functions work in
sequential mode, too, if no cluster is present or wished.
Package is also designed as connector to the cluster management
tool sfCluster, but can also used without it.
Depends: snow
Suggests: Rmpi
License: GPL
Packaged: Tue Dec 23 13:13:37 2008; jo
Packaged: 2010-03-04 10:31:30 UTC; jo
Repository: CRAN
Date/Publication: 2010-03-04 14:00:47
1 change: 1 addition & 0 deletions NAMESPACE
Expand Up @@ -6,6 +6,7 @@ export(
"sfNodes",
"sfCpus",
"sfType",
"sfIsRunning", ## New 1.83
"sfGetCluster",
"sfSession",
"sfSocketHosts", ## New 1.6
Expand Down
35 changes: 35 additions & 0 deletions NEWS
@@ -0,0 +1,35 @@
Changes in snowfall 1.83
===========================
o sfIsRunning: new function giving a logical is sfInit() was called or
not. Needed, as all other snowfall functions implicitely call sfInit()
if it was not called.

Changes in snowfall 1.82
===========================
o Internal refactorings.

Changes in snowfall 1.81
===========================
o Change in sfInit() MPI startup so sfCluster can run with
snow > 0.3 now.
o sfExport now also works in sequential mode (writing to
global environment). This prevented sequential execution
in some cases.

Changes in snowfall 1.80
===========================
o snowfall passes packages checks of R 2.10.1 without warning
or error. Internal state is now only saved in the namespace
itself (thanks to Uwe Ligges for the tipp).
o sfExport can now also export objects in a specific namespace
(argument 'namespace')
o sfExport: behavior in error case manageable (stopOnError)
o sfExport: smaller bugfixes.
o sfRemoveAll can now also remove hidden names (argument 'hidden')
o sfRemoveAll is more robust now (some minor bugfixes, more checks)
o sfRemoveAll bugfix for multiple removals (thanks to Greggory Jefferis)
o Bugfix on exception list on sfExportAll
o Refactorings in sfTest()
o snowfall now has a NEWS doc ;)
o No warning on Mac OS because of default Mac-R command line arg 'gui'
(thanks to Michael Siegel).

0 comments on commit 0966757

Please sign in to comment.