From 387e782d536e036279aafdf5ddd56c232d240482 Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Sun, 27 Nov 2016 21:25:53 -0600 Subject: [PATCH] memory operations => writes --- doc/tutorial.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/tutorial.rst b/doc/tutorial.rst index 09fa1f00a..38635ee5e 100644 --- a/doc/tutorial.rst +++ b/doc/tutorial.rst @@ -1074,9 +1074,9 @@ Synchronization .. {{{ -In OpenCL, memory operations are not generally guaranteed to be immediately -visible to other work items. In order to ensure that memory is consistent across -work items, some sort of synchronization operation is used. +In OpenCL, writes are not generally guaranteed to be immediately visible to +other work items. In order to ensure that memory is consistent across work +items, some sort of synchronization operation is used. :mod:`loopy` supports synchronization in the form of *barriers* or *atomic operations*. -- GitLab