search for: remodel

Displaying 20 results from an estimated 35 matches for "remodel".

Did you mean: regmodel
2008 Apr 09
2
New patches to Souffleur
...README file but I am struggling to get a "basic" functional version out before I can concentrate efforts on documentation (I know, not the best practice). Anyway, here we go with the diffs and its comments: * MediaInfo.py.diff Probably the greatest modification of all. This has been remodeled to use the Discover module of gst's python bindings. Framerate calculation is now possible and media streams now have a lot more information. I guess anyone interested will realize that this code is simpler and cleaner. Other then that, the old implementation caused some nasty Seg Faults whi...
2011 Nov 20
3
logistic regression by glm
...1 (Dispersion parameter for binomial family taken to be 1) Null deviance: 678.55 on 498 degrees of freedom Residual deviance: 671.20 on 494 degrees of freedom AIC: 681.2 Number of Fisher Scoring iterations: 4 ******************************************************************************* And I remodel it and *want no intercept*: ******************************************************************************* Call: glm(formula = as.factor(diagnostic) ~ as.factor(2281517) + as.factor(7161521) - 1, family = binomial()) Deviance Residuals: Min 1Q Median 3Q Max -1.5370 -1.0431 -0.9416 1.3065 1.433...
2011 Jan 08
0
[LLVMdev] Unreachable executed with fast Regalloc and Sparc backend
..."call $dst", []> { bits<30> disp; let op = 1; let Inst{29-0} = disp; } The Uses=[O0,O1,O2,O3,O4,O5] is causing this crash (and similar crashes in the PQBP and Greedy allocators if I remember right). I fixed this in the MicroBlaze backend by remodeling the call instructions to be variadic like other backends. See the MBlazeInstrInfo.td changes in this commit: http://www.llvm.org/viewvc/llvm-project?view=rev&revision=121994 NOTE: In the commit R1 is the dedicated stack register on the MicroBlaze architecture. -- Wesley Peck University of...
2010 Oct 06
16
Dealing with an EAV database
I''ve inherited an EAV database and there''s really no option to remodel it. Data is stored as key_name, key_value pairs Trying to return a meaningful, unified recordset is far too complex to be efficient. I''ve decided to make use of the MySQL GROUP_CONCAT, and CONCAT_WS functions to return a fast query result, with the consolidated fields as one string. The f...
2011 Jan 07
2
[LLVMdev] Unreachable executed with fast Regalloc and Sparc backend
Hello, When I run LLC with option "-O0 -march=sparc" on following testcase, fast register allocator crashes with "UNREACHABLE executed" error. LLC generates code successfully with other standard register allocators available. $ cat call.ll define void @test() nounwind { entry: %0 = tail call i32 (...)* @foo() nounwind tail call void (...)* @bar() nounwind ret void }
2014 Nov 05
4
[LLVMdev] lifetime.start/end clarification
...mizer somehow removes the lifetime end and keeps the start: loop: call void @lifetime.start( %p ) ... use %p call void @lifetime.start( %p ) ... use %p br i1 %c, label %loop, label %exit For this reason, it has been suggested that these intrinsics are horribly broken, and both should be remodeled to just mean "store of undef bytes to this memory". If "use %p" is a load, for example, in both cases we can safely say it returns undef, because it's a use-after-scope. I think coming up with a new representation with simpler semantics is the way to go. One allocation or...
2018 Mar 04
1
[RFC] llvm-mca: a static performance analysis tool
...of a higher level IR towards a machine representation; that is a different goal and comes with various things (pseudo instructions, virtual register management, stack frame management, etc.) that don’t help for this use case and rather have the potential to be in the way... I’d rather work towards remodeling the code/datastructures to make reuse in llvm-mca simpler where it makes sense. - Matthias > On Mar 2, 2018, at 9:33 AM, Andrew Trick via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > +Ahmed > >> On Mar 2, 2018, at 6:42 AM, Andrea Di Biagio <andrea.dibiagio at g...
2002 Oct 04
0
New High Performance Rink System Installed In Washington State
...ember With New High Performance Rink System LYNNWOOD -- A new ice arena will open in Lynnwood Sept. 15, about four months after the SnoKing Ice Arena closed. Washington Ice Skating Association, which owns both the former SnoKing rink and the Olympicview private ice rink in Mountlake Terrace, is remodeling and reopening the rink as the Lynnwood Ice Center. The new ice center will be in the renovated SnoKing building at 19803 68th Ave. W. After 20-plus years of being open to the public, the SnoKing Ice Arena closed suddenly at the end of March. Former SnoKing manager Doug Stewart said they left...
2007 Nov 13
6
Facter and arrays
Hi, Is it possible to have an array as the output of a custom fact? And then to pass it into a template in Puppet? I currently have a fact that looks like this: Facter.add("exports") do setcode do case Facter.hostname when (/thishost/i): [ "/local", "/local2" ] end end end & a template like this: <%
2017 Apr 04
3
[inline-asm][asm-goto] Supporting "asm goto" in inline assembly
...owing jumps out of an assembly block seems natural to me. >> - Jumping into an inline assembly block seems like an unnecessary feature to me. >> - To have this working in lib/CodeGen we would need an alternative opcode with the terminator flag set. (There should also be opportunities to remodel some instruction flags in the backend, to be part of the MachineInstr instead of the opcode, but that is an orthogonal discussion to this) >> - I don't foresee big problems in CodeGen, we should take a look on how computed goto is implementation to find ways to reference arbitrary basic b...
2014 Nov 05
3
[LLVMdev] lifetime.start/end clarification
...mechanism. > It removes them because it does (or will) remove the associated alloca anyways as part of turning loads and stores into SSA. There's no need for lifetime intrinsic equivalents on SSA given that we have use-lists and tools like the dominator tree. > > and both should be remodeled to just mean "store of > > undef bytes to this memory". > > This is a bad idea. Stores of undef bytes can be removed if we can prove > that the address is dereferenceable. And if they can't be removed, then > they have side effects that can't ever be removed. P...
2008 Dec 08
5
if file exists
Is there a condition test to see if a file exists on the puppetmaster? I have about 15 different license files that are loaded on thirteen servers. Not every license goes on every server. I''d like to serve the files only if they exist on the puppet master server. I''m thinking of doing it like this: define install_license($host) {
2012 Nov 02
4
Loop over several Variables, add on question
Hey everyone, I have again a loop question: After generating the dataset using Jan?s approach from my previous posting (http://r.789695.n4.nabble.com/Loop-over-several-variables-td4648112.html) I want to rename the Variables in the new dataset so that all y will be called tiy. Doing it separately the following line works fine: ti<-rename (ti,c(y5="tiy5")) So I thought I simply
2010 Nov 24
0
Hospital ANOVA/ANCOVA problem
...tiple echo reports (numbering anywhere from 1 to 20) with variables (A, B, C, D, E, F, etc) for each report 3. I want to see if A, B, C, D are individually correlated to hypertension status. The problem is that we must also take into account how old the echo report is since the heart takes time to remodel/change. Independent variables: hypertension status (HT - nominal) and echo time since transplant (ECHO_DAYS - continuous) Dependent variables: echo report parameters, some of which may be related. (A, B, C, D, E, F, etc - continuous) The dataset looks like this: ID HT ECHO_DAYS A B...
2008 Jan 19
1
mixing templates and other methods for a file''s content
Hello there, I have come to a situation where I would like to mix 2 approaches to create the contents of a file. Here is what I have: a module ''sudo'' which manages a hosts /etc/sudoers file: init.pp: class sudo { case $operatingsystem { Debian: { package { "sudo": } } } file { "/etc/sudoers": mode => 440, content =>
2012 Nov 29
1
libary survival
Hello,I would like to know if there is residue analysis after the Cox model and make the adjustment for my random cluster? [[alternative HTML version deleted]]
2007 Jun 29
1
More on class includes
After some through I have decided that I don''t want to keep all my configuration variables in LDAP; too many variables and the variables are too specific to manage efficiently. What I want to keep in ldap are some general class definitions, like samba-bdc, and samba-dev-shares, etc. So I build a manifest like the one below; but there are a few problems. First, I can''t be sure
2014 Nov 05
5
[LLVMdev] lifetime.start/end clarification
...SA values. > > For the code in question, I don't see why you wouldn't just RAUW the > alloca with undef and then let DCE remove the intrinsics (this is, however, > somewhat off-topic for this thread). > > > > > > > > > > > > and both should be remodeled to just mean "store of > > > undef bytes to this memory". > > > > This is a bad idea. Stores of undef bytes can be removed if we can > > prove that the address is dereferenceable. And if they can't be > > removed, then they have side effects that can...
2011 Jan 25
1
coxme and random factors
Hi I would really appreciate some help with my code for coxme... My data set I'm interested in survival of animals after an experiment with 4 treatments, which was performed on males and females. I also have two random factors: Response variable: survival (death) Factor 1: treatment (4 levels) Factor 2: sex (male / female) Random effects 1: person nested within day (2 people did
2017 Apr 04
4
[inline-asm][asm-goto] Supporting "asm goto" in inline assembly
...ne assembly by allowing jumps out of an assembly block seems natural to me. - Jumping into an inline assembly block seems like an unnecessary feature to me. - To have this working in lib/CodeGen we would need an alternative opcode with the terminator flag set. (There should also be opportunities to remodel some instruction flags in the backend, to be part of the MachineInstr instead of the opcode, but that is an orthogonal discussion to this) - I don't foresee big problems in CodeGen, we should take a look on how computed goto is implementation to find ways to reference arbitrary basic blocks. -...