forked from eddelbuettel/gcbd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NAMESPACE
55 lines (53 loc) · 1.37 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
importFrom("graphics", "legend", "matplot", "par")
importFrom("stats", "coef", "lm", "rnorm")
importFrom("DBI", "dbDriver", "dbConnect", "dbDisconnect", "dbGetQuery", "dbWriteTable")
importFrom("RSQLite", "dbBuildTableDefinition")
importFrom("lattice", "trellis.par.get", "trellis.par.set", "xyplot", "simpleKey", "dotplot")
importFrom("plyr", "ddply")
importFrom("reshape2", "melt", "melt.data.frame")
importFrom("Matrix", "lu")
export(
## benchmark.R
getMatrix,
matmultBenchmark,
matmultBenchmarkgputools,
qrBenchmark,
qrBenchmarkgputools,
svdBenchmark,
#svdBenchmarkgputools,
luBenchmark,
luBenchmarkgputools,
##
## utilities.R
requirements,
createDatabase,
databaseResult,
installAtlas,
installAtlas39,
installGoto,
installMKL,
purgeAtlas,
purgeAtlas39,
purgeGoto,
purgeMKL,
isPackageInstalled,
hasGputools,
getBenchmarkData,
##
## analysis.R
loglogAnalysis,
##
## figures.R
figure_LU_i7,
figure_LU_xeon,
figure_MatMult_i7,
figure_MatMult_xeon,
figure_QR_i7,
figure_QR_xeon,
figure_SVD_i7,
figure_SVD_xeon,
figure_LogLogIntercept,
figure_LogLogSlopes,
figure_LogLogLattice,
figure_Lattice
)