Displaying 20 results from an estimated 42 matches for "uniquifier".
Did you mean:
uniquified
2020 Sep 23
4
(no subject)
...idea?
For context: This seems to be designed to let LLVM implement a GNU
extension in COFF libraries. However, it leads to very different behavior
than we see for cl.exe (and ml.exe) on Windows; for already-defined
aliasees, it injects an alternate placeholder
".weak.<alias>.default.<uniquifier>" symbol which resolves back to the
current location. I admit, I'm not quite sure how this helps. If anyone can
explain the purpose, I'd really appreciate it!
In Windows PE/COFF files, aliases typically just resolve to their target
symbol. For an example, see https://reviews.llvm.o...
2013 Jan 01
3
[LLVMdev] [RFC] Overhauling Attributes
On Dec 31, 2012, at 4:37 AM, Duncan Sands <baldrick at free.fr> wrote:
> Hi Bill,
>
> On 30/12/12 03:21, Bill Wendling wrote:
>> Hi Rafael,
>>
>> Sorry, I forgot to respond to this. They can be arbitrary strings that are known only to the specific back-end. It may be beneficial to define them inside of the LangRef document though.
>
> this sounds so much
2012 Oct 08
0
[LLVMdev] SCEV bottom value
On Sun, 7 Oct 2012 18:53:59 -0700
Preston Briggs <preston.briggs at gmail.com> wrote:
> I'd like a value, call it Bottom, such that
>
> SE->getAddExpr(Bottom, X) => Bottom
> SE->getMulExpr(Bottom, X,) => Bottom
> isKnownPredicate(any, Bottom, X) => false
> etc.
>
>
> I can write code to make NULL work like I want, but it would be
> simpler
2012 Oct 08
3
[LLVMdev] SCEV bottom value
I'd like a value, call it Bottom, such that
SE->getAddExpr(Bottom, X) => Bottom
SE->getMulExpr(Bottom, X,) => Bottom
isKnownPredicate(any, Bottom, X) => false
etc.
I can write code to make NULL work like I want, but it would be simpler if
something was already defined. I'm wondering about SCEV::Unknown. The
documentation suggests I could perhaps use it for a
2008 Jun 19
2
S4 pass-by-value work-around?
Howdy all,
I have a problem that I'd like some advice/help in solving---it has to do
with R's pass-by-value system. I understand the issue, but am wondering if
anyone has found a working solution in dealing with it for cases when one
wants to modify an object inside of a method, specifically when working with
S4. I'm aware that R.oo is able to deal with this using S3, but I'd
2015 Nov 17
0
[PATCH 1/3] mllib: Add sort_uniq function.
This is copied from supermin.
---
mllib/common_utils.ml | 16 ++++++++++++++++
mllib/common_utils.mli | 6 ++++++
2 files changed, 22 insertions(+)
diff --git a/mllib/common_utils.ml b/mllib/common_utils.ml
index 13e9256..5fb7183 100644
--- a/mllib/common_utils.ml
+++ b/mllib/common_utils.ml
@@ -267,6 +267,22 @@ let rec assoc ?(cmp = compare) ~default x = function
| (y, y') :: _ when
2013 Jan 11
0
[LLVMdev] [RFC] Overhauling Attributes
I would like to add something to atttributes.h, attributes.cpp in the
interim until your full scheme is available.
A new attribute called "target" would be added to AttrKind.
And target can take a list of strings.
target("foo", "goo")
For example.
I would add a component targetAttrs to AttrBuilder
Will this meet with resistance if I try and put this back?
Reed
2012 Oct 08
1
[LLVMdev] SCEV bottom value
Hi Preston,
I was wondering ... "Bottom" is a bit overloaded as far as terms go. Would SCEVNaN be a better name for this beast?
Sameer.
> -----Original Message-----
> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On
> Behalf Of Sameer Sahasrabuddhe
> Sent: Monday, October 08, 2012 9:16 AM
> To: preston.briggs at gmail.com
> Cc: LLVM
2013 Jan 11
1
[LLVMdev] [RFC] Overhauling Attributes
Looks like new attribute work is moving along quickly
Maybe I should just wait.
???
On 01/11/2013 03:09 PM, Reed Kotler wrote:
> I would like to add something to atttributes.h, attributes.cpp in the
> interim until your full scheme is available.
>
> A new attribute called "target" would be added to AttrKind.
>
> And target can take a list of strings.
>
>
2018 May 29
2
Can creating new forms of debug info metadata be simplified? [formatting fixed]
Thanks all for your response.
On Tue, May 29, 2018, at 5:38 PM, Duncan P. N. Exon Smith wrote:
>
>
>> On May 29, 2018, at 12:55, Adrian Prantl <aprantl at apple.com> wrote:
>>
>>
>>
>>> On May 29, 2018, at 12:28 PM, David Blaikie <dblaikie at gmail.com> wrote:
>>>
>>> +some of the debug info cabal (& Duncan, as an
2008 Jul 11
1
mpirun question with Rmpi
Dear R People:
I'm running Rmpi on a single machine and I have the following
statement from the command line:
mpirun -np 3 ./R --no-save < eek1.in >stuff4.out
The stuff4.out file only contains the third result. Is there a way to
fix this such that it shows all 3 sets, please
Thanks in advance,
Erin
--
Erin Hodgess
Associate Professor
Department of Computer and Mathematical
2008 Sep 22
1
zoo: hourly values (local time) not unique
Hi!
I've got a time series as a zoo object which contains hourly values. My problem is that these values occur in every "real" hour with regard to daylight savings time. I.e. the last sunday in march, i'll have 23values whereas the last sunday in october contains 25 values instead of 24.
Thus if I try to aggregate the data using for example tapply (e.g. to get a monthly mean),
2012 Dec 31
0
[LLVMdev] [RFC] Overhauling Attributes
Hi Bill,
On 30/12/12 03:21, Bill Wendling wrote:
> Hi Rafael,
>
> Sorry, I forgot to respond to this. They can be arbitrary strings that are known only to the specific back-end. It may be beneficial to define them inside of the LangRef document though.
this sounds so much like metadata... What was the reason for not enhancing
metadata to cover this use case? I'm sure you explained
2016 Jul 07
0
[PATCH v3 4/8] mllib: Add some imperative list manipulation functions.
This adds imperative list manipulation functions inspired by Perl.
The functions are passed list refs which get updated in place.
This allows us to replace some awkward pure functional code like:
let xs = ys in
let xs = if foo then xs @ zs else xs in
with:
let xs = ref ys in
if foo then append xs zs;
---
mllib/common_utils.ml | 20 ++++++++++++++++++++
mllib/common_utils.mli | 36
2006 Jun 27
3
belongs_to <parent name>, :foreign_key modifier not working
All,
I have two ActiveRecord objects.
TargetList has_many Targets
Targets belongs_to TargetList
I''ve specified
belongs_to :target_list,
:foreign_key => ''DataSetID''
Queries generated by various methods in target_list do not seem to see
the
foreign_key name and keep trying to query my Target table using
"target_list_id" (the default foreign
2018 May 29
0
Can creating new forms of debug info metadata be simplified? [formatting fixed]
> On May 29, 2018, at 15:33, Sohail Somani (Fizz Buzz Inc.) <sohail at fizzbuzzinc.com> wrote:
>
> Thanks all for your response.
>
> On Tue, May 29, 2018, at 5:38 PM, Duncan P. N. Exon Smith wrote:
>>
>>
>>> On May 29, 2018, at 12:55, Adrian Prantl <aprantl at apple.com> wrote:
>>>
>>>
>>>
>>>> On May 29,
2016 Sep 23
2
[PATCH 1/2] mllib: move remove_duplicates from v2v
Simple code motion.
---
mllib/common_utils.ml | 9 +++++++++
mllib/common_utils.mli | 6 ++++++
v2v/utils.ml | 9 ---------
v2v/utils.mli | 3 ---
4 files changed, 15 insertions(+), 12 deletions(-)
diff --git a/mllib/common_utils.ml b/mllib/common_utils.ml
index 81d8202..78618f5 100644
--- a/mllib/common_utils.ml
+++ b/mllib/common_utils.ml
@@ -297,6 +297,15 @@ let sort_uniq
2012 Dec 30
5
[LLVMdev] [RFC] Overhauling Attributes
Hi Rafael,
Sorry, I forgot to respond to this. They can be arbitrary strings that are known only to the specific back-end. It may be beneficial to define them inside of the LangRef document though.
-bw
On Oct 4, 2012, at 7:47 PM, Rafael EspĂndola <rafael.espindola at gmail.com> wrote:
>> attrgroup #1 = { "long-calls", "cpu=cortex-a8", "thumb" }
2018 May 29
0
Can creating new forms of debug info metadata be simplified? [formatting fixed]
> On May 29, 2018, at 12:55, Adrian Prantl <aprantl at apple.com> wrote:
>
>
>
>> On May 29, 2018, at 12:28 PM, David Blaikie <dblaikie at gmail.com <mailto:dblaikie at gmail.com>> wrote:
>>
>> +some of the debug info cabal (& Duncan, as an emeritus member, and person who plumbed a lot of the current debug info syntax support in)
>>
2011 Jan 20
6
Identify duplicate numbers and to increase a value
Hi everybody.
I want to identify duplicate numbers and to increase a value of 0.01 for each time that it is duplicated.
Example:
x=c(1,2,3,5,6,2,8,9,2,2)
I want to do this:
1
2 + 0.01
3
5
6
2 + 0.02
8
9
2 + 0.03
2 + 0.04
I am trying to get something like this:
1
2.01
3
5
6
2.02
8
9
2.03
2.04
Actually I just know the way to identify the duplicated numbers
rbind(x, duplicated(x) |