ClaraClusteringMicrobenchmark {RHPCBenchmark} | R Documentation |
ClusteringMicrobenchmark
conducts a single performance trial
of the cluster::clara function with the data given in the
kernelParameters
parameter.
ClaraClusteringMicrobenchmark(benchmarkParameters, kernelParameters)
benchmarkParameters |
an object of type
|
kernelParameters |
a list of data objects to be used as input to the clustering function |
a vector containing the user, system, and elapsed performance timings in that order
## Not run:
# Allocate input to the pam clustering microbenchmark
microbenchmarks <- GetClusteringExampleMicrobenchmarks()
kernelParameters <- ClusteringAllocator(microbenchmarks[["clara_cluster_3_3_1000"]])
# Execute the microbenchmark
timings <- ClaraClusteringMicrobenchmark(
microbenchmarks[["clara_cluster_3_3_1000"]], kernelParameters)
## End(Not run)