OpenACC Still Not Loved By Open Compilers

Written by Michael Larabel in Programming on 4 December 2012 at 08:17 PM EST. 3 Comments
PROGRAMMING
While an open industry standard, the leading open-source compilers still lack support for the OpenACC parallel programming standard.

The OpenACC 1.0 API has been public for more than one year as an open standard to simplify parallel programming on CPUs and GPUs, but to this point it's basically only backed by commercial compilers. OpenACC is similar to OpenMP in terms of using PRAGMA compiler directives and special functions for tapping multiple CPU cores in an easy and straight-forward manner with C/C++ and Fortran code, but unlike OpenMP, OpenACC is also aware of GPUs.

The main compilers supporting OpenACC 1.0 are PGI, Cray, and CAPS/HMPP. Even with the forthcoming releases of GCC 4.8 and LLVM/Clang 3.2, there's still no OpenACC support. (LLVM/Clang is also still lacking mainline support for OpenMP.)

Introduced last month at the Super Computing '12 conference in Salt Lake City, a draft version of OpenACC 2.0 was also made public for review. OpenACC introduces new controls for handling data movement, better handling of unstructured data, improvements in dealing with non-contiguous memory, support for explicit function calls, and other new functionality to make happy HPC programmers. The tentative OpenACC 2.0 specification can be found on the standard's website.

Hopefully in 2013 we will begin to see open-source compilers like LLVM/Clang and GCC beginning to support OpenACC for exposing new parallel computing capabilities. On a semi-related note, last month Intel showcased Shevlin Park, an effort to make Microsoft's C++ AMP (Accelerated Massive Parallelism) multi-platform by porting it to LLVM/Clang.
Related News
About The Author
Michael Larabel

Michael Larabel is the principal author of Phoronix.com and founded the site in 2004 with a focus on enriching the Linux hardware experience. Michael has written more than 20,000 articles covering the state of Linux hardware support, Linux performance, graphics drivers, and other topics. Michael is also the lead developer of the Phoronix Test Suite, Phoromatic, and OpenBenchmarking.org automated benchmarking software. He can be followed via Twitter, LinkedIn, or contacted via MichaelLarabel.com.

Popular News This Week