Skip to content

Commit 4559cac

Browse files
Merge pull request #1842 from jasonrandrews/spelling
Final review C++ Loop Optimization Learning Path
2 parents 7b5ec85 + f6a1046 commit 4559cac

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

content/learning-paths/cross-platform/cpp-loop-size-context/_index.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
---
22
title: Boost C++ performance by optimizing loops with boundary information
33

4-
draft: true
5-
cascade:
6-
draft: true
7-
84
minutes_to_complete: 15
95

106
who_is_this_for: This is an introductory topic for C++ developers who want to improve the runtime of loops using existing knowledge of the loop size.

content/learning-paths/cross-platform/cpp-loop-size-context/baseline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ int main() {
3333
std::cin >> max_loop_size;
3434

3535
int x[max_loop_size];
36-
// Initialise test data
36+
// Initialize test data
3737
for(int i = 0; i < max_loop_size; ++i) x[i] = i;
3838

3939
// Start timing

content/learning-paths/cross-platform/cpp-loop-size-context/loop-boundary-optimization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ int main() {
5050

5151
int max_loop_size_div_4 = max_loop_size / 4;
5252
int x[max_loop_size];
53-
// Initialise test data
53+
// Initialize test data
5454
for(int i = 0; i < max_loop_size; ++i) x[i] = i;
5555

5656
// Start timing

0 commit comments

Comments
 (0)