algorithm - 处理只读输入以在 CUDA 上运行的快速选择算法

标签 algorithm sorting cuda gpu

我正在寻找一种类似于快速选择但不会更改其输入的算法。我更喜欢将数据设为只读,这样在 CUDA GPU 上执行时内存效率更高。

最佳答案

据推测,您希望避免在 GPU 上分配临时内存,而大多数明智的排序和/或选择算法会根据您的声明“这样执行时内存效率更高”在 CUDA GPU 上”。

首先让我说我认为这可能是个坏主意,因为尽管您可能已经满足了“内存效率”的想法,但这样做几乎肯定会削弱任何算法的性能。为排序或选择算法提供临时空间来跟踪它所做的工作可能会产生更快的代码,但会以上述临时内存分配为代价。

根据该序言,这里是一种可能的方法:一种对只读数组中的元素进行排序的蛮力算法,直到找到满足给定所选项目的元素为止。基本思想非常简单:对于只读输入数组中的每一项,计算整个数组中位于它之上的项数(对于降序排序)。重复项需要特殊情况处理,但我已将其包括在内。找到所选项目后,可以取消搜索。

这是一个完整的示例,带有结果验证:

$ cat t729.cu
#include <stdio.h>
#include <stdlib.h>

// for validation
#include <algorithm>

#define DSIZE 10000
#define RG    1000
#define SELECT_ITEM 100

#define nBLK  64
#define nTPB  256

#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)



#define DESCEND true
#define ASCEND  false



template <bool descending, typename T>
__global__ void my_select(const T *data, const unsigned length, const unsigned select, volatile int *index){

  int idx = threadIdx.x+blockDim.x*blockIdx.x;
  while ((*index == -1) && (idx < length)){
    T my_val = data[idx];
    unsigned my_index = 0;
    // count the number of values higher (or lower) than me
    for (unsigned i = 0; i < length; i++){
        T temp = data[i];
        if (descending){ // request to select item in descending order
          if (temp > my_val) my_index++;
          else if ((temp == my_val) && (i < idx)) my_index++; // handle duplicates
          }
        else {  // request to select item in ascending order
          if (temp < my_val) my_index++;
          else if ((temp == my_val) && (i < idx)) my_index++; // handle duplicates
          }}
    if (my_index == select) *index = idx;
    idx += blockDim.x*gridDim.x;
    }
}

int main(){

  int *h_data, *d_data, *d_result, h_result = -1;
  h_data = (int *)malloc(DSIZE*sizeof(int));
  if (h_data == NULL) {printf("malloc fail\n"); return -1;}
  cudaMalloc(&d_data, DSIZE*sizeof(int));
  cudaMalloc(&d_result, DSIZE*sizeof(int));
  cudaCheckErrors("cudaMalloc fail");
  for (int i =0; i < DSIZE; i++) h_data[i] = rand()%RG;
  cudaMemcpy(d_data, h_data, DSIZE*sizeof(int), cudaMemcpyHostToDevice);
  cudaMemcpy(d_result, &h_result, sizeof(int),   cudaMemcpyHostToDevice);
  cudaCheckErrors("cudaMemcpy fail");
  my_select<DESCEND><<<nBLK, nTPB>>>(d_data, DSIZE, SELECT_ITEM, d_result);
  cudaMemcpy(&h_result, d_result, sizeof(int), cudaMemcpyDeviceToHost);
  cudaCheckErrors("cudaMemcpy/kernel fail");
  printf("the item index at select position %d is %d, item value = %d\n", SELECT_ITEM, h_result, h_data[h_result]);
  // validation
  std::sort(h_data, h_data+DSIZE);
  printf("the item value at that sorted position is                %d\n", h_data[(DSIZE-1) - SELECT_ITEM]); // assumes DESCEND

  return 0;
}
$ nvcc -o t729 t729.cu
$ ./t729
the item index at select position 100 is 2858, item value = 990
the item value at that sorted position is                990
$

在我看来,更好的方法是复制您的输入数据,并将该副本传递给您选择的 GPU 优化选择算法,例如 this one并让该算法使用它需要的任何临时空间。这肯定会比上述方法更快,并且可能比您可能想出的不使用临时空间的任何方法都要快。

关于algorithm - 处理只读输入以在 CUDA 上运行的快速选择算法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29673578/

相关文章:

algorithm - 这里的复杂性顺序是什么?

algorithm - 浅析凸包的格雷厄姆扫描算法

cuda - 每个 CUDA 内核的最大指令数?每个 CUDA 流的最大操作数?

c - 带 cuda c 的盒式过滤器

algorithm - 检查直线形状的有效性

java - 使用递归回溯时耗尽堆

c++ - 双向链表冒泡排序,反向方法现已失效

php - 按列对平面文件中的数据进行排序

algorithm - 在插入项目或将它们添加到排序列表后对列表进行排序是否更快

CUDA 线程、SMX、SP 和 block ,它们是如何工作的?