源文雨
c99573b3b2
adapt go1.17
2022-04-12 17:23:18 +08:00
Frank
00562011ad
Added AVX2 support ( #6 )
...
* Added AVX2 support
2016-07-03 11:54:51 -07:00
frankw
f41b7a312a
asm: Add new defines
...
- Add UNDIAGONALIZE define
- Add DIAGONALIZE define
- Add G1 define
- Add G2 define
- Add LOAD_SHUFFLE define
Additionally check for AVX support.
2016-06-28 09:28:38 -07:00
Harshavardhana
3a46db1cb4
Detect SSE automatically and enable corresponding optimized code path.
...
With this change, following happens.
```
if sse {
compressSSE()
return
}
compressGeneric()
```
compressGeneric is used as a fallback when SSE is not detected.
2016-06-28 02:51:14 -07:00