From 3b2d2f224f90ae50b0f271c401dd9879f81a4f7d Mon Sep 17 00:00:00 2001 From: tfk Date: Wed, 20 Jul 2022 18:38:08 +0000 Subject: [PATCH] =?UTF-8?q?Update=20User's=20guide=20=E2=80=9Cconvert-a-c+?= =?UTF-8?q?+-program=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/doc/users-guide/convert-a-c++-program.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/users-guide/convert-a-c++-program.md b/src/doc/users-guide/convert-a-c++-program.md index 79b77bc5..524fad7a 100644 --- a/src/doc/users-guide/convert-a-c++-program.md +++ b/src/doc/users-guide/convert-a-c++-program.md @@ -3,7 +3,7 @@ title: Convert a C++ program author: Timothy Kaler date: 2022-07-20T16:22:55.620Z --- -A common application of OpenCilk is the parallelization of existing serial code. Indeed, it is often advisable for programmers to prioritize writing correct and efficient serial code before attempting parallelization due to the notorious difficulty of writing correct parallel code. In this section, we shall walk through the process of converting an existing serial C or C++ code to an OpenCilk parallel program and show how OpenCilk's suite of tools can be used to debug race-conditions and scalability bottlenecks. +A common application of OpenCilk is the parallelization of existing serial code. Indeed, it is often advisable for programmers to prioritize writing correct and efficient serial code before attempting parallelization because of the notorious difficulty of writing correct parallel code. In this section, we shall walk through the process of converting an existing serial C or C++ code to an OpenCilk parallel program and show how OpenCilk's suite of tools can be used to debug race-conditions and scalability bottlenecks. ## General workflow