File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
PatternScanBench/Implementations Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments