Tagged Questions
5
votes
3answers
717 views
How to parallelize Sudoku solver using Grand Central Dispatch?
As a programming exercise, I just finished writing a Sudoku solver that uses the backtracking algorithm (see Wikipedia for a simple example written in C).
To take this a step further, I would like to ...
3
votes
2answers
305 views
Parallel reduce algorithm implementation
I've been investigating implementations of reduce [inject, fold, whatever you want to call it] functions in Objective-C using blocks and was wondering if there were any techniques for parallelizing ...
0
votes
1answer
222 views
Number of threads and thread numbers in Grand Central Dispatch
I am using C and Grand Central Dispatch to parallelize some heavy computations. How can I get the number of threads used by GCD? Also is it possible to know on which thread a piece of code is ...