small doc fix, removed incorrect comment from example

This commit is contained in:
Matt Pharr
2011-06-24 16:19:51 -07:00
parent 6cf4d7e216
commit ff76c2334e
2 changed files with 1 additions and 3 deletions

View File

@@ -136,7 +136,7 @@ Linux\* and Mac OS\* available for download. Alternatively, you can
download the source code from that page and build it yourself; see see the download the source code from that page and build it yourself; see see the
`ispc wiki`_ for instructions about building ``ispc`` from source. `ispc wiki`_ for instructions about building ``ispc`` from source.
.. _ispc downloads web page:downloads.html .. _ispc downloads web page: downloads.html
.. _ispc wiki: http://github.com/ispc/ispc/wiki .. _ispc wiki: http://github.com/ispc/ispc/wiki
Once you have an executable for your system, copy it into a directory Once you have an executable for your system, copy it into a directory

View File

@@ -54,8 +54,6 @@ extern void binomial_put_serial(float Sa[], float Xa[], float Ta[],
float result[], int count); float result[], int count);
int main() { int main() {
// Pointers passed to ispc code must have alignment of the target's
// vector width at minimum.
float *S = new float[N_OPTIONS]; float *S = new float[N_OPTIONS];
float *X = new float[N_OPTIONS]; float *X = new float[N_OPTIONS];
float *T = new float[N_OPTIONS]; float *T = new float[N_OPTIONS];