Adding comment and remvoing ivdep
This commit is contained in:
@@ -81,8 +81,11 @@ ZSTD_compressBlock_fast_generic(
|
|||||||
|
|
||||||
/* Main Search Loop */
|
/* Main Search Loop */
|
||||||
#ifdef __INTEL_COMPILER
|
#ifdef __INTEL_COMPILER
|
||||||
|
/* From intel 'The vector pragma indicates that the loop should be
|
||||||
|
* vectorized if it is legal to do so'. Can be used together with
|
||||||
|
* #pragma ivdep (but have opted to exclude that because intel
|
||||||
|
* warns against using it).*/
|
||||||
#pragma vector always
|
#pragma vector always
|
||||||
#pragma ivdep
|
|
||||||
#endif
|
#endif
|
||||||
while (ip1 < ilimit) { /* < instead of <=, because check at ip0+2 */
|
while (ip1 < ilimit) { /* < instead of <=, because check at ip0+2 */
|
||||||
size_t mLength;
|
size_t mLength;
|
||||||
|
|||||||
Reference in New Issue
Block a user