2
votes
1answer
45 views

Parallelize a function in R (not a loop!)

I want to parallelize a function called unparallelizedfnc. The funtion calls four other functions (that take a long time to compute) and stores the results. At the end the results are combined. ...
0
votes
1answer
29 views

Using all cores for R MASS::stepAIC process

I've been struggling to perform this sort of analysis and posted on the stats site about whether I was taking things in the right direction, but as I've been investigating I've also found that my ...
1
vote
1answer
28 views

Error handling within parApply (in R, using parallel package)

I am trying to troubleshoot the following message I get when trying to use the parApply function from the parallel package: Error in unserialize(node$con) : error reading from connection The ...
1
vote
1answer
43 views

How does snow distribute list elements to workers?

How many list elements are sent to each worker process when calling parLapply()? For example, let's say we have a list of 6 elements and 2 workers on a snow SOCK cluster. Does parLapply() sends two ...
1
vote
1answer
25 views

Running PLSR predictions parallel in R using foreach

Users, I am looking for a solution to "parallelize" my PLSR predictions in order to save pprocessing time. I was trying to use the "foreach" construct with "doPar" (cf. 2nd part of code below), but I ...
2
votes
1answer
40 views

Is there a limit on the number of slaves that R snow can create?

I'm trying to build a snow cluster with around 120 processes on 3 different hosts. These are AMD servers with 48 cores each. After building approx the first 90 slaves I get this error: cl = ...
0
votes
0answers
47 views

Calculating SVD using multiple cores in R

I want to run svd() in R on a large sparse matrix (17k x 2m), and I have access to a cluster. Is there a straightforward way to calculate SVD in R using multiple cores? The RScaLAPACK package ...
0
votes
2answers
41 views

Further subset data frame for embarrassingly parallel processing

I have an embarrassingly parallel problem that I am treating using the snowfall package and its function sfLapply. It works great except that I need a nicer way of splitting up my problem. My ...
5
votes
1answer
115 views

Parallelism in Julia. Features and Limitations

In their arXiv paper, the original authors of Julia mention the following: 2.14 Parallelism. Parallel execution is provided by a message-based multi-processing system implemented in Julia in ...
0
votes
0answers
43 views

Is it possible, in R parallel::mcparallel, to limit the number of cores used at any one time?

In R, the mcparallel() function in the parallel package forks off a new task to a worker each time it is called. If my machine has N (physical) cores, and I fork off 2N tasks, for example, then each ...
0
votes
1answer
47 views

stdout and stderr of parallel computation in R

