# set up the model for the ma2 example
data(ma2)
m <- newModel(fnSim = ma2_sim, fnSum = ma2_sum, simArgs = ma2$sim_args,
theta0 = ma2$start, fnLogPrior = ma2_prior, verbose = FALSE)
validObject(m)
# benchmark the serial and vectorised simulation function (require the rbenchmark package)
m1 <- newModel(fnSim = ma2_sim, fnSum = ma2_sum, simArgs = ma2$sim_args,
theta0 = ma2$start, fnLogPrior = ma2_prior)
m2 <- newModel(fnSimVec = ma2_sim_vec, fnSum = ma2_sum, simArgs = ma2$sim_args,
theta0 = ma2$start, fnLogPrior = ma2_prior)
require("rbenchmark")
# \dontshow{
benchmark(serial = simulation(m1, n = 50, theta = c(0.6, 0.2)),
vectorised = simulation(m2, n = 50, theta = c(0.6, 0.2)))
# }
if (FALSE) {
benchmark(serial = simulation(m1, n = 1000, theta = c(0.6, 0.2)),
vectorised = simulation(m2, n = 1000, theta = c(0.6, 0.2)))
}
Run the code above in your browser using DataLab