SkePU

Frequently Asked Questions (FAQ)

What is SkePU?

SkePU is a skeleton programming framework for modern GPU based systems. It is a research project hosted at Linköping University, Sweden. For more information about skeletons and SkePU, please visit the SkePU homepage.

What does SkePU stand for?

"Ske" stands for SKEletons and "PU" stands for Processing Unit. The motivation behind the name is that SkePU aims to provide portable skeletons with back-ends (implementations) for multiple types of processing units as present in the modern GPU-based systems (CPUs, GPUs).

How do you install SkePU?

You don't need to install it. It is a C++ template include library. You use it by including the appropriate header files for skeletons and containers that you use in your program (see examples folder for code examples). You compile your program using normal C++/CUDA compilers. We mainly use:

How do you compile SkePU programs?

The compilation is straightforward in most cases. Following are some possible compilation commands to enable certain kind of skeleton implementations: OBS: The compilation command on your machine may look different depending upon the compiler versions and/or installation paths.

Why two different file extensions (".cpp" and ".cu") in SkePU programs?

There is a technical reason for that. As SkePU is an include library so using CUDA skeleton implementations (backend) would include all CUDA code in the program. For compiling CUDA code, we use nvcc compiler and it requires ".cu" extension to compile any file containing CUDA code as it internally invokes different compiler for CUDA and C++ code.

Can we use both CUDA and OpenCL skeleton implementations at the same time?

No. You cannot do that as the nvcc compiler will complain about any OpenCL code it finds when compiling a file containing some CUDA code.

How do you control number of GPUs used by SkePU?

Use the "SKEPU_NUMGPU" flag. As for other flags, define it above any SkePU include headers. For example "#define SKEPU_NUMGPU 2" will ask SkePU to use 2 GPUs (if available). By setting it to "0", SkePU tries to find all available GPUs and try to use them for skeleton calls. Default is "1".

How can I control OpenMP threads?

By default, SkePU will try to use as many OpenMP threads as possible. If you want to use a specific number of OpenMP threads, you can define "SKEPU_OPENMP_THREADS" flag before any SkePU include headers. For example, "#define SKEPU_OPENMP_THREADS 8"

How can I control CUDA/OpenCL threads?

If, for some reason, you need to control how many CUDA/OpenCL threads should be used, you can do that by specifying the "SKEPU_MAX_GPU_BLOCKS" flag above any SkePU include headers. By default SkePU tries to use the maximum number of threads possible. In some cases (e.g., when you are using too many registers in a user function) you may want to use fewer threads. This flag can help in those situations.