I've been running a 4 drive RAID 5 array (4x300GB drives) on this hardware controller since March 2006 with no problems. Two nights ago I added a 5th hard drive to the array/logical drive. My array ...
In the end of word2vec.c there's "malloc" of size EXP_TABLE_SIZE + 1 But the next "for" loop is for(i=0; i < EXP_TABLE_SIZE; ++i) That means, expTable[EXP_TABLE_SIZE] is uninitialized. As the result - ...