Displaying 10 results from an estimated 10 matches for "ternaryintfloat".
2011 Nov 22
2
[LLVMdev] PTX builtin functions.
Alberto,
The AMDIL backend solves your problem with intrinsic overloading this way:
def int_AMDIL_mad : GCCBuiltin<"__amdil_mad">, TernaryIntFloat;
Where TernaryIntFloat is defined as:
class TernaryIntFloat :
Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>,
LLVMMatchType<0>, LLVMMatchType<0>], []>;
This allows us to write a multi-def for int_AMDIL_mad like so:
defm MAD : TernaryIntrinsicFloat<...
2011 Nov 23
2
[LLVMdev] PTX builtin functions.
...mail.com> wrote:
>
> On Tue, Nov 22, 2011 at 5:01 PM, Villmow, Micah <Micah.Villmow at amd.com>
wrote:
> > Alberto,
> > The AMDIL backend solves your problem with intrinsic overloading this
way:
> > def int_AMDIL_mad : GCCBuiltin<"__amdil_mad">, TernaryIntFloat;
> >
> > Where TernaryIntFloat is defined as:
> > class TernaryIntFloat :
> > Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>,
> > LLVMMatchType<0>, LLVMMatchType<0>], []>;
> >
> > This allows us to write a multi-de...
2011 Nov 23
0
[LLVMdev] PTX builtin functions.
On Tue, Nov 22, 2011 at 5:01 PM, Villmow, Micah <Micah.Villmow at amd.com> wrote:
> Alberto,
> The AMDIL backend solves your problem with intrinsic overloading this way:
> def int_AMDIL_mad : GCCBuiltin<"__amdil_mad">, TernaryIntFloat;
>
> Where TernaryIntFloat is defined as:
> class TernaryIntFloat :
> Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>,
> LLVMMatchType<0>, LLVMMatchType<0>], []>;
>
> This allows us to write a multi-def for int_AMDIL_mad like so:
> d...
2011 Nov 23
0
[LLVMdev] PTX builtin functions.
...>
> > On Tue, Nov 22, 2011 at 5:01 PM, Villmow, Micah <Micah.Villmow at amd.com>
wrote:
> > > Alberto,
> > > The AMDIL backend solves your problem with intrinsic overloading
this way:
> > > def int_AMDIL_mad : GCCBuiltin<"__amdil_mad">, TernaryIntFloat;
> > >
> > > Where TernaryIntFloat is defined as:
> > > class TernaryIntFloat :
> > > Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>,
> > > LLVMMatchType<0>, LLVMMatchType<0>], []>;
> > >
> > >...
2011 Dec 04
2
[LLVMdev] PTX builtin functions.
...M, Villmow, Micah <Micah.Villmow at amd.com>
>> > wrote:
>> > > Alberto,
>> > > The AMDIL backend solves your problem with intrinsic overloading this
>> > > way:
>> > > def int_AMDIL_mad : GCCBuiltin<"__amdil_mad">, TernaryIntFloat;
>> > >
>> > > Where TernaryIntFloat is defined as:
>> > > class TernaryIntFloat :
>> > > Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>,
>> > > LLVMMatchType<0>, LLVMMatchType<0>], []>;
>>...
2011 Dec 08
3
[LLVMdev] PTX builtin functions.
...amd.com<mailto:Micah.Villmow at amd.com>>
>> > wrote:
>> > > Alberto,
>> > > The AMDIL backend solves your problem with intrinsic overloading this
>> > > way:
>> > > def int_AMDIL_mad : GCCBuiltin<"__amdil_mad">, TernaryIntFloat;
>> > >
>> > > Where TernaryIntFloat is defined as:
>> > > class TernaryIntFloat :
>> > > Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>,
>> > > LLVMMatchType<0>, LLVMMatchType<0>], []>;
>>...
2011 Dec 05
0
[LLVMdev] PTX builtin functions.
...llmow at amd.com>
> >> > wrote:
> >> > > Alberto,
> >> > > The AMDIL backend solves your problem with intrinsic overloading
> this
> >> > > way:
> >> > > def int_AMDIL_mad : GCCBuiltin<"__amdil_mad">, TernaryIntFloat;
> >> > >
> >> > > Where TernaryIntFloat is defined as:
> >> > > class TernaryIntFloat :
> >> > > Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>,
> >> > > LLVMMatchType<0>, LLVMMatchType<...
2011 Dec 08
0
[LLVMdev] PTX builtin functions.
...llmow at amd.com>
> >> > wrote:
> >> > > Alberto,
> >> > > The AMDIL backend solves your problem with intrinsic overloading
> this
> >> > > way:
> >> > > def int_AMDIL_mad : GCCBuiltin<"__amdil_mad">, TernaryIntFloat;
> >> > >
> >> > > Where TernaryIntFloat is defined as:
> >> > > class TernaryIntFloat :
> >> > > Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>,
> >> > > LLVMMatchType<0>, LLVMMatchType<...
2011 Nov 22
0
[LLVMdev] PTX builtin functions.
On Mon, Nov 21, 2011 at 5:31 PM, Justin Holewinski
<justin.holewinski at gmail.com> wrote:
> On Mon, Nov 21, 2011 at 11:45 AM, Alberto Magni <alberto.magni86 at gmail.com>
> wrote:
>>
>> On Mon, Nov 21, 2011 at 3:36 PM, Justin Holewinski
>> <justin.holewinski at gmail.com> wrote:
>> > On Mon, Nov 21, 2011 at 7:01 AM, Alberto Magni
>> >
2011 Nov 21
2
[LLVMdev] PTX builtin functions.
On Mon, Nov 21, 2011 at 11:45 AM, Alberto Magni
<alberto.magni86 at gmail.com>wrote:
> On Mon, Nov 21, 2011 at 3:36 PM, Justin Holewinski
> <justin.holewinski at gmail.com> wrote:
> > On Mon, Nov 21, 2011 at 7:01 AM, Alberto Magni <
> alberto.magni86 at gmail.com>
> > wrote:
> >>
> >> Hi Justin,
> >>
> >> attached you find