gpt4 book ai didi

cuda - 内核中的新运算符..奇怪的行为

转载 作者:行者123 更新时间:2023-12-05 04:18:37 25 4
gpt4 key购买 nike

我想知道是否有人可以通过内核中的 new 运算符阐明这种行为。以下是代码

#include <stdio.h>
#include "cuda_runtime.h"
#include "cuComplex.h"
using namespace std;
__global__ void test()
{

cuComplex *store;
store= new cuComplex[30000];
if (store==NULL) printf("Unable to allocate %i\n",blockIdx.y);
delete store;
if (threadIdx.x==10000) store->x=0.0;
}

int main(int argc, char *argv[])
{
float timestamp;
cudaEvent_t event_start,event_stop;
// Initialise


cudaEventCreate(&event_start);
cudaEventCreate(&event_stop);
cudaEventRecord(event_start, 0);
dim3 threadsPerBlock;
dim3 blocks;
threadsPerBlock.x=1;
threadsPerBlock.y=1;
threadsPerBlock.z=1;
blocks.x=1;
blocks.y=500;
blocks.z=1;

cudaEventRecord(event_start);
test<<<blocks,threadsPerBlock,0>>>();
cudaEventRecord(event_stop, 0);
cudaEventSynchronize(event_stop);
cudaEventElapsedTime(&timestamp, event_start, event_stop);
printf("test took %fms \n", timestamp);
}

在 GTX680 Cuda 5 上运行它并调查输出会注意到随机内存未分配 :( 我在想这可能是因为所有全局内存都已完成但我有 2GB 内存并且因为最大数量事件 block 是 16 使用此方法分配的内存量最大应为 16*30000*8=38.4x10e6.. 即大约 38Mb。那么我还应该考虑什么?

最佳答案

该问题与 malloc() 和 free() 设备系统调用使用的堆大小有关。有关详细信息,请参阅 NVIDIA CUDA C 编程指南中的 3.2.9 调用堆栈部分附录 B.16.1 堆内存分配

如果您设置堆大小以满足您的内核要求,您的测试将会成功

    cudaDeviceSetLimit(cudaLimitMallocHeapSize, 500*30000*sizeof(cuComplex));

关于cuda - 内核中的新运算符..奇怪的行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13072624/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com