如何使用CUDA C快速压缩稀疏数组?

时间:2013-01-10 12:41:42

标签: cuda gpgpu sparse-array

摘要

设备内存中的数组[A - B - - - C]但想要[A B C] - CUDA C最快的方​​式是什么?

上下文

我在设备(GPU)内存上有一个整数数组A。在每次迭代中,我随机选择一些大于0的元素并从中减去1。我维护那些等于0的元素的排序查找数组L

Array A:
       @ iteration i: [0 1 0 3 3 2 0 1 2 3]
   @ iteration i + 1: [0 0 0 3 2 2 0 1 2 3]

Lookup for 0-elements L:
       @ iteration i: [0 - 2 - - - 6 - - -]  ->  want compacted form: [0 2 6]
   @ iteration i + 1: [0 1 2 - - - 6 - - -]  ->  want compacted form: [0 1 2 6]

在这里,我随机选择元素14从中减去1.在我在CUDA C中的实现中,每个线程映射到A中的元素,并且所以查找数组是稀疏的,以防止数据竞争并维持排序顺序(例如[0 1 2 6]而不是[0 2 6 1])。

稍后,我将仅对那些等于0的元素执行某些操作。因此,我需要压缩稀疏查找数组L,以便我可以将线程映射到0元素。

因此,使用CUDA C在设备内存上压缩稀疏数组的最有效方法是什么?

非常感谢。

1 个答案:

答案 0 :(得分:3)

假设我有:

int V[] = {1, 2, 0, 0, 5};

我想要的结果是:

int R[] = {1, 2, 5}

实际上,我们正在删除零的元素,或仅在非零时复制元素。

#include <thrust/device_ptr.h>
#include <thrust/copy.h>
#include <stdio.h>
#define SIZE 5

#define cudaCheckErrors(msg) \
    do { \
        cudaError_t __err = cudaGetLastError(); \
        if (__err != cudaSuccess) { \
            fprintf(stderr, "Fatal error: %s (%s at %s:%d)\n", \
                msg, cudaGetErrorString(__err), \
                __FILE__, __LINE__); \
            fprintf(stderr, "*** FAILED - ABORTING\n"); \
            exit(1); \
        } \
    } while (0)

  struct is_not_zero
  {
    __host__ __device__
    bool operator()(const int x)
    {
      return (x != 0);
    }
  };



int main(){

  int V[] = {1, 2, 0, 0, 5};
  int R[] = {0, 0, 0, 0, 0};
  int *d_V, *d_R;

  cudaMalloc((void **)&d_V, SIZE*sizeof(int));
  cudaCheckErrors("cudaMalloc1 fail");
  cudaMalloc((void **)&d_R, SIZE*sizeof(int));
  cudaCheckErrors("cudaMalloc2 fail");

  cudaMemcpy(d_V, V, SIZE*sizeof(int), cudaMemcpyHostToDevice);
  cudaCheckErrors("cudaMemcpy1 fail");

  thrust::device_ptr<int> dp_V(d_V);
  thrust::device_ptr<int> dp_R(d_R);
  thrust::copy_if(dp_V, dp_V + SIZE, dp_R, is_not_zero());

  cudaMemcpy(R, d_R, SIZE*sizeof(int), cudaMemcpyDeviceToHost);
  cudaCheckErrors("cudaMemcpy2 fail");

  for (int i = 0; i<3; i++)
    printf("R[%d]: %d\n", i, R[i]);

  return 0;


}

struct defintion为我们提供了一个测试零元素的函子。请注意,在推力方面,没有内核,我们不直接编写设备代码。所有这些都发生在幕后。我绝对建议您熟悉quick start guide,以免将此问题转化为推力教程。

在审核了评论之后,我认为这个修改后的代码版本将解决cuda 4.0问题:

#include <thrust/device_ptr.h>
#include <thrust/copy.h>
#include <thrust/device_vector.h>
#include <thrust/host_vector.h>
#include <stdio.h>
#define SIZE 5

  struct is_not_zero
  {
    __host__ __device__
    bool operator()(const int x)
    {
      return (x != 0);
    }
  };



int main(){

  int V[] = {1, 2, 0, 0, 5};
  int R[] = {0, 0, 0, 0, 0};

  thrust::host_vector<int> h_V(V, V+SIZE);
  thrust::device_vector<int> d_V = h_V;
  thrust::device_vector<int> d_R(SIZE, 0);

  thrust::copy_if(d_V.begin(), d_V.end(), d_R.begin(), is_not_zero());
  thrust::host_vector<int> h_R = d_R;

  thrust::copy(h_R.begin(), h_R.end(), R);

  for (int i = 0; i<3; i++)
    printf("R[%d]: %d\n", i, R[i]);

  return 0;


}