Accelerating ggplot2 based projection on r-map using NVIDIA GPU
Abstract
With an increasing amount of user and data demands for fast data processing, the optimization of database operations continues to be a challenging work. A common optimization technique is to leverage parallel hardware architectures. With the introduction of general-purpose GPU computing, massively parallel hardware has become available within commodity hardware. To efficiently exploit this technology, we introduce the method of speculative query processing. Moreover, as the dataset grows increasingly larger, multiple-thread spatial query sometimes cannot meet the performance requirement. The concept of GPU-accelerated parallel computing turns the massive computational power of a modern graphics accelerator's shader pipeline into general-purpose computing power, as opposed to being hard wired solely to do graphical operations. In certain applications requiring massive vector operations, this can yield several orders of magnitude higher performance than a conventional CPU. R is a free software environment for graphics and statistical computing that provides a programming language and built-in libraries of mathematics operations for data analysis, statistics, machine learning and much more. R programs tend to process large amounts of data, and often have significant independent data and task parallelism. Therefore, R applications stand to benefit from GPU acceleration. This way, R users can benefit from R’s high-level, user-friendly interface while achieving high performance. Thus focusing on accelerating R computations using CUDA libraries by calling our own parallel algorithms written in CUDA from R and profiling GPU-accelerated R applications using the CUDA Profiler.