Displaying 20 results from an estimated 122 matches for "sara".
Did you mean:
para
2012 Aug 30
0
storage mode error question (R2winBUGS)
...,"GLMM_Poisson.txt",n.chains=nc,n.thin=nt,n.iter=ni,n.burnin=nb,
debug=TRUE,bugs.directory=bugs.dir,working.directory=getwd())
and this is the data;
win.data
$C
[1] 6 5 2 5 4 6 3 4 2 5 3 5 2 4 3 2 4 5 6 2 5 1 6 3 1 2 2 2 1 2 1 3 3 2 3
8 3 5 5 4 2 1 3
$n
[1] 43
$nsite
[1] Sara Sara Sara Sara Sara Sara Sara
Sara Sara
[10] Sara Sara Sara Cullen Cullen Cullen Sara
Sara Sara
[19] Sara Sara Harberton Harberton Harberton Harberton Tristen
Tristen Harberton
[28] Harberton Tristen Tristen Tristen...
2018 Oct 16
4
Problema de memoria de R
Buenas tardes,
Solicito por favor ayuda con este error:
Error: OutOfMemoryError (Java): Java heap space
Estoy trabajando con matrices de grandes dimensiones y el programa no logra completarse porque dice le falta memoria.
Gracias
[unnamed]
Sara Suarez Zapata
Estudiante en práctica - Unidad Gestion Bolsa de Energia.
Tel: (574) 380 61 18
Correo: sara.suarez en epm.com.co<mailto:sara.suarez en epm.com.co>
www.epm.com.co<http://www.epm.com.co/site/portals/Manuales/Firma_Correo/www.epm.com.co>
------------ próx...
2001 Nov 09
0
SAMBA Products to run with SARA
I am interested in running the SARA scanning product and it was indicated
that to run it effectively that certain SAMBA products should be obtained as
well (see email below)Could you let me know which products are needed for
running SARA, and if they can be freely obtained form the SAMBA site?
Thanks,
paul
relevant email:
-----Ori...
2013 Nov 03
3
[LLVMdev] loop vectorizer issue
...dependency
between every two consecutive iterations. So, how the loop vectorizer says
'we can vectorize this loop'?
for(int k=20;k<50;k++)
dataY[k] = dataY[k-1];
From: Henrique Santos [mailto:henrique.nazare.santos at gmail.com]
Sent: Sunday, November 03, 2013 4:28 PM
To: Sara Elshobaky
Cc: <llvmdev at cs.uiuc.edu>
Subject: Re: [LLVMdev] loop vectorizer issue
Notice that the code you provided, for globals and stack allocations, at
least,
is semantically equivalent to:
int a = d[19];
for(int k = 20; k < 50; k++)
dataY[k] = a;
Like so, the load you...
2011 May 12
3
lm and anova
Hi!
We have run a linear regression model with 3 explanatory variables and get the output below.
Does anyone know what type of test the anova model below does and why we get so different result in terms of significant variables by the two tables?
Thanks!
/Sara
> summary(model)
Call:
lm(formula = log(HOBU) ~ Vole1 + Volelag + Year)
Residuals:
Min 1Q Median 3Q Max
-0.757284 -0.166681 0.009478 0.181304 0.692916
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 80.041737 12.018726 6.660 1.40...
2006 Feb 08
2
Reference for R
Hello!
Could anyone please tell me how should I include R in a text section for
References?
Regards,
Sara Mouro
[[alternative HTML version deleted]]
2008 Nov 20
1
different ACF results
...plot, where Lags 1, 7, 8 and 9, are
those outside those envelopes?
Is there any correlation structure?
Which one might that be? AR1()?
Also, I have used the plot of the empirical ACF of the normalized
residuals, but it gives exactly the same results.
Could you please help me?
Best regards
Sara Mouro
Sara Maltez Mouro
Centro de Ecologia Funcional
Departamento de Botânica
Universidade de Coimbra
sara@gmesintra.com
www.uc.pt/ecology/saramaltezmouro
[[alternative HTML version deleted]]
2013 Nov 03
0
[LLVMdev] loop vectorizer issue
Hi Sarah,
the loop vectorizer runs not on the C code but on LLVM IR this c code was lowered to. Before the loop vectorizer runs many other optimization change the shape of this IR.
You can see in the LLVM IR you referenced below, a preceding LLVM IR transformation has change your loop from:
> for(in...
2005 Oct 14
3
zip package
...aviso:
no package 'lpSolve_1.1.9' at the repositories in:
download.packages(pkgs, destdir = tmpd, available = available,
Could you please tell me how to do that or when can I find a simple
example of that kind of installation?
Thank you so much and sorry for such basic question.
Sara Mouro
[[alternative HTML version deleted]]
2011 Jul 27
2
Placing brackets around the values in a data frame
Lets say I have the following data frame.
df = data.frame(word = c("David", "James", "Sara", "Jamie", "Jon"))
df
I was trying to place brackets , [ ] , around each string.
I'll be exporting it with write.table and quotes=FALSE, so it will
eventually look like:
[David]
[James]
[Sara]
....
Can anyone help with this task?
I'd like to avoid regular expr...
2013 Nov 03
2
[LLVMdev] loop vectorizer issue
...inc8, %for.body4 ]
%arrayidx6 = getelementptr inbounds i32* %0, i32 %k.030
store i32 %.pre, i32* %arrayidx6, align 4, !tbaa !0
%inc8 = add nsw i32 %k.030, 1
%exitcond32 = icmp eq i32 %inc8, 50
br i1 %exitcond32, label %for.cond10.preheader, label %for.body4
Thanks in advance,
Sara Elshobaky
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131103/23e2a4b6/attachment.html>
2013 Nov 03
0
[LLVMdev] loop vectorizer issue
...or globals and stack allocations, at
least,
is semantically equivalent to:
int a = d[19];
for(int k = 20; k < 50; k++)
dataY[k] = a;
Like so, the load you see missing was redundant, probably hoisted by
GVN/PRE
and replaced with "%.pre".
H.
On Sun, Nov 3, 2013 at 11:26 AM, Sara Elshobaky <sara.elshobaky at gmail.com>wrote:
> Hello,
>
> I was trying to trace the Loop vectorizer of the LLVM, I wrote a simple
> loop with a clear dependency.
>
> But found that the debug shows that ‘we can vectorize this loop’
>
>
>
> Here you are my loop...
2013 Oct 07
1
[LLVMdev] llvm jit
...tecture. It just uses the static compilation components before loading
> the object into memory and running its own dynamic linker.****
>
> ** **
>
> Amara****
>
> ** **
>
> *From:* llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] *On
> Behalf Of *Sara Elshobaky
> *Sent:* 07 October 2013 14:36
> *To:* llvmdev at cs.uiuc.edu
> *Subject:* [LLVMdev] llvm jit****
>
> ** **
>
> hello,****
>
> I have a question about the llvm jit.****
>
> Does it use the profile information generated during runtime to enhance
> the g...
2014 Sep 01
2
[LLVMdev] Modify a module at runtime in MCJIT
...s are:
- The newly created module can be added to the same execution
engine or I have to create a new one?
- Is it possible to swap the execution from the running module to
the new optimized one at runtime? If yes, how? If no, are there any further
solutions?
Please advice
Sara
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140901/0bd7d229/attachment.html>
2015 Jan 08
0
Dovecot replication - notify not working
...=
}
passdb {
args = /etc/dovecot/dovecot-sql.conf
driver = sql
}
plugin {
mail_replica = tcp:luigi.servers.netz1000.de:12345
quota = dict:user::file:/var/vmail/%d/%n/.quotausage
replication_full_sync_interval = 1 hour
sieve = /var/vmail/%d/%n/.sieve
}
postmaster_address = postmaster at sara.servers.netz1000.de
protocols = imap pop3
service aggregator {
fifo_listener replication-notify-fifo {
mode = 0666
user = vmail
}
unix_listener replication-notify {
mode = 0666
user = vmail
}
}
service auth {
unix_listener /var/spool/postfix/private/auth {
group = post...
2006 Feb 08
3
large lines of data
...each line
shorter, before I do copy-paste. Some times I add "spaces" in the word
document, until R breaks each line (automatically adds a +) in any point
where it still correct..
But it stills too "subjective" for me! :o\
What is the best way to do that?
Regards,
Sara Mouro
[[alternative HTML version deleted]]
2013 Oct 04
1
[LLVMdev] Runtime optimizer
Hello,
Please, I need more information on the runtime optimizer used in the LLVM
JIT.
- Where can I find it in the LLVM source code?
- Are those runtime optimizations done on the LLVM representation
code or on the machine code?
Sara
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131004/d7ba5e4f/attachment.html>
2007 Apr 18
0
Yours - may T0m invest Sara 's market
AGA Resources Climbs 33% after announcing the Acquisition Of Triumph Research LTD and Beijing Tangde International Film and Culture Co. LTD
This is climbing move now.
AGA Resources Inc.
A G A 0
Open: $2.25
Close: $3.00
Up: 33%
AGA announced its Acquisition of a B.V.I. company to become involved in a Media and Entertainment Joint Venture in China. This agreement gives them controlling shares of
2008 Aug 11
2
create file with unique names
Hei,
is it possible to create from R a series of files with unique(random) names?
I have tryed with file.create and dir.create but did not manage to do it.
Thanks a lot for help
Sara
[[alternative HTML version deleted]]
2007 Apr 18
0
Yours - may T0m invest Sara 's market
AGA Resources Climbs 33% after announcing the Acquisition Of Triumph Research LTD and Beijing Tangde International Film and Culture Co. LTD
This is climbing move now.
AGA Resources Inc.
A G A 0
Open: $2.25
Close: $3.00
Up: 33%
AGA announced its Acquisition of a B.V.I. company to become involved in a Media and Entertainment Joint Venture in China. This agreement gives them controlling shares of