search for: overlap1

Displaying 2 results from an estimated 2 matches for "overlap1".

Did you mean: overlap
2006 Mar 01
3
Optimization problem: selecting independent rows to maximize the mean
...mns. The rows represent spatial polygons, some of which overlap others (i.e., not all rows are independent of each other). Given a particular row, the first column contains a unique "RowID". The second column contains the "Variable" of interest. The remaining 100 columns ("Overlap1" ... "Overlap100") each contain a row ID that overlaps this row (but if this row overlaps fewer than 100 other rows then the remainder of the columns "OL1...OL100" contain NA). Here's the problem: I need to select the subset of 500 independent rows that maximizes the m...
2006 Dec 19
3
[LLVMdev] alias-aware scheduling
...eturn!((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1); + } + + // If we know both bases then they can't alias. + if (KnownBase1 && KnownBase2) return false; + + if (SchedulerMemoryDisambiguationAA) { + // Use alias analysis information. + int Overlap1 = Size1 + SrcValueOffset1 + Offset1; + int Overlap2 = Size2 + SrcValueOffset2 + Offset2; + AliasAnalysis::AliasResult AAResult = + AA.alias(SrcValue1, Overlap1, SrcValue2, Overlap2); + if (AAResult == AliasAnalysis::NoAlias) + return false; +...