Joseph Redmon
2014-12-18 9e98f1b68e2ebf618d7f65a0985f5efd11e413f9
1
2
3
4
5
__kernel void yoloswag420blazeit360noscope(__global float *input, __global float *rand, float prob, float scale)
{
    int id = get_global_id(0);
    input[id] = (rand[id] < prob) ? 0 : input[id]*scale;
}