我需要为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
答案 0 :(得分:4)
将其设为size_t size
。 int
通常是32位,包括符号,因此最大数量是2 ^ 31 = 2,147,483,648 <1。 sizeof(float)* 808,704,000 = 3,234,816,000。
因此,int(sizeof(float) * 808704000) < 0
是一个溢出。
然后,因为malloc
期望size_t
,它会将其签名扩展为64位,然后重新解释为无符号,给出大数字&gt; 2 ^ 63。 (谢谢ElderBug。)