summaryrefslogtreecommitdiff
path: root/AutoAudioGPU.cl
diff options
context:
space:
mode:
Diffstat (limited to 'AutoAudioGPU.cl')
-rw-r--r--AutoAudioGPU.cl11
1 files changed, 11 insertions, 0 deletions
diff --git a/AutoAudioGPU.cl b/AutoAudioGPU.cl
new file mode 100644
index 0000000..07c8d5c
--- /dev/null
+++ b/AutoAudioGPU.cl
@@ -0,0 +1,11 @@
+__kernel void AutoAudio(__global float* output)
+{
+ unsigned int id;
+ float x;
+
+ id = get_global_id(0);
+
+ x = (float)id;
+
+ output[id] = <FUNCTION>;
+} \ No newline at end of file