similar to: RE: [openMosix-general] openMosix and R: File I/O issues?

Displaying 20 results from an estimated 4000 matches similar to: "RE: [openMosix-general] openMosix and R: File I/O issues?"

2004 Apr 21
0
Re: [openMosix-general] openMosix and R: File I/O issues?
Memory could be an issue. The three nodes in the cluster we are using only have 512 MB. The machines are otherwise identical in terms of hardware. They are dual PIIIs (purchased from Penguin Computing in 2001). (If you need specs on motherboard etc, we can get that info together.) The installed operating system is RHEL-3, standard workstation with some additional libraries (e.g., all of the
2004 Apr 20
2
openMosix and R: File I/O issues?
Hi there, We're attempting to run an LVQ analysis over a cluster of machines via R and openMosix. R spawns several child processes simply by writing commands to several files and using system() to start a slave process. The processes migrate perfectly, and often finish with no reported errors, writing their results into respective files for the parent process to piece together.
2004 Apr 29
1
openMosix vs SNOW: redhat kernel causing slowdown?
Hi there, We're currently attempting to explain a slowdown of an LVQ-type parallel analysis we're working on. We are benchmarking our analysis running over openMosix against the same running via SNOW for R. Both perform similarly on small datasets, but on large datasets SNOW drastically outperforms openMosix. However, these results are achieve running SNOW on the default RedHat
2005 Feb 12
3
New to Xen: Can Xen Work with OpenMosix?
Apologies if this is the wrong place to post this question. In that event, please point me in the right direction. My question is whether or not I can use Xen with OpenMosix. The upshot of what I''m attempting to do is this: 1. Build a two to four node cluster using OpenMosix for "raw horsepower" 2. Use Xen on the OpenMosix cluster to divide the "raw horsepower" any
2003 Nov 21
1
Using log() on an openMosix cluster
Hi all, I was hoping to get some advice about a problem that I realize will be difficult to reproduce for some people. I'm running R 1.7.1 on an openMosix (Linux) cluster and have been experiencing some odd slow-downs. If anyone has experience with such a setup (or a similar one) I'd appreciate any help. Here's a simplified version of the problem. I'm trying to run the
2005 Nov 14
0
OpenMosix
Anyone have any experience running OpenMosix on CentOS 3? Are you using a kernel custom built or from somewhere? Any maintenance headaches wrt kernel updates? Thanks in advance. -Alan -- Alan Sparks, UNIX/Linux Systems Integration and Administration <asparks at doublesparks.net>
2002 Aug 06
0
pipe and binary i/o (on Linux)
Thanks very much, Professor Ripley. Reid Huntsinger -----Original Message----- From: ripley at stats.ox.ac.uk [mailto:ripley at stats.ox.ac.uk] Sent: Tuesday, August 06, 2002 3:00 AM To: Huntsinger, Reid Cc: r-help at stat.math.ethz.ch Subject: Re: [R] pipe and binary i/o (on Linux) On Mon, 5 Aug 2002 ripley at stats.ox.ac.uk wrote: > pipe predates readBin, and no one has seen a
2002 Apr 23
2
Bug in read.table() (PR#1477)
The following command, temp <- read.table("c:/rfr/r/test.txt") reads the text file "test.txt", which contains the following lines: 21437 21438 21419-2 21420-2 21421-2 21422-2 and produces the following result: > temp V1 1 21437+0i 2 21438+0i 3 0+0i 4 0+0i 5 0+0i 6 0+0i > These "numbers" are actually sample ID's, and I
2002 Jul 02
3
mean and array
In general this is what "apply" does. In your example you could use rowMeans(ar) as well, I think. Reid Huntsinger -----Original Message----- From: Olivier Martin [mailto:olivier.martin at inrialpes.fr] Sent: Tuesday, July 02, 2002 10:55 AM To: r-help Subject: [R] mean and array Hi all, I have an array, one say ar, with 3 dimensions. dim(ar) >200 3 4 I would like to
2002 Mar 26
1
comparing row by row in matrix
I don't know the Russell-Rao coefficient but maybe this will help: You can compute the number of times y and x are both 1 (that's what your function f does) by counting 1s in y*x, i.e., sum(y*x), aka t(y)%*%x. Ordinary matrix multiplication does this row-by-column, so if M and N are two binary matrices, M%*%t(N) will have (i,j) entry equal to the count of 1s in common to row i of M and
2003 Feb 28
0
[despammed] RE: multidimensional function fitting
You can use R objects, such as the return from gam, and the predict.gam function, from C. See the R extensions manual. Reid Huntsinger -----Original Message----- From: RenE J.V. Bertin [mailto:rjvbertin at despammed.com] Sent: Thursday, February 27, 2003 3:42 PM To: Wiener, Matthew Cc: r-help at stat.math.ethz.ch Subject: Re: [despammed] RE: [R] multidimensional function fitting On Thu, 27
2002 Aug 05
1
pipe and binary i/o
I often want to use "pipe" with "readBin" to read (binary) data from the standard output of a Perl or C program. For that I need "pipe" to work with the "open='rb'" option. It never worked for me, and after a look at the connections.c file, I see that in "pipe_open" the mode gets passed directly to "popen" (I'm using Linux on
2003 Apr 01
3
* on openmosix
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/gif Size: 2061 bytes Desc: not available Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20030402/72ae3ce0/attachment.gif
2006 Jun 24
0
Re: Xen on openmosix/openssi..
Forgive me if I sent this twice, I think I hit the "send" button by mistake. --- Bj�rn Tore Svinningen <bt@erter.org> wrote: > I''ve seen your post on xen''s forum about running Xen ontop of openssi. > > Have you got''en any further on this idea ? Had the same idea myselves, > but it seems all posts I find end nowhere. Hm, I thought this
2005 Feb 07
5
R on Beowulf cluster?
Dear R-help, Has anyone tried running R on a Beowulf-type cluster? I can get R to run in batch (using R CMD BATCH) on a cluster, but am wondering if it is possible to get an interactive R session on a compute node. Right now, if I run: beorun --nolocal R I just get the R start-up message and back to the shell prompt. If I try bpsh 0 R I can get R started (but the R prompt does not
2002 Nov 07
1
language inconsistency puzzle (in the tradition of Bill V enables (Hi Bill) puzzle "what is x")
R allows you to dynamically extend a vector by assigning past the end. So if a has length 10, then assigning to a[11] creates also a[11] with value a2[11] NA. So a is now length 11, while a2 is still length 10. So the occurrence of a[11] has a different meaning on the assigned-to side than on the assigned-from side. E.g. >a <- rep(1,10) >b <- 11 >a2 <- a >a[b] <- a2[b]
2002 Jul 30
4
chisq.test, basic question
The cells are interpreted as counts, so by scaling you're analyzing a different experiment (one with fewer observations). So the chi-squared value will change (the terms (O-E)^2/E in the statistic scale linearly ignoring rounding and "Yates' continuity correction"). The chisq.test on the original data is a test of association. Conventionally you decide ahead of time on a
2005 Jan 25
0
Collapsing solution to the question discussed above: Re: multi-class classification using rpart
You could break your 3 class problem into several (2 or 3) 2 class problems, and then use Andy's suggestion (see the CART book). There are several ways to break the problem into 2 class problems, and several ways to combine the resulting classifiers. Tom Dietterich, Jerry Friedman, Trevor Hastie and Rob Tibshirani, among others, have articles on the question, in places like Annals of
2007 Nov 14
1
[PATCH] Remove pagesize parameter from vring_init/vring_size
The PAGE_SIZE constant should be used instead of taking an extra parameter. Moreover, once we use PAGE_SIZE, we can use PAGE_ALIGN() instead of having it open coded. I've only compile tested the lguest launcher as I'm on a 64-bit system but I've tested the virtio-pci device with KVM. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> diff --git
2007 Nov 14
1
[PATCH] Remove pagesize parameter from vring_init/vring_size
The PAGE_SIZE constant should be used instead of taking an extra parameter. Moreover, once we use PAGE_SIZE, we can use PAGE_ALIGN() instead of having it open coded. I've only compile tested the lguest launcher as I'm on a 64-bit system but I've tested the virtio-pci device with KVM. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> diff --git