Using Rcpp within parallel code via snow to make a cluster
Think it through — what does inline do? It creates a C/C++ function for you, then compiles and links it into a dynamically-loadable shared library. Where does that one sit? In R’s temp directory. So you tried the right thing by shipping the R frontend calling that shared library to the other process (which has … Read more