Skip to content

Commit 95f7949

Browse files
committed
Update docs to releases/1.29.x
1 parent 483e15f commit 95f7949

5 files changed

Lines changed: 720 additions & 547 deletions

File tree

faq.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ <h1 class="title">Frequently Asked Questions About Intel® ISPC</h1>
4848
<li>Language Details<ul>
4949
<li><a class="reference internal" href="#what-is-the-difference-between-int-foo-and-int-foo">What is the difference between &quot;int *foo&quot; and &quot;int foo[]&quot;?</a></li>
5050
<li><a class="reference internal" href="#why-are-pointed-to-types-uniform-by-default">Why are pointed-to types &quot;uniform&quot; by default?</a></li>
51-
<li><a class="reference internal" href="#what-am-i-getting-an-error-about-assigning-a-varying-lvalue-to-a-reference-type">What am I getting an error about assigning a varying lvalue to a reference type?</a></li>
51+
<li><a class="reference internal" href="#why-am-i-getting-an-error-about-assigning-a-varying-lvalue-to-a-reference-type">Why am I getting an error about assigning a varying lvalue to a reference type?</a></li>
5252
</ul>
5353
</li>
5454
<li>Interoperability<ul>
@@ -291,8 +291,8 @@ <h2>Why are pointed-to types &quot;uniform&quot; by default?</h2>
291291
functions. Thus, making the pointed-to type uniform by default leads to
292292
more concise code for the most common cases.</p>
293293
</div>
294-
<div class="section" id="what-am-i-getting-an-error-about-assigning-a-varying-lvalue-to-a-reference-type">
295-
<h2>What am I getting an error about assigning a varying lvalue to a reference type?</h2>
294+
<div class="section" id="why-am-i-getting-an-error-about-assigning-a-varying-lvalue-to-a-reference-type">
295+
<h2>Why am I getting an error about assigning a varying lvalue to a reference type?</h2>
296296
<p>Given code like the following:</p>
297297
<pre class="literal-block">
298298
uniform float a[...];
@@ -468,8 +468,8 @@ <h2>Is it possible to inline ispc functions in C/C++ code?</h2>
468468
<pre class="literal-block">
469469
llc -filetype=obj foo_opt.bc -o foo.o
470470
</pre>
471-
<p>This file can in turn be linked in with the rest of your object files when
472-
linking your applicaiton.</p>
471+
<p>This file can then be linked with the rest of your object files when
472+
linking your application.</p>
473473
<p>(Note that if you're using the AVX instruction set, you must provide the
474474
<tt class="docutils literal"><span class="pre">-mattr=+avx</span></tt> flag to <tt class="docutils literal">llc</tt>.)</p>
475475
</div>
@@ -701,7 +701,7 @@ <h2>How do I launch an individual task for each active program instance?</h2>
701701
}
702702
</pre>
703703
<p>For performance reasons, it may be desirable to apply an entire gang's
704-
worth of comptuation to each item that needs additional processing;
704+
worth of computation to each item that needs additional processing;
705705
there may be available parallelism in this computation such that we'd like
706706
to process each of the items with SPMD computation.</p>
707707
<p>In this case, the <tt class="docutils literal">foreach_active</tt> and <tt class="docutils literal">unmasked</tt> constructs can be

0 commit comments

Comments
 (0)