Skip to content

Commit

Permalink
version 1.51
Browse files Browse the repository at this point in the history
  • Loading branch information
Jochen Knaus authored and gaborcsardi committed Jun 19, 2008
0 parents commit c007f99
Show file tree
Hide file tree
Showing 19 changed files with 3,826 additions and 0 deletions.
16 changes: 16 additions & 0 deletions DESCRIPTION
@@ -0,0 +1,16 @@
Package: snowfall
Type: Package
Title: snowfall
Version: 1.51
Date: 2008-06-19
Author: Jochen Knaus
Maintainer: Jochen Knaus <jo@imbi.uni-freiburg.de>
Description: Toplevel wrapper around snow for easier development of
parallel R programs.
All functions work in sequential mode, too, if no cluster is present.
Package is also designed as connector to the cluster management tool
sfCluster, but can also used without it.
Suggests: snow, Rmpi
Depends:
License: GPL
Packaged: Thu Jun 19 10:26:05 2008; jo
44 changes: 44 additions & 0 deletions NAMESPACE
@@ -0,0 +1,44 @@
export(
"sfInit",
"sfStop",

"sfParallel",
"sfNodes",
"sfCpus",
"sfGetCluster",
"sfSession",
"sfSetMaxCPUs",

"sfLibrary",
"sfSource",
"sfExport",
"sfExportAll",
"sfRemove",
"sfRemoveAll",
"sfCat",

## Snow wrappers
"sfClusterMap", ## Currently not implemented.
"sfClusterApply",
"sfClusterApplyLB",

## snowfall addition: intermediate save of results (with auto-restore)
"sfClusterApplySR",
"sfRestore",

"sfLapply",
"sfSapply",
"sfApply",
"sfRapply", ## Currently not implemented.
"sfCapply", ## Currently not implemented.
"sfMM",

"sfClusterSplit",
"sfClusterCall",
"sfClusterEval", "sfClusterEvalQ",
"sfClusterSetupRNG",
"sfClusterSetupRNGstream",
"sfClusterSetupSPRNG",
## Unit tests
"sfTest"
)

0 comments on commit c007f99

Please sign in to comment.