项目作者: MrSpadala

项目描述 :
TornadoVM experiments with GPU support.
高级语言: Java
项目地址: git://github.com/MrSpadala/TornadoVM-experiments.git
创建时间: 2021-02-15T14:21:35Z
项目社区:https://github.com/MrSpadala/TornadoVM-experiments

开源协议:

下载


TornadoVM experiments

This repository contains some experiments made with TornadoVM with GPU support.

  • Hampel.java Implementation of the Hampel filter
  • ReductionAvgFloats.java Average reduction of a float array
  • KMeans.java Implementation of the baseline KMeans algorithm

How to run

To build your code use one of the commands inside the build script, for example:

  1. ./nvidia_docker_run.sh javac.py Hampel.java

To run:

  1. ./nvidia_docker_run.sh tornado Hampel

The directory opencl_generated/ contains some OpenCL code generated by TornadoVM. The file generated_sum.c is analyzed and commented to understand how TornadoVM handles reductions, which are not a trivial task to parallelize on a GPU.
To see the generated code pass the flag tornado --printKernel when running the code (OpenCL kernel is generated at runtime, not at compilation time).

Performance

The directory perf/ contains some plots of the performances obtained with TornadoVM, compared with the sequential execution by the CPU. For example with Hampel filter:

Requirements

Docker image of TornadoVM with GPU support, https://github.com/beehive-lab/docker-tornado

References