Aleksey Vaneev

Results 55 comments of Aleksey Vaneev

Hi! I've updated project's page with info on "Sequential-Incremental Hashing". It can be also used to hash files, but requires some given read block size (using different read block sizes...

Sorry to hear that! It would be great if you implemented a double-typed real-to-complex and complex-to-real FFT, without any other code like convolution, with API similar to IPP: ippsFFTFwd_RToPerm_64f() and...

It is an extremely simple front-end. You should first gain knowledge how "worker thread pools" work in general, then you will be able to implement it. My own implementation looks...

On a 4-core processor the resizing speed increases by a factor of 3.2, so it does help to resize images faster. Algorithm divides the image automatically.

How do you initialize the thread pool?

Which thread library are you using?

It looks like not all threads are actually being executed, maybe some workload queue mistake.

You also probably need to remove items from _tasks if they are not autoremoved.

Make sure thread_pool_base::size() returns correct value - should be the number of processors in the system. I have doubts that thread pool actually runs all workloads, make sure thread pool...

I'm glad you've got it working, I'll leave this issue opened for others to learn.