"platforms/cuda/tests/TestCudaFFT3D.cpp" did not exist on "b51a1b3c7b546de4c209dad46ccc99e24e9b71ad"
Commit 066cdd60 authored by peastman's avatar peastman
Browse files

Merge pull request #744 from peastman/master

Workaround for compiler bug in Visual Studio
parents 12dbd216 a55b34ee
......@@ -31,6 +31,12 @@
using namespace std;
using namespace OpenMM;
#ifdef _MSC_VER
// Workaround for a compiler bug in Visual Studio 10. Hopefully we can remove this
// once we move to a later version.
#undef __AVX__
#endif
#ifndef __AVX__
bool isVec8Supported() {
return false;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment