Skip to content

Commit 38fbb6a

Browse files
updated parallel_for.cpp
1 parent 548ad3c commit 38fbb6a

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

example/parallel_for.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ int fib(int n) {
66
return (fib(n-1) + fib(n-2))%1024;
77
}
88

9+
// ------------------------------------------------------------------------------------------------
10+
911
// Procedure: sequential
1012
void sequential(int N) {
1113
auto tbeg = std::chrono::steady_clock::now();

0 commit comments

Comments
 (0)