search for: chihong

Displaying 6 results from an estimated 6 matches for "chihong".

Did you mean: zhihong
2011 Mar 22
1
[LLVMdev] [PATCH] OpenCL half support
On Mar 21, 2011, at 1:59 PM, Zhang, Chihong wrote: > Hi Chris, > > It is important for embedded/mobile computation to have efficient fp16 support, otherwise those users will suffer from the merging problem with their local LLVM with native fp16 type they add (locally). So we should either add full fp16 support as a basic floating...
2011 Apr 04
0
[LLVMdev] [PATCH] OpenCL half support
Chihong, I notice that IEEE-754-2008 does in fact define a 16-bit floating point standard now, does your processor conform to that standard, if so there should be no objection to adding fp16 to LLVM and you should have no problem using it, at least that's what I think Chris is t...
2011 Mar 21
0
[LLVMdev] [PATCH] OpenCL half support
...p16 support, otherwise those users will suffer from the merging problem with their local LLVM with native fp16 type they add (locally). So we should either add full fp16 support as a basic floating point type or enhance the LLVM infrastructure to make floating point type as scalable as int type. -Chihong -----Original Message----- From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Chris Lattner Sent: Monday, March 21, 2011 11:26 AM To: Anton.Lokhmotov at arm.com Cc: llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] [PATCH] OpenCL half support On Mar 21, 2011, a...
2011 Mar 21
2
[LLVMdev] [PATCH] OpenCL half support
On Mar 21, 2011, at 3:44 AM, Anton Lokhmotov wrote: >> Adding half float to LLVM IR is *only* reasonable if you have hardware >> that supports half float, or if you want to add softfloat operations >> for these. > Yes, our graphics hardware natively supports some fp16 arithmetic > operations. Ok. >> Just like C compilers need to know sizeof(long), sizeof(void*) and
2010 Apr 13
0
[LLVMdev] LLVM compiler development job openings in Qualcomm
...eeking for LLVM compiler developers for its OpenCL solution. This is full time position in San Diego, CA. You can check http://compilerjobs.com/db/jobs_view.php?editid1=316 for more detailed job description or directly send resume to czhang at qualcomm.com<mailto:czhang at qualcomm.com>. - Chihong -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100413/cd92ecaf/attachment.html>
2011 May 03
3
[LLVMdev] Loop-Unroll optimization
Hi, You might want to try running -loops -loop-simplify before loop unroll. >From loop simplify.cpp This pass performs several transformations to transform natural loops into a00011 // simpler form, which makes subsequent analyses and transformations simpler and00012 // more effective. Arushi On Tue, May 3, 2011 at 2:17 PM, Manish Gupta <mgupta.iitr at gmail.com> wrote: > You