summaryrefslogtreecommitdiff
path: root/r600
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-06-26 18:19:50 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-06-26 18:19:50 +0000
commit6af470663c821d5fc88798792aa2b9c84f636d6b (patch)
tree075b8857ef3c600a3dc6c2f8df6f4f610dd22369 /r600
parent760192413b4fd5f67d14a79c5c74d7f6fcea354c (diff)
Move R600 headers into generic directory
git-svn-id: https://llvm.org/svn/llvm-project/libclc/trunk@184978 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'r600')
-rw-r--r--r600/include/clc/synchronization/barrier.h2
-rw-r--r--r600/include/clc/workitem/get_global_id.h1
-rw-r--r--r600/include/clc/workitem/get_global_size.h1
-rw-r--r--r600/include/clc/workitem/get_group_id.h3
-rw-r--r--r600/include/clc/workitem/get_local_id.h3
-rw-r--r--r600/include/clc/workitem/get_local_size.h3
-rw-r--r--r600/include/clc/workitem/get_num_groups.h3
7 files changed, 0 insertions, 16 deletions
diff --git a/r600/include/clc/synchronization/barrier.h b/r600/include/clc/synchronization/barrier.h
deleted file mode 100644
index 7f150d4..0000000
--- a/r600/include/clc/synchronization/barrier.h
+++ /dev/null
@@ -1,2 +0,0 @@
-_CLC_INLINE void barrier(cl_mem_fence_flags flags) {
-}
diff --git a/r600/include/clc/workitem/get_global_id.h b/r600/include/clc/workitem/get_global_id.h
deleted file mode 100644
index b61450f..0000000
--- a/r600/include/clc/workitem/get_global_id.h
+++ /dev/null
@@ -1 +0,0 @@
-size_t get_global_id(uint dim);
diff --git a/r600/include/clc/workitem/get_global_size.h b/r600/include/clc/workitem/get_global_size.h
deleted file mode 100644
index 8d7b9a1..0000000
--- a/r600/include/clc/workitem/get_global_size.h
+++ /dev/null
@@ -1 +0,0 @@
-size_t get_global_size(uint dim);
diff --git a/r600/include/clc/workitem/get_group_id.h b/r600/include/clc/workitem/get_group_id.h
deleted file mode 100644
index 6862dba..0000000
--- a/r600/include/clc/workitem/get_group_id.h
+++ /dev/null
@@ -1,3 +0,0 @@
-_CLC_INLINE size_t get_group_id(uint dim) {
- return 0;
-}
diff --git a/r600/include/clc/workitem/get_local_id.h b/r600/include/clc/workitem/get_local_id.h
deleted file mode 100644
index 22749cd..0000000
--- a/r600/include/clc/workitem/get_local_id.h
+++ /dev/null
@@ -1,3 +0,0 @@
-_CLC_INLINE size_t get_local_id(uint dim) {
- return 0;
-}
diff --git a/r600/include/clc/workitem/get_local_size.h b/r600/include/clc/workitem/get_local_size.h
deleted file mode 100644
index 51d9762..0000000
--- a/r600/include/clc/workitem/get_local_size.h
+++ /dev/null
@@ -1,3 +0,0 @@
-_CLC_INLINE size_t get_local_size(uint dim) {
- return 0;
-}
diff --git a/r600/include/clc/workitem/get_num_groups.h b/r600/include/clc/workitem/get_num_groups.h
deleted file mode 100644
index fe1f343..0000000
--- a/r600/include/clc/workitem/get_num_groups.h
+++ /dev/null
@@ -1,3 +0,0 @@
-_CLC_INLINE size_t get_num_groups(uint dim) {
- return 0;
-}