Displaying 3 results from an estimated 3 matches for "c8351864".
Did you mean:
851864
2011 Apr 01
0
[LLVMdev] [Discussion] Portable SIMD programming using LLVM?
Hi Kevin,
> *Background*
> Almost modern processor families support SIMD instruction sets but the
> instruction set designs for each platform have different combinations of
> operations. The portable SIMD here is to make an uniform system of SIMD
> operations at all power-of-2 field widths.
> For example, for simd_add on SSE2, I want to have all the following operations
>
2011 Apr 01
1
[LLVMdev] [Discussion] Portable SIMD programming using LLVM?
...> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110401/c8351864/attachment.html>
2011 Mar 28
2
[LLVMdev] [Discussion] Portable SIMD programming using LLVM?
Hello all,
I am currently working on building a portable SIMD programming model(SIMD
within a register) for various platforms, like x86, ARM and so on. I know
that LLVM supports SIMD programming on many architectures, so I am thinking
of using LLVM to help build this model but I not quite sure whether LLVM can
help.
The following describes the details of the model and also my current
approach