Skip to content

Commit f5cf0d0

Browse files
committed
no idea
1 parent 95358a6 commit f5cf0d0

31 files changed

+70
-50
lines changed

ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
2015-11-01: Ver. 0.1-8
1+
2015-11-01: Ver. 0.1-7
22
* Change SPMD.CT$* to .pbd_env$SPMD.CT$*.
33

44
2014-06-21: Ver. 0.1-7

DESCRIPTION

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
Package: pmclust
22
Version: 0.1-7
3-
Date: 2014-05-24
3+
Date: 2016-06-07
44
Title: Parallel Model-Based Clustering
55
Authors@R: c(person("Wei-Chen", "Chen", role = c("aut", "cre"), email =
66
"[email protected]"), person("George", "Ostrouchov", role = "aut"))
7-
Depends: R (>= 3.0.0), methods, rlecuyer, pbdMPI (>= 0.2-3), MASS,
8-
pbdSLAP (>= 0.1-9), pbdBASE (>= 0.3-0), pbdDMAT (>= 0.3-0)
7+
Depends: R (>= 3.0.0), pbdMPI (>= 0.3-1), pbdBASE (>= 0.4-3), pbdDMAT
8+
(>= 0.4-0)
9+
Imports: methods, MASS
910
Enhances: MixSim
1011
LazyLoad: yes
1112
LazyData: yes
@@ -25,8 +26,8 @@ URL: http://r-pbd.org/
2526
BugReports: http://group.r-pbd.org/
2627
MailingList: Please send questions and comments regarding pbdR to
2728
28-
Packaged: 2015-11-01 20:15:02 UTC; snoweye
29+
NeedsCompilation: yes
30+
Packaged: 2016-01-07 06:47:13 UTC; snoweye
2931
Author: Wei-Chen Chen [aut, cre],
3032
George Ostrouchov [aut]
3133
Maintainer: Wei-Chen Chen <[email protected]>
32-
NeedsCompilation: yes

NAMESPACE

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
useDynLib(pmclust)
22

3-
import(methods, rlecuyer, pbdMPI, MASS, pbdSLAP, pbdBASE, pbdDMAT)
3+
import(methods, MASS, pbdBASE, pbdDMAT)
4+
importFrom(pbdMPI,spmd.allgather.integer)
5+
importFrom(pbdMPI,spmd.allgather.object)
6+
importFrom(pbdMPI,spmd.allreduce.integer)
7+
importFrom(pbdMPI,spmd.allreduce.double)
8+
importFrom(pbdMPI,spmd.bcast.integer)
9+
importFrom(pbdMPI,spmd.bcast.object)
10+
importFrom(pbdMPI,spmd.comm.rank)
11+
importFrom(pbdMPI,spmd.comm.size)
12+
importFrom(pbdMPI,spmd.isend.double)
13+
importFrom(pbdMPI,spmd.recv.double)
14+
importFrom(pbdMPI,spmd.wait)
15+
importFrom(pbdMPI,comm.all)
16+
importFrom(pbdMPI,comm.any)
17+
importFrom(pbdMPI,comm.cat)
18+
importFrom(pbdMPI,comm.size)
19+
importFrom(pbdMPI,comm.stop)
20+
importFrom(pbdMPI,get.jid)
421

522
# exportPattern("^[[:alpha:]]+")
623
# exportPattern("^[\\.]")

R/01_as_dmat.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Convert X.spmd to X.dmat
22

3-
as.dmat <- function(X.spmd, bldim = pbdDMAT::.BLDIM, ICTXT = pbdDMAT::.ICTXT,
3+
as.dmat <- function(X.spmd, bldim = .pbd_env$BLDIM, ICTXT = .pbd_env$ICTXT,
44
comm = .pbd_env$SPMD.CT$comm){
55
X.spmd <- load.balance(X.spmd, comm = comm)
66

demo/dmat_em.r

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Setup mpi environment.
2-
library(pbdDMAT, quietly = TRUE)
3-
library(pmclust, quietly = TRUE)
2+
suppressMessages(library(pbdDMAT, quietly = TRUE))
3+
suppressMessages(library(pmclust, quietly = TRUE))
44
init.grid()
55
comm.set.seed(123, diff = TRUE)
66

demo/dmat_kmeans.r

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Setup mpi environment.
2-
library(pbdDMAT, quietly = TRUE)
3-
library(pmclust, quietly = TRUE)
2+
suppressMessages(library(pbdDMAT, quietly = TRUE))
3+
suppressMessages(library(pmclust, quietly = TRUE))
44
init.grid()
55
comm.set.seed(123, diff = TRUE)
66

demo/ex_MixSim.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### Setup environment.
2-
library(pmclust, quietly = TRUE)
2+
suppressMessages(library(pmclust, quietly = TRUE))
33
comm.set.seed(123, diff = TRUE)
44

55
### Generate an example data.

demo/ex_aecm.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### Setup mpi environment.
2-
library(pmclust, quietly = TRUE)
2+
suppressMessages(library(pmclust, quietly = TRUE))
33
comm.set.seed(123, diff = TRUE)
44

55
### Generate an example data.

demo/ex_apecm.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### Setup mpi environment.
2-
library(pmclust, quietly = TRUE)
2+
suppressMessages(library(pmclust, quietly = TRUE))
33
comm.set.seed(123, diff = TRUE)
44

55
### Generate an example data.

demo/ex_apecma.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### Setup mpi environment.
2-
library(pmclust, quietly = TRUE)
2+
suppressMessages(library(pmclust, quietly = TRUE))
33
comm.set.seed(123, diff = TRUE)
44

55
### Generate an example data.

0 commit comments

Comments
 (0)