search for: lavin

Displaying 20 results from an estimated 20 matches for "lavin".

Did you mean: gavin
2019 Jan 02
2
AA pass dependencies
On Wed, Jan 2, 2019 at 1:34 AM Markus Lavin <markus.lavin at ericsson.com> wrote: > To be more specific I am trying to use LVI from inside BasicAA to improve > some cases that turned out to be relevant for our downstream target. > > > > The code is in https://reviews.llvm.org/D55107 and I have problems with a > fa...
2018 Nov 08
2
Completeness of -print-after-all
...the entire IR (complete enough to import into opt and run additional passes on) after each individual pass (module, function, loop or whatever). Doesn’t that make sense? Regards, Markus From: Fedor Sergeev <fedor.v.sergeev at gmail.com> Sent: Thursday, November 8, 2018 11:06 AM To: Markus Lavin <markus.lavin at ericsson.com> Cc: llvm-dev at lists.llvm.org Subject: Re: [llvm-dev] Completeness of -print-after-all Markus, Loop passes are kinda unique compared to func/module passes in that they could destroy the loop they worked on. And there might be no loop to print after that (btw,...
2018 Dec 31
1
AA pass dependencies
The management of passes in the legacy PM is ... highly confusing. Do you have a specific problem you're trying to solve or a specific question? On Thu, Dec 27, 2018 at 6:47 AM Markus Lavin via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Hi, > > > Looking at the output of e.g. > > > llc -mtriple=x86_64-unknown-linux-gnu test/CodeGen/X86/pre-coalesce.ll > -debug-pass=Executions > > > Why is it that 'Basic Alias Analysis (stateless AA impl...
2019 Jul 11
4
llvm.set.loop.iterations
After playing a bit with the newly introduced hardware loop framework I realize that the llvm.set.loop.iterations intrinsic takes as argument the number of iterations the loop will execute. In fact it goes all the way to, on IR, insert an addition of constant 1 to the number of taken backedges returned by SCEV. If the machine instruction realizing the loop is interested in the number of
2018 Dec 27
2
AA pass dependencies
Hi, Looking at the output of e.g. llc -mtriple=x86_64-unknown-linux-gnu test/CodeGen/X86/pre-coalesce.ll -debug-pass=Executions Why is it that 'Basic Alias Analysis (stateless AA impl)' is freed much earlier than 'Function Alias Analysis Results' even though the latter depends on the former (at least AFAICT by looking at lib/Analysis/AliasAnalysis.cpp)? Thanks! -Markus
2018 Nov 08
2
Completeness of -print-after-all
Hi, I recently worked on an issue where I realized that -print-after-all does not cover all passes run by the pass manager. E.g. it seems that loop passes are not fully covered and I could find that loop transformations showed up in the dump of the next non-loop pass (which happened to be 'Combine redundant instructions' and that was rather confusing). Specifying both -print-before-all
2008 Apr 01
1
superimpose histogram on biplot
...) s.class(dfxy=nipmat$li[,1:2], fac=groups, cellipse=2, axesell=F, cstar=0 , col=c(2:3), add.plot=T) I can create the histogram using: plot(nipmat$eig/sum(nipmat$eig), type='h') but I don't know how to superimpose it on the above graph. Thanks for any help! Best, Jennie Jennie Lavine PhD Candidate Center for Infectious Disease Dynamics Penn State University 505 ASI Building (814)863-1815 [[alternative HTML version deleted]]
2019 Apr 11
2
Upper case vs lower case in printed and parsed MIR
I am confused about the rules for when upper and lower case letters should be used in MIR. As an example our downstream target has upper case letters in its sub-register indices and as a result we cannot import exported MIR without manually 'lower casing' it first which is obviously rather annoying. Looking in https://llvm.org/docs/MIRLangRef.html it is stated that instruction names are
2009 Aug 02
1
libsmb error
...I./lib/replace -I./lib/talloc -I./lib/tdb/include -I./libaddns -I./librpc -I./popt -I/usr/local/include -DLDAP_DEPRECATED -I/include -I/altroot/samba-3.3.7/source/lib -D_SAMBA_BUILD_=3 -fPIC -c libsmb/libsmb_cache.c -o libsmb/libsmb_cache.o make: *** [libsmb/libsmb_cache.o] Error 1 Thanks Chris Lavin
2009 Aug 07
1
This is happening during config
....h: in the future, the compiler will take precedence configure: WARNING: ## ---------------------------------------- ## configure: WARNING: ## Report this to samba-technical at samba.org ## configure: WARNING: ## ---------------------------------------- ## Can anyone help? Chris Lavin
2019 Jan 25
2
Concatenating DWARF location expressions
> From: aprantl at apple.com <aprantl at apple.com> > Since it sounds like the problem is only with implicit descriptions, would a rule > such as "if the expression has a DW_OP_stack_value, add an extra > DW_OP_deref" work for the PrologueEpilgueInserter or do we need > something more principled? Right, that could very well be sufficient for this particular case so
2020 Sep 10
2
LSR breaks debug info
The Loop Strength Reduction pass appears to break debug information even for the most basic input. I believe this is a well known issue already (see https://bugs.llvm.org/show_bug.cgi?id=38815) but I also believe that it deserve some extra attention. Consider the following input compiled with 'clang -g -O3 foo.c -mllvm -print-after-all' --- void foo(unsigned char *p) { #pragma clang loop
2007 Nov 28
0
Package dlm version 0.8-1
...ates a joint model from independent dlm's. This is useful to specify models for multivariate observations. 5) Minimal support for Markov chain Monte Carlo output analysis has been added, with functions "mcmcSD", "mcmcMean", "ergMean". Thanks to Michael Lavine for suggesting the outer sum in (4). Please let me know of any problems. Comments and suggestions are very welcome. Giovanni Petris -- Giovanni Petris <GPetris at uark.edu> Department of Mathematical Sciences University of Arkansas - Fayetteville http://definetti.uark.edu/~gpetris/ _...
2007 Nov 28
0
Package dlm version 0.8-1
...ates a joint model from independent dlm's. This is useful to specify models for multivariate observations. 5) Minimal support for Markov chain Monte Carlo output analysis has been added, with functions "mcmcSD", "mcmcMean", "ergMean". Thanks to Michael Lavine for suggesting the outer sum in (4). Please let me know of any problems. Comments and suggestions are very welcome. Giovanni Petris -- Giovanni Petris <GPetris at uark.edu> Department of Mathematical Sciences University of Arkansas - Fayetteville http://definetti.uark.edu/~gpetris/ _...
2009 Dec 10
3
vector help
I have tow vectors one is the subset of another x is a subset of X Both are vectors with n elements X[X %in% x] would give me x again rite because it is a subset but i want all those are not in x from X. X[which(X != x)] should this do that Thanks Ramya -- View this message in context: http://n4.nabble.com/vector-help-tp960277p960277.html Sent from the R help mailing list archive at
2019 Jan 24
2
Concatenating DWARF location expressions
Hello, Could someone explain to me what the rules are for concatenation of DWARF location expressions? For example in lib/CodeGen/PrologEpilogInserter.cpp there is a call to DIExpression::prepend to concatenate the stack slot address of a variable to an existing expression. Now the problem here is that the former is a 'Memory location description' while the latter could very well be a
2008 Oct 15
0
R-help Digest, Vol 67, Issue 31
...------------------------------ Message: 44 Date: Mon, 29 Sep 2008 12:06:56 -0500 From: "Kevin Wright" <kw.statr at gmail.com> Subject: Re: [R] superimpose histogram on biplot To: " St?phane Dray " <dray at biomserv.univ-lyon1.fr> Cc: r-help at r-project.org, Jennie Lavine <jennie.lavine at gmail.com> Message-ID: <c968588d0809291006m2dc6a471had9f123e6b010e46 at mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 I know that this is a late follow-up, but I just found this posting today while searching for something else. Two of my colleagues a...
2001 Jun 05
2
a bug? (PR#968)
...;numeric" > # test that the data were correctly read > for ( i in 1:7 ) print ( length ( unique ( mohan[,i] ) ) ) [1] 3432 [1] 29 [1] 7 [1] 4 [1] 4 [1] 3 [1] 2 > ############################################################################## -- Michael Lavine ISDS michael@stat.duke.edu Box 90251 (919) 684-2152 (work) Duke University (919) 684-8594 (fax) Durham, NC 27708-0251 --T4sUOijqQbZv57TR Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=&qu...
2020 Nov 16
0
Analyze SCEV expression after IR is removed clarification
In short: Shall analysis of a SCEV expression be allowed even though part of the IR that was analyzed to build the SCEV expression has been removed? In more detail with background: About a month ago I landed https://reviews.llvm.org/D87494 where SCEV is used to do additional debug-info salvaging in LSR. The idea was to compute (and store) a SCEV of what llvm.dbg.value intrinsics inside the loop
2009 Aug 07
0
This is happening too
creating /altroot/samba-3.4.0/source3/exports/libnetapi.syms Linking shared library bin/libnetapi.so.0 Compiling libsmb/libsmb_cache.c In file included from libsmb/libsmb_cache.c:24: include/libsmbclient.h:78:25: sys/statvfs.h: No such file or directory In file included from libsmb/libsmb_cache.c:24: include/libsmbclient.h:875: warning: `struct statvfs' declared inside parameter list