Displaying 20 results from an estimated 114 matches for "clu".
Did you mean:
cl
2018 Mar 14
2
clusterApply arguments
Hi!
I recognized that the argument matching of clusterApply (and therefore parLapply) goes wrong when one of the arguments of the function is called "c". In this case, the argument "c" is used as cluster and the functions give the following error message "Error in checkCluster(cl) : not a valid cluster".
Of course, &q...
2018 Mar 15
2
clusterApply arguments
Thank you for your answer!
I agree with you except for the 3 (Error) example and
I realize now I should have started with that in the explanation.
>From my point of view
parLapply(cl = clu, X = 1:2, fun = fun, c = 1)
shouldn't give an error.
This could be easily avoided by using all the argument
names in the custerApply call of parLapply which means changing,
parLapply <- function(cl = NULL, X, fun, ...) {
cl <- defaultCluster(cl)
do.call(c, clusterApply(cl, x =...
2018 Mar 15
1
clusterApply arguments
...18 at 3:39 AM, <FlorianSchwendinger at gmx.at> wrote:
>> Thank you for your answer!
>> I agree with you except for the 3 (Error) example and
>> I realize now I should have started with that in the explanation.
>>
>> From my point of view
>> parLapply(cl = clu, X = 1:2, fun = fun, c = 1)
>> shouldn't give an error.
>>
>> This could be easily avoided by using all the argument
>> names in the custerApply call of parLapply which means changing,
>>
>> parLapply <- function(cl = NULL, X, fun, ...) {
>> cl...
2018 Mar 15
0
clusterApply arguments
On Thu, Mar 15, 2018 at 3:39 AM, <FlorianSchwendinger at gmx.at> wrote:
> Thank you for your answer!
> I agree with you except for the 3 (Error) example and
> I realize now I should have started with that in the explanation.
>
> From my point of view
> parLapply(cl = clu, X = 1:2, fun = fun, c = 1)
> shouldn't give an error.
>
> This could be easily avoided by using all the argument
> names in the custerApply call of parLapply which means changing,
>
> parLapply <- function(cl = NULL, X, fun, ...) {
> cl <- defaultCluster(cl)
>...
2018 Mar 14
0
clusterApply arguments
This is nothing specific to parallel::clusterApply() per se. It is the
default behavior of R where it allows for partial argument names. I
don't think there's much that can be done here except always using
fully named arguments to the "apply" function itself as you show.
You can "alert" yourself when there'...
2009 Jun 11
3
deSolve question
...,
Qpa = 1.0,
Qsp = 1.0,
Var = 7.0,
Vve = 14.1,
Vgi = 12.4,
Vlu = 1.3,
Vbr = 1.3,
Vh = 1.2,
Vli = 12.4,
Vk = 2.2,
Vm = 140.0,
Vsk = 49.0,
Vad = 11.2,
Vpa = 1.0,
Vsp = 1.0
)
Fun_ODE <- function(t,y, pars){
with (as.list(c(y, pars)), {
It <- dose/doseduration
Car <- Aar/Var
Cve <- Ave/Vve
Clu <- Alu/Vlu
Cli <- Ali/Vli
Cbr <- Abr/Vbr
Ch <- Ah/Vh
Cpa <- Apa/Vpa
Csp <- Asp/Vsp
Cgi <- Agi/Vgi
Ck <- Ak/Vk
Cm <- Am/Vm
Cad <- Aad/Vad
Csk <- Ask/Vsk
Kpbbr <- s*fp*Kpfbr
Kpbli <- s*fp*Kpfli
Kpbh <- s*fp*Kpfh
Kpbpa <- s*fp*Kpfpa
Kpbsp <- s*fp*Kpfsp...
2005 Dec 22
1
Problems with passing ... to a function
...a look at the function below that
shows a problem and tell me what I am missing. As you can see, the "blocks"
argument is passed corectly, while "m" is not.
Best,
Ales Ziberna
opt.par.new<-function(
#function for optimizig partition in blockmodeling
M, #matrix
clu, #initial partition
maxiter=50, #maximum number of iterations
trace.iter=FALSE, #save a result of each iteration or only the best
(minimal error)
switch.names=is.null(BLOCKS), #should partitions that only differ in group
names be considert equal (is c(1,1,2)==c(2,2,1))
save.initial.param=TRUE...
2008 Jan 23
4
Synchronous scrub?
...a mirror comprising of a smaller disk and a subset of a larger disk. The other pool is the remainder of the larger disk.
I see no documentation mentioning how to scrub, then wait-until-completed. I''m happy to be pointed at any such documentation. I''m also happy to be otherwise clued-in if no such documentation exists, or if no such feature exists.
Thanks!
Dan McD.
This message posted from opensolaris.org
2010 Dec 03
1
Passing par()-parameters to many plot()s in a function
...into a LaTeX-Presentation-slide, so the outer
margin should be removed (this is the way to do it, right?):
I am having trouble finding out where to put the par command(s). Is one
enough or should I put them before and after /every/ plot() command?
This is how I tried to do it (without success):
clu <- function(x,k=3){
cat("pwd: ",getwd(),"\n")
pdf(file="img%03d.pdf",onefile=FALSE)
op <- par(oma=c(0,0,0,0))
# more lines, 10 plot() commands, etc
par(op)
return(stuff)
}
--
alexx at alexx-fett:~$ vi .emacs
1999 Jun 10
1
NEWsamBIE
...ver and reports
that "The Computer or sharename can not be found".
Regarding the 98 machine, I added the entry into the registry for clear
password, but that did not effect change.
The NT machine won't even find the Samba server.
Question 1: Does the latest version (as of 6-9-99) include encrypted
password for the newer Win clients?
Question 2: Why does my NT box not even see the Samba server. It only seems
to show other NT boxes and not the Win9x boxes, which seems like a fairly
large clue to someone clued in.
Any help would be greatly appreciated.
Regards,
TR.a
2020 Jul 17
3
[FileCheck] RFC: Add support for line anchors.
Hello,
I was wondering about extending FileCheck to enable creating line
anchors. These are numeric variables that hold the value of the line
number that where they were defined.
The motivation for this comes from test cases using clang-based
diagnostics which often include notes attached to source locations in
different parts of the file. In order to test for the correct location
of the note, the line number has to be written explicitly or as an,
often large, offset to the current line. This harms both readability
and maintainability. Using this new system one coul...
2006 Mar 13
1
Building help pages
...g/Updating help pages for package 'blockmodeling'
Formats: text html latex example chm
Pajek text html latex
REGE text html latex example chm
check.these.par text html latex example
clu text html latex example
crit.fun text html latex example
find.m text html latex
formatA text html latex example
fun.by.blocks text...
2005 May 07
3
passwordless ssh
Hi,
I am just migrating to Centos from fedora core 3.
I have 3 boxes involved here:
Box A --Fedora 3 (doing the dns, http, sendmail serving duties)
Box B --CentOS
Box C --CentOS
I used to run root passwordless ssh both ways from boxes A and B mainly
set up to keep the 2 boxes in sync w/rsync ... these 2 boxes normally
ran one being the slave and the other being the master...the master did
all
2010 Jan 04
1
[LLVMdev] ASM output with JIT / codegen barriers
...ng.
Side note: I regret greatly that I didn't know enough of the
sequential consistency concerns here to address them more fully when I
was working on this. =/ Even explicit fencing has subtle problems with
it as currently specified. Is this causing problems for people (other
than jyasskin who clued me in on the whole matter)?
2015 Jul 17
3
[Bug 3099] Please parallelize filesystem scan
https://bugzilla.samba.org/show_bug.cgi?id=3099
--- Comment #8 from Chip Schweiss <chip at innovates.com> ---
I would argue that optionally all directory scanning should be made parallel.
Modern file systems perform best when request queues are kept full. The
current mode of rsync scanning directories does nothing to take advantage of
this.
I currently use scripts to split a couple
2017 Mar 03
2
How do you exclude a directory that is a symlink?
Considering you cant INCLUDE a directory that is a symlink... which would
be really handy right now for me to resolve a mapping of 103 -> meaningful_name
for backups, instead im resorting to temporary bind mounts of 103 onto
meaningful_name, and when the bind mount isnt there, the --del is emptying
meaningful_name accide...
2012 Feb 10
1
Out of date instructions to build R using MKL
...onsequence, the instructions for dynamic linking no longer work
with the last version (2011-sp1). This is also the case of what is
explained on several sites like [3] or [4]. The manual's instructions to
link statically to MKL still work fine, though.
I'm merely signaling this fact to more clued people, since I've not been
able to get R to dynamically link to MKL. I'm always getting this notice
during ./configure:
> checking whether double complex BLAS can be used... no
Anyways, one of the problems is also that it's no longer possible to
make libRblas.so and libRlapack.so...
2009 Dec 27
7
[osol-help] zfs destroy stalls, need to hard reboot
...ed this, as we create and destroy large ZFS filesystems very
frequently.
So it seems the original issue I reported many months back has
actually gained some new negative impacts :(
I''ll try to escalate this with my Sun support contract, but Sun
support still isn''t very familiar/clued in about OpenSolaris, so I
doubt I will get very far.
Cross posting to ZFS-discuss also, as other may have seen this and
know of a solution/workaround.
--
Brent Jones
brent at servuhome.net
2015 Jul 17
0
[Bug 3099] Please parallelize filesystem scan
...list.
> >To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
> >Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html
>
>--
>Ken Chase - ken at heavycomputing.ca skype:kenchase23 Toronto Canada
>Heavy Computing - Clued bandwidth, colocation and managed linux VPS @151 Front St. W.
>
>--
>Please use reply-all for most replies to avoid omitting the mailing list.
>To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
>Before posting, read: http://www.catb.org/~esr...
2004 Aug 06
1
Ices issues
...ne at 22khz mono
quality -1 and the other at 44.1 stereo quality 0. I was also saving the
44.1 stream to a file.
My main concern is that it looks like ices was leaking memory. I heard my
noisy removable hard drive (which has the swap and root FS on it) start to
be accessed more than usual, which clued me into this. Here's the
situation after the broadcast had been going for about 2 hours:
root 9247 0.1 66.3 45476 20168 pts/0 S 14:53 0:11 [ices]
root 9248 0.0 66.3 45476 20168 pts/0 S 14:53 0:00 [ices]
root 9249 0.0 66.3 45476 20168 pts/0 S 14:53 0:00...