Skip to content

Commit f2f354a

Browse files
committed
typos, updated prerequisites
1 parent 15c65ce commit f2f354a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

PatternScanBench/Implementations/PatternScanNaiveSIMD.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace PatternScanBench.Implementations
99
///
1010
/// Uses SIMD instructions on AVX-supporting processors, the longer the pattern the more efficient this should get.
1111
/// Requires RyuJIT compiler for hardware acceleration which **should** be enabled by default on newer VS versions.
12-
/// Ideally a pattern would be a multiple of (xmm0 register size) * 8 so all available space gets used in calculations.
12+
/// Ideally a pattern would be a multiple of (xmm0 register size) / 8 so all available space gets used in calculations.
1313
/// Can be optimized further as currently the compiler adds a lot of unnecessary array bounds checks.
1414
/// </summary>
1515
internal class PatternScanNaiveSIMD : PatternScanAlgorithm

PatternScanBench/Implementations/PatternScanTemplate.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ 6. Remove all multi line comment blocks including this one
1212
* NO assembly references outside of default .NET 4.6 (except from Microsoft themselves as part of their "extended dotnetframework")
1313
* NO changes to build process
1414
* NO unsafe code
15-
* has to work on 64 bit Windows 10 1709 and newer
15+
* has to work on 64 bit Windows 10
1616
* has to work on **most** modern AMD64 processors
17-
* Dynamic SIMD support is available via embedded System.Numerics
17+
* Dynamic SIMD support is available through embedded Microsoft's System.Numerics.Vector
1818
*/
1919
/// <summary>
2020
/// Pattern scan implementation 'Template' - by author

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Feel free to create a pull request with your own patter scan implementation at a
1515
## Prerequisites
1616

1717
* .NET Framework 4.6
18-
* Windows 10 64bit 1709 or newer
18+
* Windows 10 64bit
1919

2020
## Building
2121

0 commit comments

Comments
 (0)