Groups 93 of 99+ julia-users › time tic toc 4 posts by 3 authors digxx 12 10 15 Apparently for a parallel loop the time macro or tic toc do not measure the time?! I directly get a result for the time but know that the calculation is still ongoing. Is the usage like this: time parallel for i 1:10 end Tomas Lycken 12 11 15 Try time sync parallel for i 1:10 ... end digxx 12 12 15 Why sync? It's not mandatory or is it related to getting time work? And why? Kristoffer Carlsson 12 12 15 The parallel calls are asynchronous so they will return right away? On Saturday, December 12, 2015 at 4:36:14 PM UTC+1, digxx wrote: Why sync? It's not mandatory or is it related to getting time work? And why?