search for: 7a450283

Displaying 2 results from an estimated 2 matches for "7a450283".

2013 May 03
0
[LLVMdev] Handling Masked Vector Operations
Hi David, On 02/05/13 17:57, dag at cray.com wrote: > We're looking at how to handle masked vector operations in architectures > like Knight's Corner. In our case, we have to translate from a fully > vectorized IR that has mask support to llvm IR which does not have mask > support. > > For non-trapping instructions this is fairly straightforward: > > ; Input >
2013 May 02
8
[LLVMdev] Handling Masked Vector Operations
We're looking at how to handle masked vector operations in architectures like Knight's Corner. In our case, we have to translate from a fully vectorized IR that has mask support to llvm IR which does not have mask support. For non-trapping instructions this is fairly straightforward: ; Input t1 = add t2, t3, mask ; llvm IR -- assuming we want zeros in the false positions, which is not