From 47b1f2182f82f78d2e3d9571fea74881defa7c9e Mon Sep 17 00:00:00 2001 From: evghenii Date: Tue, 14 Oct 2014 15:24:30 +0200 Subject: [PATCH] fix documentation typo --- docs/ispc.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ispc.rst b/docs/ispc.rst index b70e86f2..d854b309 100644 --- a/docs/ispc.rst +++ b/docs/ispc.rst @@ -5025,8 +5025,8 @@ This object file can be linked with the main program via ``nvcc``: Hints ----- - ``uniform`` arrays in a function scope are statically allocated in - ``__shared__`` memory, with all ensuing consequences. For example, if more - all allocated than shared memory available per SMX, a linking or runtime error will occur + ``__shared__`` memory, with all ensuing consequences. For example, if more + than avaiable shared memory per SMX is allocated, a link- or runtime-error will occur - If ``uniform`` arrays of large size are desired, we recommend to use ``uniform new uniform T[size]`` for their allocation, ideally outside the tasking function (see ``deferred/kernels.ispc`` in the deferred shading example)