From 9b6bf5dabc0d93800443323bd2d21452008bff23 Mon Sep 17 00:00:00 2001 From: Matt Pharr Date: Fri, 24 Jun 2011 16:11:46 -0700 Subject: [PATCH] Add release notes doc --- docs/ReleaseNotes.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 docs/ReleaseNotes.txt diff --git a/docs/ReleaseNotes.txt b/docs/ReleaseNotes.txt new file mode 100644 index 00000000..2b8abd97 --- /dev/null +++ b/docs/ReleaseNotes.txt @@ -0,0 +1,14 @@ + +=== v1.0.1 === (24 June 2011) + +ispc no longer requires that pointers to memory that are passed in to ispc +have alignment equal to the targets vector width; now alignment just has to +be the regular element alignment (e.g. 4 bytes for floats, etc.) This +change also fixed a number of cases where it previously incorrectly +generated aligned load/store instructions in cases where the address wasn't +actually aligned (even if the base address passed into ispc code was). + + +=== v1.0 === (22 June 2011) + +Initial Release