no deprecated archs flag for nvcc (#4)

* Update v1.py

* Update v2.py
This commit is contained in:
Said Sakuh
2019-06-27 00:52:11 +03:00
committed by Andrei Nechaev
parent 94802d1335
commit b88614e6e5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ import uuid
from IPython.core.magic import Magics, cell_magic, magics_class from IPython.core.magic import Magics, cell_magic, magics_class
compiler = '/usr/local/cuda/bin/nvcc' compiler = '/usr/local/cuda/bin/nvcc -Wno-deprecated-gpu-targets'
ext = '.cu' ext = '.cu'
+1 -1
View File
@@ -5,7 +5,7 @@ from IPython.core.magic import Magics, cell_magic, magics_class
from IPython.core.magic_arguments import argument, magic_arguments, parse_argstring from IPython.core.magic_arguments import argument, magic_arguments, parse_argstring
from common import helper from common import helper
compiler = '/usr/local/cuda/bin/nvcc' compiler = '/usr/local/cuda/bin/nvcc --Wno-deprecated-gpu-targets'
@magics_class @magics_class
class NVCCPluginV2(Magics): class NVCCPluginV2(Magics):