summaryrefslogtreecommitdiff
path: root/AutoAudioGPU.cl
blob: 07c8d5c17e1ce11da739e5c91ee59ee1c3fb5759 (plain)
1
2
3
4
5
6
7
8
9
10
11
__kernel void AutoAudio(__global float* output)
{
	unsigned int id;
	float x;

	id = get_global_id(0);
	
	x = (float)id;
	
	output[id] = <FUNCTION>;
}