I am using the package parallel to do computation. Here is a toy example: library(parallel) m = matrix(c(1,1,1,1,0.2,0.2,0.2,0.2), nrow=2) myFun = function(x) { if (any(x<0.5)) { write("less ...
0
votes
0answers
56 views

R %dopar% is slower than %do% [duplicate]

I'm trying to run a small test of %dopar% and it always comes out slower.. Here's some dummy code and output. I'm running this on win7x64 core i7-2600k... library(foreach) library(doSNOW) ...
1
vote
1answer
57 views

What can I do to avoid naming all functions using foreach

Hello I am using the %dopar% parallel functionality of the foreach package (parallel as the backend) I have a line of code like this exportedFn <- #STUFF exportedPkg <- #STUFF allDataT <- ...
0
votes
3answers
45 views

R large dataframe conversions in parallel

Essentially I've got a large dataframe: 10,000,000x900 (rows,columns) and I'm trying to convert the class of each column in parallel. The end result needs to be a data.frame Here's what I've got so ...
4
votes
5answers
219 views

Is there any way to break out of a foreach loop?

I am using the R package foreach() with %dopar% to do long (~days) calculations in parallel. I would like the ability to stop the entire set of calculations in the event that one of them produces an ...
4
votes
1answer
86 views

Does Rmpi require an active Internet connection?

I just installed Rmpi using this tutorial: http://www.stats.uwo.ca/faculty/yu/Rmpi/mac_os_x.htm on Mac OS-X Mountain Lion. I need Rmpi only for making use of all cores and not for deployment on a ...
2
votes
1answer
67 views

Speed-optimized loop through single cells of a RasterStack object

I'm working with two RasterStack objects, each one consisting of ten layers representing single time steps. # Mock data pred.rst.stck <- do.call("stack", lapply(seq(10), function(i) { pred.rst ...
1
vote
1answer
40 views

Why does sourcing a script within R's parallel functions fail?

I am using R's base parallel library where within a parLapply a script is sourced. In one case if I place the code inline, results are as expected. In another case if I replace the code with a call to ...
7
votes
3answers
147 views

Using R parallel to speed up bootstrap

I would like to speed up my bootstrap function, which works perfectly fine itself. I read that since R 2.14 there is a package called parallel, but I find it very hard for sb. with low knowledge of ...
0
votes
0answers
56 views

parellel R is slower than serial? [duplicate]

I am using R parallel package to do parallel computation on my laptop: > library(parallel) > x = matrix(rep(1,2000), nrow=2) > cl <- makeCluster(getOption("cl.cores", 8)) > ...
1
vote
1answer
22 views

BatchJobs code not submitting jobs (maybe)

Here is some test code: require(BatchJobs) f = function(i) {Sys.sleep(60)} reg <- makeRegistry(id="myreg") batchMap(reg, f, 1:100) submitJobs(reg, resources=list(memory=4*1024*1024, ...
0
votes
1answer
46 views

R packages for supervised learning that use multithreaded BLAS

What are some R packages for supervised learning that take advantage of multithreaded BLAS to do parallel computations (e.g., matrix multiplication)? If R is compiled with a multithreaded BLAS ...
0
votes
1answer
67 views

R seed-sedding not “setting”, results not reproducing

I've got a script that looks like this: #This is the master script. It runs all other scripts. rm(list=ls()) #Run data cleaing script source("datacleaning.R") set.seed(413) #Seed pre-selected as ...
-1
votes
1answer
45 views

Running two commands parallel to each other in R on windows

I have tried reading around on the net on using parallel computing in R. My problem is that I want to utilize all my cores on my PC, and after reading different ressources I am not sure I need ...
0
votes
1answer
52 views

mclapply additional arguments

I have created a function DevCstat(). It takes the arguments: indat, mod, Covar,txtMat, PatCovar. indat is a list, I would like to apply the function to each element of the list. mod, Covar, ...
1
vote
2answers
136 views

multicore on Linux does not use multiple CPUs

I am using R 2.14.0 64 bit on Linux. I went ahead and used the example described here. I am then running the example - library(doMC) registerDoMC() system.time({ r <- foreach(icount(trials), ...
3
votes
1answer
93 views

Computational Times with Multiple Cores in R

When running the code snippet below for a bootstrapping exercise in R (version 2.15) on a x86_64-redhat-linux-gnu machine with 64 cores the observed computational times seem to degrade after using ...
0
votes
1answer
74 views

Advice on plyr-ing this 'for' loop

Try as I might, I can't quite figure out how to get plyr to work. Would appreciate any help with this specific example, and bonus points for any explanations of why your example works. The data is ...
2
votes
2answers
85 views

Why doesn't the plyr package use my parallel backend?

I'm trying to use the parallel package in R for parallel operations rather than doSNOW since it's built-in and ostensibly the way the R Project wants things to go. I'm doing something wrong that I ...
2
votes
2answers
69 views

Is there a package for parallel matrix inversion in R

is there a package for matrix inversion in R using parallel computation? Thanks! Hello. I am having trouble installing the HiPLARb package, here is what I did: Download auto-installer script: ...
0
votes
1answer
97 views

multicore programmation : master/slave system using package `parallel`

This question does not have an answer in What is the easiest way to parallelize a vectorized function in R? as I am not asking for an easy way, but for an extra control on what the processes do and ...
7
votes
2answers
128 views

Parallelized optimization in R

I'm running R on linux box that has 8 multicore processors, and have an optimization problem I'd like to speed up by parallelizing the optimization routine itself. Importantly, this problem involves ...
0
votes
0answers
75 views

BatchJobs in R: serialization is too large to store in a raw vector

I am using the BatchJobs package. I have a list of data.table that I am trying to iterate over and submit jobs. However, i receive the following error message: batchMap(reg, function(dtb) ...
3
votes
3answers
89 views

What is the most robust way to append text to a single file from multiple connections

I have seen plenty of questions regarding writing to file, but I am wondering what is the most robust way to open a text file, append some data and then close it again when you are going to be writing ...
0
votes
1answer
74 views

transform a multiple normal loop into a parallel loop with foreach

how can i transform a normal loop into a parallel loop whith foreach package? i try to transform this code from vrtest package CvMexpb <- matrix(0,nrow=B,ncol=2) for(k in 1:B) ...
2
votes
1answer
125 views

Parallelization in R: %dopar% vs %do%. Why using a single core yields to better performance?

I'm experiencing a weird behaviour in my computer when distributing processes among its cores using doMC and foreach. Does someone knows why using single core I got better performance than using 2 ...
3
votes
1answer
99 views

In R, is there any way to share a variable between difference processes of R in the same machine?

My problem is that I have a large model, which is slow to load to memory. To test it on many samples, I need to run some C program to generating input features for model, then run R script to predict. ...
0
votes
2answers
135 views

Parallelising a for loop with R correctly

I've been working on a simple collection of functions for my supervisor that will do some simple initial genome scale stats, that is easy to do to give my team a quick indication as to future analyses ...
0
votes
0answers
50 views

apply family of functions and foreach/doMPI and HPCC with R

I'm going to be running a simulation package I've designed on a cluster and am looking to run it paralleled to speed things up. Talking to someone in my dept about this I need doMPI and foreach in R. ...
0
votes
2answers
38 views

tryCatch with a complicated function and plyr in R

I've got a complicated, long function that I'm using to do simulations. It can generate errors, mostly having to do with random vectors ending up with equal values with zero-variance, getting fed ...
1
vote
1answer
89 views

R doesn't reset the seed when “L'Ecuyer-CMRG” RNG is used?

I was doing some parallel simulations in R and I notice that the seed is not changed when the "L'Ecuyer-CMRG" rng is used. I was reading the book "Parallel R", and the option mc.set.seed = TRUE should ...
3
votes
2answers
555 views

Create a cluster of co-workers' Windows 7 PCs for parallel processing in R?

I am running the termstrc yield curve analysis package in R across 10 years of daily bond price data for 5 different countries. This is highly compute intensive, it takes 3200 seconds per country on a ...
1
vote
3answers
191 views

How can I specify options in makeCluster in parallel or snow

I am using parallel or snow packages on Windows, the makeCluster function can take a rscript argument to specify where Rscript is for it to be executed on workers. What if I want it to be executed why ...
0
votes
1answer
52 views

memory allocation error while using mclapply

it's the first i use mclapply to run parallel script on multiple process, but the problem that i've tried the script on my laptop and it worked very well and filled the dataframe correctly, but now ...
0
votes
2answers
100 views

Modifying Variables within a Foreach loop?

I'm trying build a parallel for-each loop which modifies two matrices. I create and initialize the matrices before starting the loop. Here is a dummy program which demonstrates how my code is supposed ...
2
votes
1answer
112 views

Parallel processing in R

I'm working with a custom random forest function that requires both a starting and ending point in a set of genomic data (about 56k columns). I'd like to split the column numbers into subgroups and ...
0
votes
1answer
76 views

append rows to dataframe using foreach package

I have a problem with appending values to a data frame using parallel processing. I have a function that will do some calculation and return a dataframe, including these calculation is a random ...
2
votes
1answer
112 views

data.table and parallel computing

Following this post: multicore and data.table in R, I was wondering if there was a way to use all cores when using data.table, typically doing calculations by groups could be parallelized. It seems ...
1
vote
1answer
187 views

parallel prediction with cforest/randomforest prediction (with doSNOW)

I'm trying to speed up the prediction of a test-dataset (n=35000) by splitting it up and letting R run on smaller chunks. (Also, partys cforest-prediction of 35k rows doesn't work as my RAM is not ...
2
votes
1answer
115 views

parallelize and speed up a R code

I've a code that works perfectly for my purpose (it reads some files with a specific pattern, read the matrix within each file and compute something using each filepair...the final output is a matrix ...

1 2 3 4