Displaying 20 results from an estimated 67 matches for "hor".
Did you mean:
for
2015 Nov 11
2
[RFC][SLP] Let's turn -slp-vectorize-hor on by default
...ner7c5 at gmail.com>
Sent: 11/11/2015 6:34 PM
To: Das, Dibyendu<mailto:Dibyendu.Das at amd.com>
Cc: nrotem at apple.com<mailto:nrotem at apple.com>; llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm.org>
Subject: Re: [llvm-dev] [RFC][SLP] Let's turn -slp-vectorize-hor on by default
> I will try to get some spec cpu 2006 rate runs done under -O3 -flto with and without -slp-vectorize-hor and let you know.
Do you have a time estimate on when you'll be able to get these
numbers? Another option would be to default the flag on and revert if
this does cause re...
2015 Nov 09
2
[RFC][SLP] Let's turn -slp-vectorize-hor on by default
...impact of enabling this feature by default.
I also ran the test-suite on an X86-64 machine. I can't imagine any
other targets being uniquely effected in terms of compile-time by
turning this on after testing both AArch64 and X86-64. I also timed
running the regression tests with -slp-vectorize-hor enabled and
disabled, no significant difference here either.
There are no significant performance regressions (or much
improvements) on AArch64 in night-test suite. I do see wins in third
party benchmarks when using this flag, which is why I'm asking if
there would be any objection from the co...
2015 Nov 09
3
[RFC][SLP] Let's turn -slp-vectorize-hor on by default
...u2006 for x86-64 for perf progression/regression ?
>
> Sent from my Windows Phone
> ________________________________
> From: Charlie Turner via llvm-dev
> Sent: 11/9/2015 11:15 PM
> To: llvm-dev at lists.llvm.org
> Subject: [llvm-dev] [RFC][SLP] Let's turn -slp-vectorize-hor on by default
>
> I've done compile-time experiments for AArch64 over SPEC{2000,2006}
> and of course the test-suite. I measure no significant compile-time
> impact of enabling this feature by default.
>
> I also ran the test-suite on an X86-64 machine. I can't imagine any...
2015 Nov 10
4
[RFC][SLP] Let's turn -slp-vectorize-hor on by default
I will try to get some spec cpu 2006 rate runs done under -O3 -flto with and without -slp-vectorize-hor and let you know.
-Thx
-----Original Message-----
From: nrotem at apple.com [mailto:nrotem at apple.com]
Sent: Tuesday, November 10, 2015 3:33 AM
To: Charlie Turner
Cc: Das, Dibyendu; llvm-dev at lists.llvm.org
Subject: Re: [llvm-dev] [RFC][SLP] Let's turn -slp-vectorize-hor on by default...
2002 Oct 09
0
Numéro de procédure hors de l'intervalle admis
Hello,
I have a problem to integrate a PC Windows 2000 Professionnal in te samba domain. The message of error is "Num?ro de proc?dure hors de l'intervalle admis". Could you help me, i am waiting for your answer.
I have Suse Linux 7.2 and Samba version 2.2.
Thank you.
Serge Voide
Cycle d'orientation Gr?ne
3979 Gr?ne (VS) Suisse
s.voide@bluewin.ch
-------------- next part --------------
HTML attachment scrubbed and re...
2003 Mar 03
0
lm, gee and lme
...s partially influenced by group membership. My
understanding here is that ignoring nonindependence (i.e., using lm)
actually results in SE estimates that are too large, while modeling the
nonindependence reduces SE and increases power.
Here is an example:
# lme model
> mod.lme<-lme(GWB.ADD4~HOR,random=~1|GRP,data=TBH)
> VarCorr(mod.lme)
GRP = pdLogChol(1)
Variance StdDev
(Intercept) 0.3160445 0.5621783
Residual 0.7449425 0.8631005
> 0.3160445/(0.3160445+0.7449425)
[1] 0.2978778 #Note the large ICC (high nonindependence)
> summary(mod.lme)$tTable...
2009 Jul 20
2
I might be dumb : a simple question about "foreach"
....9.1 on Windows, I have downloaded the foreach package
today (v 1.2.1), together with iterators (v. 1.0.1) and codetools (v.0.2-2).
Full of hope I try the most simple thing of all out of the package
vignette :
> x <- foreach(i = 1:3) %do% sqrt(i)
and get :
> Erreur dans sqrt(i) : indice hors limites ( i.e. "error in sqrt(i) :
> index out of bounds")
but when trying :
> x<-foreach(i = 1:3) %do% print(sqrt(i))
I get :
> [1] 1
> [1] 1.414214
> [1] 1.732051
> Erreur dans print(sqrt(i)) : indice hors limites
Probably I didn't drink enough coffee this m...
2009 Sep 08
1
gstat---2 basic plot questions
Hi all--
I'm new to R, statistics and programming, so sorry if this is a really basic
question!
I have plotted a directional variogram, and I want to
a. overlay the omni-directional line over each directional panel
b. display the directional variograms in a single panel with a legend that
associated each line to each degree measurement.
The line I'm using is
2018 Sep 10
3
How to avoid multiple registers definitions in customInserter.
Hi,
I'm lowering some of the logical operators (by example the | operator) on integer32.
Sadly my target only provide native instruction on high and low parts of 32 bits registers.
So, I have to generate a sequence of two native instructions (LOR followed by HOR).
I've introduced an Pseudo instruction with a custom inserter.
def OR_A_oo : CLPPseudoInst<(ins FPUaOffsetOperand:$OffsetA,FPUaOffsetOperand:$OffsetB),(outs FPUaROUTADDRegisterClass:$FA_ROUTADD),
[], [RFLAGA],...
2009 Jul 03
3
Color of ecdf plots
Hi.
I have the following two ecdf plots in one graph:
plot(
ecdf(....),
do.points=FALSE,
verticals=TRUE,
main=paste("Ecdf of distances ",DIM,sep=""),
col="red"
);
lines(
ecdf(....),
do.points=FALSE,
verticals=TRUE
);
How do I change the color of the resulting graph? Adding col="red" to either plot or lines results in an error
2011 Apr 23
1
Vertical bwplot and stripplot
Hi,
I'd like to change the default orientation of bwplot() and stripplot()
so the plots are displayed vertically. Passing horizontal=FALSE into
stripplot in the simple code below doesn't seem to be the answer.
library(lattice);
x <- rnorm(100);
y <- as.factor(sapply(1:100, function(k) sample(c("A","B","C"), 1,
prob=c(1/2, 1/3, 1/6))));
my.df <- data.frame(x=x, y=y);
stripplot(~x...
2014 Sep 19
3
[LLVMdev] [Vectorization] Mis match in code generated
...4
%arrayidx28 = getelementptr inbounds i32* %a, i32 15
%15 = load i32* %arrayidx28, align 4, !tbaa !1
%add29 = add nsw i32 %add27, %15
store i32 %add29, i32* %sum, align 4, !tbaa !1
ret void
}
*IR after SLP vectorization with appropriate flags :*
$ opt -S -slp-vectorizer -slp-vectorize-hor=1 -slp-vectorize-hor-store=1
test.ll -debug
(I hope i am passing the args correctly to opt)
Subtarget features: SSELevel 3, 3DNowLevel 0, 64bit 1
SLP: Analyzing blocks in foo.
SLP: Found 1 stores to vectorize.
SLP: Vectorizing a list of length = 2.
; ModuleID = 'test.ll'
target datalayout...
2014 Nov 10
2
[LLVMdev] [Vectorization] Mis match in code generated
Hi Suyog,
Thanks for looking at this. This has recently got itself onto my TODO list
too.
> I am not sure how much all this will improve the code quality for
horizontal reduction
> (donno how frequently such pattern of horizontal reduction from same
array occurs in real world/SPECS).
Actually the main loop of 470.lbm can be SLP vectorized like this. We have
three parts to it: A fully unrolled reduction, a scatter/gather part (not
really vectorizable) an...
2009 Mar 27
3
ANNOUNCE: Hirb - A gem enhancing your script/console
Hi,
I''m announcing Hirb, a mini view framework which enables script/
console to provide custom views.
Out of the box your activerecord objects come back as ascii tables.
You can also configure your tree-based models to return as ascii
trees:
Numeric
|-- Float
|-- Integer
| |-- Bignum
| `-- Fixnum
|-- Date::Infinity
`-- Rational
I''ve written two tutorials on
2008 Nov 08
2
lines, ecdf and colors
Hi. I'm trying to plot two ecdf's on the same graph using two
different colors. I can plot using the same color, but it doesn't
work when I change colors? Any suggestions? Thanks in advance for
your help.
x <- c(0.80, 0.83, 1.89, 1.04, 1.45, 1.38, 1.91, 1.64, 0.73, 1.46)
y <- c(1.15, 0.88, 0.90, 0.74, 1.21)
plot(ecdf(x))
# it works without col='blue', but doesn't
2009 Jun 05
3
Sims 3 stopped working
I bought The Sims 3 today and it installed and ran perfectly.
However I had to uninstall it for unrelated reasons and when I reinstalled it it wouldn't launch, wit hor without the nocd patch.
I don't recall changing aything in the way of drivers or wine versions in that time so I'm at a complete loss as to what is going on.
Any ideas?
2011 Feb 01
2
RPC_S_PROCNUM_OUT_OF_RANGE
...nXP/Win7.
The linux server has been replaced by a new one a week
ago. The new machine runs samba 3.5.4-5.1.2x86-64
with the same shared folder and the same smb.conf
file.
Till then, when the PCs try to connect to the samba
share via explorer a window opens with
the message "Num?ro de proc?dure hors de l'intervalle
admis" (RPC_S_PROCNUM_OUT_OF_RANGE corresponding
to windows error 1745).
Has anyone an idea how I could get rid of that message
and gain access to the samba shared folder with the
explorer ?
I've registered the PCs names and passwords in smbpasswd
and one user named n...
2008 Mar 31
3
arp who-has packets not seen in Dom0 even by tcpdump
...it and what
additional info can i provide?
Will be thankful for any tips, cause I''m really stuck with this issue
for about a couple of days. Should i mention that i''ve already searched
through all the web?
Best Regards,
--
Litnitchii Alexander
Information Security Engineer
HORS B.V.
http://www.horse21.net
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2018 Feb 05
1
Concatening two maps/shapefiles...
...#39;t know how to get these two maps jointed.
I guess it may be trivial but I didn't found nothing about this in the available tutorials.
Cheers,
Nicolas Degallier
Nicolas Degallier
120 rue de Charonne
F-75011 Paris
nicolas.degallier at free.fr
Publications :
http://www.documentation.ird.fr/hor/DEGALLIER,NICOLAS/tout
2008 Jul 24
2
dovecot.conf permissions
Hi,
I have a little problem with defining the right permissions for
dovecot.conf. The main problem is that the password for SSL certificates
is stored there and the conf file is world readable by default, which
makes a security problem [1]. It is not a problem to restrict the
permissions to 0600, dovecot will still work, but then deliver cannot
work as it reads the conf too, but it runs under