Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
[AMDGPU] Add missing targets
Browse files Browse the repository at this point in the history
- gfx600
- gfx601
- gfx602
- gfx703
- gfx704
- gfx705
- gfx805
- gfx909
- gfx90c

Change-Id: If4d2b3aee3a10a28db33387afa323b5fd1ba29ec
  • Loading branch information
t-tye authored and searlmc1 committed Jan 6, 2021
1 parent 6442b24 commit d3a24a3
Show file tree
Hide file tree
Showing 9 changed files with 97 additions and 0 deletions.
11 changes: 11 additions & 0 deletions oclc/src/isa_version_600.cl
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*===--------------------------------------------------------------------------
* ROCm Device Libraries
*
* This file is distributed under the University of Illinois Open Source
* License. See LICENSE.TXT for details.
*===------------------------------------------------------------------------*/

#include "oclc.h"

const __constant int __oclc_ISA_version = 6000;

11 changes: 11 additions & 0 deletions oclc/src/isa_version_601.cl
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*===--------------------------------------------------------------------------
* ROCm Device Libraries
*
* This file is distributed under the University of Illinois Open Source
* License. See LICENSE.TXT for details.
*===------------------------------------------------------------------------*/

#include "oclc.h"

const __constant int __oclc_ISA_version = 6001;

11 changes: 11 additions & 0 deletions oclc/src/isa_version_602.cl
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*===--------------------------------------------------------------------------
* ROCm Device Libraries
*
* This file is distributed under the University of Illinois Open Source
* License. See LICENSE.TXT for details.
*===------------------------------------------------------------------------*/

#include "oclc.h"

const __constant int __oclc_ISA_version = 6002;

11 changes: 11 additions & 0 deletions oclc/src/isa_version_703.cl
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*===--------------------------------------------------------------------------
* ROCm Device Libraries
*
* This file is distributed under the University of Illinois Open Source
* License. See LICENSE.TXT for details.
*===------------------------------------------------------------------------*/

#include "oclc.h"

const __constant int __oclc_ISA_version = 7003;

11 changes: 11 additions & 0 deletions oclc/src/isa_version_704.cl
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*===--------------------------------------------------------------------------
* ROCm Device Libraries
*
* This file is distributed under the University of Illinois Open Source
* License. See LICENSE.TXT for details.
*===------------------------------------------------------------------------*/

#include "oclc.h"

const __constant int __oclc_ISA_version = 7004;

11 changes: 11 additions & 0 deletions oclc/src/isa_version_705.cl
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*===--------------------------------------------------------------------------
* ROCm Device Libraries
*
* This file is distributed under the University of Illinois Open Source
* License. See LICENSE.TXT for details.
*===------------------------------------------------------------------------*/

#include "oclc.h"

const __constant int __oclc_ISA_version = 7005;

11 changes: 11 additions & 0 deletions oclc/src/isa_version_805.cl
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*===--------------------------------------------------------------------------
* ROCm Device Libraries
*
* This file is distributed under the University of Illinois Open Source
* License. See LICENSE.TXT for details.
*===------------------------------------------------------------------------*/

#include "oclc.h"

const __constant int __oclc_ISA_version = 8005;

10 changes: 10 additions & 0 deletions oclc/src/isa_version_909.cl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/*===--------------------------------------------------------------------------
* ROCm Device Libraries
*
* This file is distributed under the University of Illinois Open Source
* License. See LICENSE.TXT for details.
*===------------------------------------------------------------------------*/

#include "oclc.h"

const __constant int __oclc_ISA_version = 9009;
10 changes: 10 additions & 0 deletions oclc/src/isa_version_90c.cl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/*===--------------------------------------------------------------------------
* ROCm Device Libraries
*
* This file is distributed under the University of Illinois Open Source
* License. See LICENSE.TXT for details.
*===------------------------------------------------------------------------*/

#include "oclc.h"

const __constant int __oclc_ISA_version = 9012;

0 comments on commit d3a24a3

Please sign in to comment.