<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Mon, Oct 6, 2014 at 11:25 AM, lipengcheng <span dir="ltr"><<a href="mailto:pli@cs.rochester.edu" target="_blank">pli@cs.rochester.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div style="word-wrap:break-word">Thanks, Eli.<div><br></div><div>May I know what your initial support is? Can you please open it to me?</div><div>I don’t need too strong CUDA support, say generating CUDA code to LLVM</div><div>IR. What I only need to do is to parse CUDA code to Clang AST, and then</div><div>translate it back .</div><div><br></div></div></blockquote><div><br></div><div>So this part should already work, if you're careful. The main missing parts for just parsing the CUDA source into the AST are:</div><div><br></div><div>1. Real support for the threadIdx, blockIdx, etc. special globals</div><div>2. Various header definitions for __global__ & friends, CUDA builtins, etc.</div><div><br></div><div>If all you need is to *parse*, then a simple header like <a href="https://gist.github.com/eliben/b014ac17cbe5a452803f">https://gist.github.com/eliben/b014ac17cbe5a452803f</a> should do the trick.</div><div><br></div><div>Then you can do:</div><div><br></div><div>$ clang  -cc1 -ast-dump -x cuda  -include <path-to-header-file-in-gist> <a href="http://cuda-input-file.cu">cuda-input-file.cu</a></div><div><br></div><div>And this should dump the AST. If you need to support more CUDA builtins (and/or runtime functions), you should add them to the header, *or* try to get Clang to parse the NVIDIA CUDA headers.</div><div><br></div><div>Eli</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div style="word-wrap:break-word"><div></div><div>Thanks,</div><div>Pengcheng</div><div><div class="h5"><div><br><div><div>On Oct 6, 2014, at 12:34 PM, Eli Bendersky <<a href="mailto:eliben@google.com" target="_blank">eliben@google.com</a>> wrote:</div><br><blockquote type="cite">
<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Oct 6, 2014 at 6:40 AM, lipengcheng <span dir="ltr"><<a href="https://urldefense.proofpoint.com/v1/url?u=http://mailto:pli%40cs.rochester.edu&k=p4Ly7qpEBiYPBVenR9G2iQ%3D%3D%0A&r=8jiWUOA7YNYuE%2FO4heswhF5KaS3dN4VEfeX8hooBpaw%3D%0A&m=Ndab2z%2B8lUH2UWs3LWtnM9Cai6wVRsOxorwsUutFIqM%3D%0A&s=b573ee104d18abf760999f0d33766404caaf2d891bf0bcb90fd60c8cadd7232b" target="_blank">pli@cs.rochester.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">> Hi there,<br>
><br>
> May I ask what’s the status of supporting CUDA on Clang?<br>
> Are there any incomplete patches to use for CUDA? I am doing<br>
> a source-to-source translation work for CUDA based on Clang.<br>
><br>
> Thanks,<br>
> Pengcheng<br><br></blockquote><div><br></div><div>Hi Pengcheng,</div><div><br></div><div>CUDA is still only partially supported. This has been discussed a few times this year:</div><div><br></div><div><a href="https://urldefense.proofpoint.com/v1/url?u=http://lists.cs.uiuc.edu/pipermail/cfe-dev/2014-September/038979.html&k=p4Ly7qpEBiYPBVenR9G2iQ%3D%3D%0A&r=8jiWUOA7YNYuE%2FO4heswhF5KaS3dN4VEfeX8hooBpaw%3D%0A&m=Ndab2z%2B8lUH2UWs3LWtnM9Cai6wVRsOxorwsUutFIqM%3D%0A&s=49732052e1fd12cadb980beea32db56ab3523a57d889cf839753864eed1a8b28" target="_blank">http://lists.cs.uiuc.edu/pipermail/cfe-dev/2014-September/038979.html</a><br></div><div><a href="https://urldefense.proofpoint.com/v1/url?u=http://lists.cs.uiuc.edu/pipermail/cfe-dev/2014-March/035782.html&k=p4Ly7qpEBiYPBVenR9G2iQ%3D%3D%0A&r=8jiWUOA7YNYuE%2FO4heswhF5KaS3dN4VEfeX8hooBpaw%3D%0A&m=Ndab2z%2B8lUH2UWs3LWtnM9Cai6wVRsOxorwsUutFIqM%3D%0A&s=4e85032739b5ab7b3bc84963f894a88d40ccd6d71b27630a6b17221e44aec8ee" target="_blank">http://lists.cs.uiuc.edu/pipermail/cfe-dev/2014-March/035782.html</a><br></div><div><br></div><div>Things haven't changed significantly since then. Patches welcome!</div><div>Eli</div><div><br></div><div> </div></div><br></div></div>
</blockquote></div><br></div></div></div></div></blockquote></div><br></div></div>