search for: dl2

Displaying 16 results from an estimated 16 matches for "dl2".

Did you mean: dl2k
2011 Nov 11
1
Fwd: Use of R for VECM
...te Std. Error t value Pr(>|t|) sd1 -0.0002012 0.0007653 -0.263 0.793820 sd2 0.0013339 0.0007616 1.752 0.086378 . sd3 0.0007372 0.0007947 0.928 0.358348 Y.dl1 -0.2215246 0.1600532 -1.384 0.172875 C.dl1 0.9220846 0.1646314 5.601 1.08e-06 *** Y.dl2 -0.1600219 0.1273838 -1.256 0.215245 C.dl2 0.4712112 0.2124175 2.218 0.031401 * Y.l3 -0.3227708 0.0881079 -3.663 0.000631 *** C.l3 0.2376579 0.0688854 3.450 0.001194 ** constant 0.4707624 0.1182284 3.982 0.000236 *** --- Signif. codes: 0 ?***? 0.001 ?**? 0.01 ?...
2019 Jan 30
2
[monorepo] Much improved downstream zipping tool available
Björn Pettersson A <bjorn.a.pettersson at ericsson.com> writes: > In llvm (split) we have: > > UL4->UL3->UL2->UL1->UL0 > \ > ...->DL2->DL1 > > In clang (split) we have: > > UC4->UC3->UC2->UC1->UC0 > \ > ...->DC2->DC1 > > > DL1 is a commit that updates the clang submodule to DC1 (and in this > scenario at the same time merges UL1 and DL2 in llvm). Ok...
2009 Sep 02
0
Cointegration/urca package
...4.55e+02   6.91e+00   2.43e+03 constant  -4.90e+01   1.82e+05   2.46e+03   9.54e+05 up.dl1     6.68e-01   2.07e+03   3.49e+01   2.51e+03 expl.dl1   1.72e-04  -1.87e-01   9.22e-03   1.34e-01 upd.dl1   -2.48e-03   8.15e+00   4.36e-01   2.29e+01 r.dl1      2.70e-05  -6.75e-02  -1.95e-03  -7.64e-01 up.dl2    -4.32e-01   1.10e+03   5.14e+00  -2.45e+03 expl.dl2   6.01e-05  -1.24e-01  -9.52e-03  -6.65e-01 upd.dl2   -2.88e-03   9.40e+00   2.31e-01   1.74e+01 r.dl2      5.56e-05  -1.46e-01  -1.03e-03  -5.47e-01 $beta                ect1 up.l3     1.0000000 expl.l3  -0.0002939 upd.l3   -0.0004689 r.l3   ...
2019 Jan 29
2
[monorepo] Much improved downstream zipping tool available
Björn Pettersson A <bjorn.a.pettersson at ericsson.com> writes: > In the new monorepo UC1 may or may not be a parent to UL1. > We could actually have something like this: > > UL4->UC2->UL3->UL2->UL1->UL0->UC1 > > Our DL1 commit should preferably have UL1 as parent after > conversion > > UL4->UC2->UL3->UL2->UL1->UL0->UC1 >
2018 Jan 28
0
Polly Dependency Analysis in MyPass
...sis<polly::ScopDetectionWrapperPass>().getSD(); auto &SE2 = getAnalysis<ScalarEvolutionWrapperPass>().getSE(); auto &LI2 = getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); auto &AA2 = getAnalysis<AAResultsWrapperPass>().getAAResults(); auto const &DL2 = F.getParent()->getDataLayout(); auto &DT2 = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); auto &AC2 = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); Result.reset(new ScopInfo{DL2, SD2, SE2, LI2, AA2, DT2, AC2}); polly::DependenceInfoWrapperPas...
2018 Jan 28
4
Polly Dependency Analysis in MyPass
Hello, I need to analyze dependencies in my llvm ir by using polly. i created a new pass called mypass there i added polly dependency analysis pass but when i execute this pass in gdb i get no data. Why is that so? My code is follows; namespace { struct mypass : public FunctionPass { static char ID; mypass() : FunctionPass(ID) { } virtual bool runOnFunction(Function &F) {
2018 Jan 28
1
Polly Dependency Analysis in MyPass
...erPass>().getSD(); > > > > auto &SE2 = getAnalysis<ScalarEvolutionWrapperPass>().getSE(); > auto &LI2 = getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); > auto &AA2 = getAnalysis<AAResultsWrapperPass>().getAAResults(); > auto const &DL2 = F.getParent()->getDataLayout(); > auto &DT2 = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); > auto &AC2 = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); > > Result.reset(new ScopInfo{DL2, SD2, SE2, LI2, AA2, DT2, AC2}); > > >...
2018 Jan 29
1
Polly Dependency Analysis in MyPass
...alysis<polly::ScopDetectionWrapperPass>().getSD(); auto &SE2 = getAnalysis<ScalarEvolutionWrapperPass>().getSE(); auto &LI2 = getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); auto &AA2 = getAnalysis<AAResultsWrapperPass>().getAAResults(); auto const &DL2 = F.getParent()->getDataLayout(); auto &DT2 = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); auto &AC2 = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); Result.reset(new ScopInfo{DL2, SD2, SE2, LI2, AA2, DT2, AC2}); polly::DependenceInfoWrapperPass...
2018 Jan 29
0
Polly Dependency Analysis in MyPass
How do you compile the code? Within the Polly subdirectory using CMake? How do you run your pass. Using "opt -mypass inputfile.ll"? Michael 2018-01-28 9:30 GMT-06:00 hameeza ahmed via llvm-dev <llvm-dev at lists.llvm.org>: > Hello, > > I need to analyze dependencies in my llvm ir by using polly. i created a new > pass called mypass there i added polly dependency
2015 Jan 09
0
Processed (with 2 errors): user debian-qa@lists.debian.org, affects 774889, affects 771755, unarchiving 767561 ...
...ebian.org). > affects 774889 + xfswitch-plugin Bug #774889 [gdm3] gdm3: fails to upgrade squeeze -> wheezy -> jessie - trying to overwrite /usr/share/gdm/BuiltInSessions/default.desktop Added indication that 774889 affects xfswitch-plugin > affects 771755 + steptalk Bug #771755 [gnustep-dl2-postgresql-adaptor] gnustep-dl2-postgresql-adaptor: unhandled symlink to directory conversion: /usr/lib/GNUstep/Frameworks/PostgreSQLEOAdaptor.framework/Resources Added indication that 771755 affects steptalk > unarchive 767561 Bug #767561 {Done: Timo Aaltonen <tjaalton at debian.org>} [pk...
2011 Apr 19
1
Color Correction with Wine Apps (photomatix 4.0.2)
...n to control color profiling with Wine that I need to install? Any help is much appreciated, I will include some specifics below, thanks! wine-1.3.17 Distributor ID: Ubuntu Description: Ubuntu 10.10 Release: 10.10 Codename: maverick software: photomatix pro trial 4.0.2 (32-bit) (http://photomatix-dl2.s3.amazonaws.com/PhotomatixPro402x32.exe) -info on color profiles with photomatix (http://www.hdrsoft.com/support/faq_photomatix.html#profile) -hdrsoft directions for installing photomatix on linux (http://www.hdrsoft.com/support/linux.html) winetricks apps list-installed: -corefonts -dotnet20 -gd...
2005 Jul 13
2
mijail- Multiple IP's in a Jail
I have searched around the lists and Google and found this HYPERLINK "http://people.freebsd.org/~pjd/patches/jail_2004120901.patch"http://people. freebsd.org/~pjd/patches/jail_2004120901.patch I was wondering if anyone know of a multiple IP patch that works with FreeBSD 5.4 I really do not understand why this is not included in the standard jail I mean sure jail is handy for
2007 Nov 18
13
PPPoE in DomU exits with error
Hi. I am trying to setup my firewall in DomU. However, I have got a little problem. My pon dsl-provider exits with following message. Nov 18 09:44:40 alsfw01 pppd[1723]: Plugin rp-pppoe.so loaded. Nov 18 09:44:40 alsfw01 pppd[1723]: Linux kernel does not support PPPoE -- are you running 2.4.x? Nov 18 09:44:40 alsfw01 pppd[1723]: Exit. I am running xen out of the box on Debian Stable. My
2007 Jan 25
10
Problems with building a complete kernel
I have a plain vanilla Centos source (not 100% sure where we got it from), but I can't seem to get a build that installs correctly. I tried the method described at http://wiki.centos.org/HowTos/Custom_Kernel, but rpm doesn't like the output file, and even if I install it with -F, nothing seems to happen - no new kernel, now initrd, nothing. When I tried following the directions in the
2018 Nov 12
3
[RFC] Tablegen-erated GlobalISel Combine Rules
...esting the use of a DAG like in SDSel, as I think that's a mistake. I simply mean the 'dag' type of TableGen, which should really be called 'sexpr' or something. I think we can use the same idea you suggested for subregisters: (DIVMOD $T1, $T2, $A, $B, (merge_debug_loc $DL1, $DL2)) >>> I have a more explicit example of this later. >>> >>> >>>> _'Upside-down' matches (i.e. roots at the top) and similar_ >>>> This one requires algorithm changes which I'd prefer not to discuss in this RFC. Assuming the underlyin...
2018 Nov 10
3
[RFC] Tablegen-erated GlobalISel Combine Rules
Thanks Nicolai! > On Nov 9, 2018, at 02:55, Nicolai Hähnle <nhaehnle at gmail.com> wrote: > > Hi Daniel, > > Lots of good stuff in there! I especially like the design for specifying out-of-line predicates. I have a couple of small comments and one major one below. > > > On 09.11.18 02:42, Daniel Sanders via llvm-dev wrote: >> _Passing arbitrary data from