[R] Working with R in a multi-processor machine.

2006-01-10 Thread Aitor Mata Conde
Hi everyone!! This is my first message to the list, so I hope not to disturb anyone if the subject of my message has been already treated. The question is that I have a tool, a GUI made with Java, connected to R using Rserve, and I'd like to get R and Rserve in a multi-processor machine. Now,

Re: [R] Working with R in a multi-processor machine.

2006-01-10 Thread Seth Falcon
On 10 Jan 2006, [EMAIL PROTECTED] wrote: Hi everyone!! This is my first message to the list, so I hope not to disturb anyone if the subject of my message has been already treated. The question is that I have a tool, a GUI made with Java, connected to R using Rserve, and I'd like to get R

[R] Working with R in a multi-processor machine.

2006-01-10 Thread Aitor Mata Conde
Hi everyone!! This is my first message to the list, so I hope not to disturb anyone if the subject of my message has been already treated. The question is that I have a tool, a GUI made with Java, connected to R using Rserve, and I'd like to get R and Rserve in a multi-processor machine.

Re: [R] Working with R in a multi-processor machine.

2006-01-10 Thread Martin Morgan
R is not thread safe, so you must not use it in a re-entrant way. If you want to exploit multiple processors, you can write code (e.g., in C) called from R (e.g., through .Call or .C) that performs parallel/threaded computations in a thread-safe way (e.g., without calling back into R). Another

Re: [R] Working with R in a multi-processor machine.

2006-01-10 Thread Sean Davis
On 1/10/06 11:41 AM, Seth Falcon [EMAIL PROTECTED] wrote: On 10 Jan 2006, [EMAIL PROTECTED] wrote: Hi everyone!! This is my first message to the list, so I hope not to disturb anyone if the subject of my message has been already treated. The question is that I have a tool, a GUI