I installed R (64-bit) version 2.11.1 on Windows 7, as well as the doSMP and revoIPC packages from the "REVolution foreach windows" package for parallel processing. Then I loaded the doSMP library in R and received the following messages from R
> library(doSMP) Loading required package: revoIPC Error: package 'revoIPC' is not installed for 'arch=x64'
How to get around this problem? DoSMP seems to work with a 32-bit R distribution, but not with a 64-bit distribution.
I also tested the following program
------------------------------------------------------ require(doSMP) workers <- startWorkers(4)
And I received the following messages from R
> workers <- startWorkers(4) # My computer has 2 cores Error: could not find function "startWorkers" > registerDoSMP(workers) Error: could not find function "registerDoSMP"
Many thanks for your help.
Tony
source share