Is there any reason why multiprocessing is disabled? Can I enable and compile? Thanks!
#if 0
// for now use uniform partitioning and no multithreading
partitions_.add(new MtxConvSlave());
int numpartitions = ceil((float)maxsize/blocksize_);
partitions_.getLast()->Configure(blocksize_, numpartitions, 0, 0, &inbuf_, &outbuf_); // for now no offset and zero priority
numpartitions_ = 1;
maxsize_ = maxsize;
Is there any reason why multiprocessing is disabled? Can I enable and compile? Thanks!