mirror of
https://github.com/opencv/opencv.git
synced 2025-06-07 17:44:04 +08:00
Merge pull request #18360 from tomoaki0705:fixClampFailure
This commit is contained in:
commit
3e3787ecb6
@ -114,6 +114,6 @@ __kernel void clip(const int nthreads,
|
|||||||
for (int index = get_global_id(0); index < nthreads; index += get_global_size(0))
|
for (int index = get_global_id(0); index < nthreads; index += get_global_size(0))
|
||||||
{
|
{
|
||||||
Dtype4 vec = vload4(index, dst);
|
Dtype4 vec = vload4(index, dst);
|
||||||
vstore4(clamp(vec, 0.0f, 1.0f), index, dst);
|
vstore4(clamp(vec, (Dtype)0.0f, (Dtype)1.0f), index, dst);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user