From 20f34b67da9a948e78fe012daf2dff0fee3cf4c9 Mon Sep 17 00:00:00 2001 From: Matt Pharr Date: Fri, 9 Dec 2011 16:31:03 -0800 Subject: [PATCH] Fix typo in documentation --- docs/ispc.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ispc.txt b/docs/ispc.txt index 0748209a..d682f6d1 100644 --- a/docs/ispc.txt +++ b/docs/ispc.txt @@ -523,8 +523,8 @@ Basic Concepts: Program Instances and Gangs of Program Instances Upon entry to a ``ispc`` function called from C/C++ code, the execution model switches from the application's serial model to ``ispc``'s execution model. Conceptually, a number of ``ispc`` *program instances* start -running in concurrently. The group of running program instances is a -called *gang* (harkening to "gang scheduling", since ``ispc`` provides +running concurrently. The group of running program instances is a +called a *gang* (harkening to "gang scheduling", since ``ispc`` provides certain guarantees about the control flow coherence of program instances running in a gang, detailed in `Gang Convergence Guarantees`_.) An ``ispc`` program instance is thus similar to a CUDA* "thread" or an OpenCL*