gpt4 book ai didi

c++ - 尽管有 32 GB 内存,但无法分配 3 GB 浮点指针

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:36:45 34 4
gpt4 key购买 nike

我需要为 808704000 个 float 分配内存,大约是 3085 MB。我的电脑有 32 GB 内存,运行 64 位 Linux (CentOS 6.6)。每次我尝试分配内存时,malloc 操作都会失败。我使用 g++ 4.4.7。

谁能解释为什么我不能分配内存?是否有可能以某种方式强制程序以 64 位模式编译?

void AllocateMemory(float *& pointer, int size, void** pointers,
int& Npointers, nifti_image** niftiImages,
int Nimages, const char* variable)
{
pointer = (float*)malloc(size);
if (pointer != NULL)
{
pointers[Npointers] = (void*)pointer;
Npointers++;
}
else
{
printf("Could not allocate host memory for variable %s !\n",
variable);
FreeAllMemory(pointers, Npointers);
FreeAllNiftiImages(niftiImages, Nimages);
exit(EXIT_FAILURE);
}
}

ulimit -a 打印:

core file size          (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 256261
max locked memory (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files (-n) 1024
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 10240
cpu time (seconds, -t) unlimited
max user processes (-u) 1024
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited

最佳答案

制作size_t size . int通常是 32 位,包括符号,因此最大数为 2^31 = 2,147,483,648 < sizeof(float) * 808,704,000 = 3,234,816,000。

因此,int(sizeof(float) * 808704000) < 0是溢出。

那么,因为malloc期望一个 size_t ,它会将其符号扩展为 64 位,然后重新解释为无符号,给出 > 2^63 的巨大数字。 (感谢 ElderBug。)

关于c++ - 尽管有 32 GB 内存,但无法分配 3 GB 浮点指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28544310/

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