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

Cannot allocate 3 GB float pointer despite 32 GB of memory

我需要为 808704000 个浮点数分配内存,大约是 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 sizeint 通常是 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。)