Edit

I read through some articles on blocks and fast enumeration and GCD and the like. @Bbum, who's written many articles on the subject of GCD and blocks, says that the block enumeration methods are always as fast or faster than the fast enumeration equivalents. You can read his reasoning here.

While this has been a fascinating, intellectual conversation, I agree with those who said that it really depends on the task at hand.


I have some tasks to accomplish and I need them done fast, cheap, and efficiently. Apple gives us many choices for how we want to enumerate an array, but I'm not sure which to choose.

Fast Enumeration

for (id obj in array)
{
    /* Do something with |obj|. */
}

Nonconcurrent Block Enumeration

[array enumerateObjectsUsingBlock: ^(id obj, NSUInteger idx, BOOL *stop) {
    /* Do something with |obj|. */
}];

Concurrent Block Enumeration

[array enumerateObjectsWithOptions: NSEnumerationConcurrent usingBlock: ^(id obj, NSUInteger idx, BOOL *stop) {
    /* Do something with |obj|. */
}];

GCD Apply

dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0);
dispatch_apply([array count], queue, ^(size_t idx) {
    id obj = [array objectAtIndex: idx];
    /* Do something with |obj|. */
});

GCD Async Apply

dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0);
dispatch_async(queue, ^(void) {
    dispatch_apply([array count], queue, ^(size_t idx) {
        id obj = [array objectAtIndex: idx];
        /* Do something with |obj|. */
    });
});

Or perhaps something with NSBlockOperations or an NSOperationQueue?

TIA, Alex.

link|improve this question

3  
Can you compare async and non-async calls? What are the criteria for "efficiently"? Is "cheap" as important as "fast"? Etc... :) Might be helpful if there was a bit more information on your particular scenario? – Jedidja Jun 1 '11 at 1:22
2  
Also see stackoverflow.com/questions/992901/…. – Radu Jun 1 '11 at 1:23
What do you mean can I compare then? I'm performing this enumeration on iOS, so it needs to be efficient and fast, but the same general concept should apply to Mac OS X as well. Just with iOS, you have less resources so I'm trying to be as efficient as possible. That's all. – Alexsander Akers Jun 1 '11 at 1:24
1  
There’s no single, absolute answer to your question. I’m voting to close it. – Bavarious Jun 1 '11 at 1:42
3  
Benchmark, benchmark, benchmark, benchmark, benchmark. Then do it again. – BoltClock Jun 1 '11 at 1:49
show 5 more comments
feedback

3 Answers

up vote 11 down vote accepted

The fastest code is the code that reaches the market first.

Seriously -- unless you have a measurable performance problem, this particular choice should occupy no more of your time than it takes to answer which of these patterns fits the most naturally with my project's style?

Note: adressing a performance problem by moving from serial to concurrent execution usually results having two problems; performance & concurrency.

link|improve this answer
reminds me of the old regex axiom – slf Jan 17 at 15:57
feedback

It really depends on the task at hand.

Processing more than one iteration at a time requires spawning threads. If the logic in the iterations is parallelizable and takes more time than it would take to spawn a thread, then use threads. Also, if you have so many items in the array that it would take less to spawn a thread than to walk through the whole array, divide your array into a few pieces and process them in parallel.

Otherwise, spawning threads to iterate through the array is overhead. Even if the OS takes care of that for you, it still does need to spawn them. That takes time and resources and context switching at runtime (depending on the number of CPUs available, load, scheduler, etc).

It all comes down to whether spawning a new thread takes longer than walking through the whole array. You can find that out using the profiling tools.

link|improve this answer
This is true. I think I should just try all of them and see which of them is fastest. – Alexsander Akers Jun 1 '11 at 1:48
Also, don't assume that if it's the fastest for your current array, that will hold true for the next array. If you have and array of 10 integers and all you need to do is add them, then obviously the fastest way will be to simply use for, even though the million items array with heavy objects benefits greatly from a GCD approach. – Radu Jun 1 '11 at 1:51
And again, depending on the situation, it could be better to divide your array in smaller arrays that you can process in parallel. For example, if you only have 20 objects that take time to process, you might get better performance if you process 2 arrays of 10 objects each in parallel than if you make 20 threads. Profile. – Radu Jun 1 '11 at 1:52
1  
And again, depending on what operation is performed on the array elements, GCD can be a problem — for instance, if the operation is blocking, it could cause GCD to reach the maximum number of GCD threads. There are way too many variables to give an absolute answer. – Bavarious Jun 1 '11 at 1:54
1  
One of the things that makes GCD fast is that it doesn't have to create a thread for each new task, but instead dispatches tasks to existing threads. – Caleb Jun 1 '11 at 2:07
show 6 more comments
feedback

How many items are in the array? Just pick one method and go with it.

link|improve this answer
I mean, yes, that's possible, but I want to be efficient and fast because I'm running this code on iOS. However the same principle applies to enumeration on Mac OS X as well. – Alexsander Akers Jun 1 '11 at 1:32
How many items are in the array? 100? 10,000? – Black Frog Jun 1 '11 at 1:34
The complexity of the tasks vary and the number of objects varies as well. – Alexsander Akers Jun 1 '11 at 1:35
1  
Varies between 5 and 20 items? Or varies between 2,456 and 5,734 items? – Black Frog Jun 1 '11 at 1:36
2  
Just do Fast Enumeration until your profiling indicates that iterating over your arrays is a performance bottleneck. – kubi Jun 1 '11 at 1:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.