Updated flag to prevent nvcc warnings in Windows.

这个提交包含在:
Craig Warren
2019-02-13 12:14:28 +00:00
父节点 af48d19edb
当前提交 dbeb8d902b

查看文件

@@ -480,7 +480,7 @@ def solve_gpu(currentmodelrun, modelend, G):
# Suppress nvcc warnings on Windows
if sys.platform == 'win32':
compiler_opts = '-Xcompiler "/w"'
compiler_opts = ['-w']
else:
compiler_opts = None