diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2014-02-14 20:33:53 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2014-02-14 20:33:53 +0000 |
commit | d873c8e05ab204deebb30abceba1199eccf43a57 (patch) | |
tree | 092e143304b5f8e51a896fba183274960daed225 /libclc/configure.py | |
parent | b0a7cb2e3ef33483dc75034477b001dff26fe343 (diff) | |
download | bcm5719-llvm-d873c8e05ab204deebb30abceba1199eccf43a57.tar.gz bcm5719-llvm-d873c8e05ab204deebb30abceba1199eccf43a57.zip |
Add generic nvptx targets
These do not import the code specific to nvidiacl
Patch by: Jeroen Ketema
llvm-svn: 201431
Diffstat (limited to 'libclc/configure.py')
-rwxr-xr-x | libclc/configure.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libclc/configure.py b/libclc/configure.py index 9ad55265a4a..768a6ada3b7 100755 --- a/libclc/configure.py +++ b/libclc/configure.py @@ -88,6 +88,8 @@ available_targets = { {'gpu' : 'barts', 'aliases' : ['turks', 'caicos']}, {'gpu' : 'cayman', 'aliases' : ['aruba']}, {'gpu' : 'tahiti', 'aliases' : ['pitcairn', 'verde', 'oland', 'bonaire', 'kabini', 'kaveri', 'hawaii']}]}, + 'nvptx--' : { 'devices' : [{'gpu' : '', 'aliases' : []}] }, + 'nvptx64--' : { 'devices' : [{'gpu' : '', 'aliases' : []}] }, 'nvptx--nvidiacl' : { 'devices' : [{'gpu' : '', 'aliases' : []}] }, 'nvptx64--nvidiacl' : { 'devices' : [{'gpu' : '', 'aliases' : []}] } } |