summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Vesely <jan.vesely@rutgers.edu>2016-06-17 20:30:49 +0000
committerJan Vesely <jan.vesely@rutgers.edu>2016-06-17 20:30:49 +0000
commitca7993b0c55c486c781e65a42ebf22cde25cb58c (patch)
treedfb95e335d50d53d2068b21417e9f869ee8968a3
parentca880ed40331fac9b883e783a5fe504f66ac910e (diff)
nvptx: Drop feature defines.
This is now handled by clang Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu> Reviewed-by: Tom Stellard <tom@stellard.net> git-svn-id: https://llvm.org/svn/llvm-project/libclc/trunk@273043 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xconfigure.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/configure.py b/configure.py
index 43ab69d..1cb3371 100755
--- a/configure.py
+++ b/configure.py
@@ -105,14 +105,12 @@ available_targets = {
'amdgcn--amdhsa': { 'devices' :
[{'gpu' : '', 'aliases' : ['bonaire', 'hawaii', 'kabini', 'kaveri', 'mullins', 'carrizo', 'stoney', 'fiji', 'iceland', 'tonga'],
'defines' : {}} ]},
- 'nvptx--' : { 'devices' : [{'gpu' : '', 'aliases' : [],
- 'defines' : {'all' : ['cl_khr_fp64']}}]},
- 'nvptx64--' : { 'devices' : [{'gpu' : '', 'aliases' : [],
- 'defines' : {'all' : ['cl_khr_fp64']}}]},
+ 'nvptx--' : { 'devices' : [{'gpu' : '', 'aliases' : [], 'defines' : {}} ]},
+ 'nvptx64--' : { 'devices' : [{'gpu' : '', 'aliases' : [], 'defines' : {}} ]},
'nvptx--nvidiacl' : { 'devices' : [{'gpu' : '', 'aliases' : [],
- 'defines' : {'all' : ['cl_khr_fp64']}}]},
+ 'defines' : {}} ]},
'nvptx64--nvidiacl' : { 'devices' : [{'gpu' : '', 'aliases' : [],
- 'defines' : {'all' : ['cl_khr_fp64']}}]},
+ 'defines' : {}} ]},
}
default_targets = ['nvptx--nvidiacl', 'nvptx64--nvidiacl', 'r600--', 'amdgcn--', 'amdgcn--amdhsa']