Skip to content

Commit

Permalink
OpenVX Port - fix build failures (#10)
Browse files Browse the repository at this point in the history
* Revert change

* opencl changes to threshold

* threshold with C code

Co-authored-by: Hansel Yang <hanselyang123@gmail.com>
  • Loading branch information
LakshmiKumar23 and hansely123 authored Apr 9, 2020
1 parent 28ac48f commit 25fe764
Show file tree
Hide file tree
Showing 4 changed files with 355 additions and 482 deletions.
6 changes: 3 additions & 3 deletions amd_openvx/openvx/ago/ago_haf_cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ int HafCpu_Threshold_U8_S16_Binary
vx_uint32 dstImageStrideInBytes,
vx_int16 * pSrcImage,
vx_uint32 srcImageStrideInBytes,
vx_uint8 threshold
vx_int16 threshold
);
int HafCpu_Threshold_U8_S16_Range
(
Expand All @@ -209,8 +209,8 @@ int HafCpu_Threshold_U8_S16_Range
vx_uint32 dstImageStrideInBytes,
vx_int16 * pSrcImage,
vx_uint32 srcImageStrideInBytes,
vx_uint8 lower,
vx_uint8 upper
vx_int16 lower,
vx_int16 upper
);
int HafCpu_ThresholdNot_U8_U8_Binary
(
Expand Down
Loading

0 comments on commit 25fe764

Please sign in to comment.