commit | efa913b1c2d3ca566c4520effac2b49d4835ca32 | [log] [tgz] |
---|---|---|
author | Eric Cosatto <cosatto@nec-labs.com> | Thu May 11 21:57:34 2017 -0400 |
committer | Soumith Chintala <soumith@gmail.com> | Thu May 11 18:57:34 2017 -0700 |
tree | f6e77631b00afe7b147399abb30b6ffc22ad0034 | |
parent | aba05ce9dbf2ba9d96e365efe2a41d5d86d228d9 [diff] |
fix uninitialized variable in cmake FindSSE (#1023)
Environment variables control the disabling of certain explicit SIMD optimizations.
x64 options: TH_NO_AVX2=1 # disable AVX2 codepaths TH_NO_AVX=1 # disable AVX codepaths TH_NO_SSE=1 # disable SSE codepaths ppc64le options: TH_NO_VSX=1 # disable VSX codepaths