-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathNAMESPACE
77 lines (64 loc) · 1.45 KB
/
NAMESPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
useDynLib(pmclust)
import(methods, MASS)
importFrom(stats,rnorm)
importFrom(pbdMPI,spmd.allgather.integer)
importFrom(pbdMPI,spmd.allgather.object)
importFrom(pbdMPI,spmd.allreduce.integer)
importFrom(pbdMPI,spmd.allreduce.double)
importFrom(pbdMPI,spmd.bcast.integer)
importFrom(pbdMPI,spmd.bcast.object)
importFrom(pbdMPI,spmd.comm.rank)
importFrom(pbdMPI,spmd.comm.size)
importFrom(pbdMPI,spmd.isend.double)
importFrom(pbdMPI,spmd.recv.double)
importFrom(pbdMPI,spmd.wait)
importFrom(pbdMPI,comm.all)
importFrom(pbdMPI,comm.any)
importFrom(pbdMPI,comm.cat)
importFrom(pbdMPI,comm.size)
importFrom(pbdMPI,comm.stop)
importFrom(pbdMPI,get.jid)
# exportPattern("^[[:alpha:]]+")
# exportPattern("^[\\.]")
export(
### General functions.
"pmclust",
"pmclust.reduceK",
"pkmeans",
### Example functions in SPMD.
"generate.basic",
"generate.MixSim",
"assign.N.sample",
"mb.print",
### SPMD functions.
### Readme function.
"readme",
### Global objects.
"set.global",
### Initial functions.
"initial.em",
"initial.RndEM",
"initial.center",
### EM methods.
"em.step",
"aecm.step",
"apecm.step",
"apecma.step",
"em.update.class",
### EM utility functions.
"em.onestep",
"e.step",
"m.step",
"indep.logL",
### K-means.
"kmeans.step",
"kmeans.update.class",
### Utility functions.
"get.N.CLASS",
"get.CLASS",
### GBD functions.
### Global objects.
"set.global.gbd"
)
S3method(print, pmclust)
S3method(print, pkmeans)