search for: equivalent

Displaying 20 results from an estimated 13887 matches for "equivalent".

2016 Aug 31
3
[RFC] Interprocedural MIR-level outlining pass
On Tue, Aug 30, 2016 at 7:28 PM, Daniel Berlin <dberlin at dberlin.org> wrote: > I tend to agree with Hal -- value numbering computes equivalent *values*, >> > Sorry, but this is just flat out wrong > > "A Global Value Numbering(GVN) algorithm is considered to be complete (or > precise), if it can detect all Herbrand equivalences among expressions in a > program. > Two expressions are said to be Herbrand equival...
2007 May 09
2
[LLVMdev] EquivalenceClasses
Can someone explain the terminology used in the Doxygen comments for EquivalenceClasses? Specifically, what is a "Leader" as opposed to other members of an equivalence class? Say, for example, I want to create a set of equivalence classes to specify subset relationships. Imagine B is a subset of A, C is a subset of B, E is a subset of D and D has no relation to any other set. I'd
2009 Oct 20
5
ssh user equivalence
We are getting some pushback from our SA group regarding root having ssh user equivalence on the cluster where we run OCFS2. Is it required to have the ssh user equivalence setup for the root user when running OCFS2 ? Thanks in advance, Reid Reid McKinley ******************************************************************************************** This message, including any
2011 Feb 12
2
Test for equivalence
Hi! is there a way in R to check whether the outcome of two different experiments is statistically distinguishable or indistinguishable? More preciously, I used the wilcoxon test to determine the differences between controls and treated subjects for two different experiments. Now I would like to check whether the two lists of analytes obtained are statistically distinguishable or
2007 May 09
0
[LLVMdev] EquivalenceClasses
...set of B, E is a subset of D > and D has no relation to any other set. I'd like to > group things into equivalence classes representing > "immediate" subsets: > > Class 1: A, B > Class 2: B, C > Class 3: D, E I don't understand how A and B, for example, are equivalent. B is a subset of A but not vice versa. Thus your relation is not symmetric. Would A, B and D be the "Leaders" of the equivalence classes? > Note that I don't want {A, B, C} as an equivalence class > because it breaks the "immediate subset" relationship. > > Wit...
2018 Aug 07
2
systemd equivalent of xinetd 'only_from' and 'banner_fail' attributes
I'm attempting to port an existing xinetd service from CentOS 6 to something equivalent with systemd for CentOS 7 The existing xinetd config uses the attributes 'only_from' to limit connections from a limited set of remote hosts and 'banner_fail' to print a suitable error message when access is denied However, I can't find suitable 'equivalents' with sy...
2016 Aug 31
2
[RFC] Interprocedural MIR-level outlining pass
> > > Yes, this was exactly my point. We want to recognize > structurally-equivalent sequences of instructions on inequivalent operands. > Yes, and my point is "none of the vn and vn-dag generating algorithms care". you can define equivalent to be "structural", you can define it to be "these two variables are equivalent if they both start with "a&...
2017 Sep 28
3
[RFC] PT.2 Add IR level interprocedural outliner for code size.
...your outliner value numbers > using a nominal approach, i.e. two instructions get the same value > number if their string representation is the same (or something like > that). > > With the notion above, > xorl %eax %eax > movl %eax, $0 > > aren't really considered equivalent (although, in practice, they are). > > The way I imagined outlining to work at the IR level (and how I once > discussed with Dan) is leveraging the result of a value number > analysis (NewGVN) to assign numbers. > > While the problem NewGVN solves is that of finding all the Herb...
2006 Apr 17
1
Equivalence test and factors
Hello, helpeRs, I recently used a linear mixed effects model followed by ANOVA to assess the relationship between a categorical predictor variable with 2 levels (and random effects) and a numeric response variable. As I was concerned about the lack of a power analysis prior to data collection, it was suggested that I use an equivalence test to complement the conventional hypothesis test.
2012 Apr 28
2
Equivalent of Nothing (in VBA) or [] in Matlab in R
...questions. I am trying to call a blackbox api function implemented in as a COM object from R. The function definition says that 1. if calling from VBA, the first parameter should be set to "Nothing" 2. if calling from matlab, the first parameter should be set to [] What should be the equivalent for above in R?. Thanks lm -- View this message in context: http://r.789695.n4.nabble.com/Equivalent-of-Nothing-in-VBA-or-in-Matlab-in-R-tp4595385p4595385.html Sent from the R help mailing list archive at Nabble.com.
2006 Nov 10
2
hdparm equivalent for SATA
Hi, I was wanting to run the equivalent of "hdparm -Tt /dev/hda" except on a SATA hard disk. What is the equivalent command for an SATA drive? I was wanting to see what kind of speed I am getting on the SATA drive. thanks, Jerry
2007 May 21
2
Equivalent of 'Retain' statement in R
Hi R, What is the equivalent keyword for 'retain' statement of SAS in R? Thank you, Shubha [[alternative HTML version deleted]]
2008 Mar 11
2
SC.exe equivalent in Samba?
Hello everyone, I'm trying to determine if there is an equivalent to the WinXP/Vista/ Server command SC.exe (service control). From what I have gleaned, the svcctl API in Samba tries to replicate the other direction (controlling a Samba server's services/inits from Windows/MMC) but I'm looking to control a Windows server's services from (in my case) L...
2012 Feb 29
1
equivalent from gladder and ladder from stata
...yway, I am performing linar regression analysis. As a common cause of non-normally distributed residuals is non-normally predictor variables, i'm interested in achieving the best transformation of the predictors. I've seen some commands at R, but I would like to know if it exists a command equivalent to gladder (graphic display) , and another one equivalent to ladder (numeric results, look for the transformation with the smallest chi-square) Thanks in advance, show user at host.com as user at host.com -- View this message in context: http://r.789695.n4.nabble.com/equivalent-from-gladder-and-...
2008 Apr 25
4
Equivalent of Excel pivot tables in R
Can somebody tell me how to do the equivalent of a pivot table in R ? For example, if I have : var1 var2 var3 a x 10 b y 20 a z 10 b z 20 a z 10 b z 20 I could have : x y z a 1 0 2 b 0 1...
2016 Sep 01
3
[RFC] Interprocedural MIR-level outlining pass
...at lists.llvm.org> > Sent: Wednesday, August 31, 2016 7:02:57 PM > Subject: Re: [llvm-dev] [RFC] Interprocedural MIR-level outlining > pass > (and in particular, the definition of equivalence used by code > folding to make the dags is STH like "two VNDAG expressions are > equivalent if their operands come from VNDAG expressions with the > same opcode") > Thus, > VN2 = VN0 + VN1 > VN3 = VN1 + VN2 > is considered equivalent to > VN2 = VN0 + VN5 > VN3 = VN1 + VN2 > Despite the fact that this is completely illegal for straight > redundancy elim...
2011 Apr 07
2
[LLVMdev] GSoC 2011: Superoptimization for LLVM IR
...ted Superoptimizer") in that you don't intend > to exhaustively enumerate all possible code sequences, and see if they are > the same as the original only better; but instead start from the original > code > sequence and repeatedly apply transformations that change code to > equivalent > code, looking to see if you can eventually get something better than the > original. Is that right? > > Exactly. If we can use axioms/transformations/identities which don't modify the code behavior, but just tries to interpret instruction semantics in a different way, so as to fi...
2010 Feb 01
2
[LLVMdev] Equivalent alignment of __attribute__((__aligned__))
...ine the padding size, I'm trying to avoid using such code since I'm not sure which llvm platforms don't support __attribute__((__aligned__)). Knowing that malloc will give me an address aligned to any platform supported datatype, and knowing this minimum alignment (which I believe is equivalent to __attribute__((__aligned__))), I could calculate the above value. I'm currently using the alignment of long double instead. Any recommended way of determining this value or doing the equivalent? Garrison On Feb 1, 2010, at 14:09, Chris Lattner wrote: > > On Feb 1, 2010, at 11:06 A...
2014 Dec 05
3
[LLVMdev] Question on equivalence of pointer types
Is copy.0 semantically equivalent to copy.1 in the following example? define void @copy.0(i8 addrspace(1)* addrspace(1)* %src, i8 addrspace(1)* addrspace(1)* %dst) { entry: %val = load i8 addrspace(1)* addrspace(1)* %src store i8 addrspace(1)* %val, i8 addrspace(1)* addrspace(1)* %dst ret void } define void @copy.1(i8 addr...
2009 Dec 06
3
SAS "datalines" or "cards" statement equivalent in R?
Hi R Users, Is there a equivalent command in R where I can read in raw data? For example I'm looking for equivalent R code for following SAS code: DATA survey; INPUT id sex $ age inc r1 r2 r3 ; DATALINES; 1 F 35 17 7 2 2 17 M 50 14 5 5 3 33 F 45 6 7 2 7 49 M 24 14 7 5 7 65 F 52 9 4 7 7 81 M 44 11 7 7...