我正在尝试调用 cudppSort 对一组键/值进行排序。我正在使用以下代码来设置排序算法:
CUDPPConfiguration config;
config.op = CUDPP_ADD;
config.datatype = CUDPP_UINT;
config.algorithm = CUDPP_SORT_RADIX;
config.options = CUDPP_OPTION_KEY_VALUE_PAIRS | CUDPP_OPTION_FORWARD | CUDPP_OPTION_EXCLUSIVE;
CUDPPHandle planHandle;
CUDPPResult result = cudppPlan(&planHandle, config, number_points, 1, 0);
if (CUDPP_SUCCESS != result) {
printf("ERROR creating CUDPPPlan\n");
exit(-1);
}
程序退出,但是在线:
CUDPPResult result = cudppPlan(&planHandle, config, number_points, 1, 0);
并打印到标准输出:
Cuda error: allocScanStorage in file 'c:/the/path/to/release1.1/cudpp/src/app/scan_app.cu' in line 279 : invalid configuration argument.
我查看了scan_app.cu 中的行。这是,
CUT_CHECK_ERROR("allocScanStorage");
所以显然我的配置有一个错误导致 allocScanStorage 爆炸。函数中只有两次对 CUDA_SAFE_CALL 的调用,我看不出任何一个与配置有任何关系的原因。
我的配置有什么问题?