<div dir="ltr">This is cool.  I'm very glad to see your PhD research was done in a production environment and that you are open-sourcing it.<div><br></div><div>PACXX looks a lot like SYCL.  Have you considered whether it can be evolved into a high-quality implementation of the SYCL standard API?  There's a lot of value in implementing a standardized API with multiple implementations.  I've used ComputeCpp, triSYCL, and sycl-gtx recently, and each has limitations that could be overcome by having SYCL support in Clang/LLVM.<div><br></div><div>Your contribution of a good SYCL implementation would be really valuable, since there appears to be no implementation that both performs well and is open-source.  I completely understand if you have no time in turn PACXX into SYCL, but if you have technical arguments against doing so even if time permitted, I think they'd be useful to share, although perhaps not in this forum.<div><br></div><div>On a practical level, PACXX seems to require some software hardening.  I tried to follow the docs and build it locally, but had some issues (GitHub issues were created, so I'll omit details here) and ultimately failed to compile your example program.  I'd love to be able to try it out, since I've recently evaluated SYCL and Boost.Compute using <a href="https://github.com/ParRes/Kernels">https://github.com/ParRes/Kernels</a>, and it seems like PACXX is a peer of these.</div><div><br></div><div>Best,</div><div><br></div><div>Jeff</div><div><br></div><div><br></div><div><div class="gmail_extra"><div class="gmail_quote">On Sun, Feb 4, 2018 at 11:50 PM, Haidl, Michael via cfe-dev <span dir="ltr"><<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">HI LLVM comunity,<br>
<br>
after 3 years of development, various talks on LLVM-HPC and EuroLLVM and other scientific conferences I want to present my PhD research topic to the lists.<br>
<br>
The main goal for my research was to develop a single-source programming model equal to CUDA or SYCL for accelerators supported by LLVM (e.g., Nvidia GPUs). PACXX uses Clang as front-end for code generation and comes with a runtime library (PACXX-RT) to execute kernels on the available hardware. Currently, PACXX supports Nvidia GPUs through the NVPTX Target and CUDA, CPUs through MCJIT (including whole function vectorization thanks to RV [1]) and has an experimental back-end for AMD GPUs using the AMDGPU Target and ROCm.<br>
<br>
The main idea behind PACXX is the use of the LLVM IR as kernel code representation which is integrated into the executable together with the PACXX-RT. At runtime of the program the PACXX-RT compiles the IR to the final MC level and hands it over to the device. Since, PACXX does currently not enforce any major restrictions on the C++ code we managed to run (almost) arbitrary C++ code on GPUs including range-v3 [2, 3].<br>
<br>
A short vector addition example using PACXX:<br>
<br>
using namespace pacxx::v2;<br>
int main(int argc, char *argv[]) {<br>
   // get the default executor<br>
   auto &exec = Executor::get();<br>
    size_t size = 128;<br>
    std::vector<int> a(size, 1);<br>
    std::vector<int> b(size, 2);<br>
    std::vector<int> c(size, 0);<br>
<br>
    // allocate device side memory<br>
    auto &da = exec.allocate<int>(a.size());<br>
    auto &db = exec.allocate<int>(b.size());<br>
    auto &dc = exec.allocate<int>(c.size());<br>
    // copy data to the accelerator<br>
    da.upload(a);<br>
    db.upload(b);<br>
    dc.upload(c);<br>
    // get the raw pointer<br>
    auto pa = da.get();<br>
    auto pb = db.get();<br>
    auto pc = dc.get();<br>
<br>
    // define the computation<br>
    auto vadd = [=](auto &config) {<br>
      auto i = config.get_global(0);<br>
      if (i < size)<br>
       pc[i] = pa[i] + pb[i];<br>
    };<br>
<br>
    // launch and synchronize<br>
    std::promise<void> promise;<br>
    auto future = exec.launch(vadd, {{1}, {128}}, promise);<br>
    future.wait();<br>
    // copy back the data<br>
    dc.download(c);<br>
}<br>
<br>
Recently, I open sourced PACXX on github [3] under the same license LLVM is currently using.<br>
Since my PhD is now in its final stage I wanted to ask if there is interest in having such an SPMD programming model upstreamed.<br>
PACXX is currently on par with release_60 and only requires minor modifications to Clang, e.g., a command line switch, C++ attributes, some diagnostics and metadata generation during code gen.<br>
The PACXX-RT can be integrated into the LLVM build system and may remain a standalone project. (BTW, may I ask to add PACXX to the LLVM projects?).<br>
<br>
Looking forward for your feedback.<br>
<br>
Cheers,<br>
Michael Haidl<br>
<br>
[1] <a href="https://github.com/cdl-saarland/rv" rel="noreferrer" target="_blank">https://github.com/cdl-<wbr>saarland/rv</a><br>
[2] <a href="https://github.com/ericniebler/range-v3" rel="noreferrer" target="_blank">https://github.com/<wbr>ericniebler/range-v3</a><br>
[3] <a href="https://dl.acm.org/authorize?N20051" rel="noreferrer" target="_blank">https://dl.acm.org/authorize?<wbr>N20051</a><br>
[4] <a href="https://github.com/pacxx/pacxx-llvm" rel="noreferrer" target="_blank">https://github.com/pacxx/<wbr>pacxx-llvm</a><br>
______________________________<wbr>_________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/cfe-dev</a><br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature">Jeff Hammond<br><a href="mailto:jeff.science@gmail.com" target="_blank">jeff.science@gmail.com</a><br><a href="http://jeffhammond.github.io/" target="_blank">http://jeffhammond.github.io/</a></div>
</div></div></div></div></div>