| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This is an implementation of the Ordinary Kriging algorithm using parallel technologies.
We provide a CMake script in order to make compiling the code straightforward. You just need a C++11 compiler with OpenMP support and the OpenCL SDK installed. We will provide detailed information in the future.
After compiling the code you should see ParallelOK executable in the build folder. To use it simple do
ParallelOK --input [XYZ File] --output [Output File] --lags-count [N] --grid-size [N]The XYZ File is a simple point cloud format where each line represents a point in 3D space. For the kriging algorithm, each z value is considered a response value for a random variable at location (x,y).
-113.24195 40.01692 -2.07465272 -71.99837 38.22831 -0.58196695 -81.89808 28.22333 -1.54724761 -85.5524 49.05601 0.99257163
Please, feel free to file an issue directly in this repository.
To show that our implementation can scale across multiple compute devices we show here two graphs. The first is the amount of time spent by the prediction step with the increase in the number of compute devices. The second graph is showing that our implementation can achieve a quasi-linear speedup with the increase in the number of devices being used.
The experiments were performed on a machine with 64 AMD Opteron(TM) Processor 627 cores grouped into 8 physical chips with 128GB of RAM memory and 4 NVIDIA Tesla M2090 GPUs each with 2096GB of GDDR5 RAM 384-bit RAM memory.
Our results were published in the CCIS 2016. The link to the full paper can be found below.
@article{krigging,
author = {Sabino, Thales Luis and Tavares, Gisele and Goliatt, Leonardo and Lobosco, Marcelo and Chaves, Filipe and Santos, Rodrigo},
year = {2017},
month = {08},
pages = {},
title = {A parallel implementation of the ordinary kriging algorithm for heterogeneous computing environments}
}| Back | FazBrowse Home | New Git URL |