search for: int_amdil_mad

Displaying 10 results from an estimated 10 matches for "int_amdil_mad".

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...
2011 Nov 23
2
[LLVMdev] PTX builtin functions.
...011 6:57 AM, "Alberto Magni" <alberto.magni86 at gmail.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>...
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...
2011 Nov 23
0
[LLVMdev] PTX builtin functions.
...o Magni" <alberto.magni86 at gmail.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&gt...
2011 Dec 04
2
[LLVMdev] PTX builtin functions.
...ote: >> > >> > 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>, >> > >          L...
2011 Dec 08
3
[LLVMdev] PTX builtin functions.
..., Nov 22, 2011 at 5:01 PM, Villmow, Micah <Micah.Villmow at 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>, >> > > L...
2011 Dec 05
0
[LLVMdev] PTX builtin functions.
...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>, > >...
2011 Dec 08
0
[LLVMdev] PTX builtin functions.
...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>, > >...
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