| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | // SPDX-FileCopyrightText: 2023 - 2025 Arm Limited and/or its affiliates <open-source-office@arm.com> | ||
| 2 | // | ||
| 3 | // SPDX-License-Identifier: Apache-2.0 | ||
| 4 | |||
| 5 | #include "sobel_sc.h" | ||
| 6 | |||
| 7 | namespace kleidicv::sme { | ||
| 8 | |||
| 9 | KLEIDICV_LOCALLY_STREAMING KLEIDICV_TARGET_FN_ATTRS kleidicv_error_t | ||
| 10 | 180 | sobel_3x3_horizontal_stripe_s16_u8(const uint8_t *src, size_t src_stride, | |
| 11 | int16_t *dst, size_t dst_stride, | ||
| 12 | size_t width, size_t height, size_t y_begin, | ||
| 13 | size_t y_end, size_t channels) { | ||
| 14 | 360 | return sobel_3x3_horizontal_stripe_s16_u8_sc(src, src_stride, dst, dst_stride, | |
| 15 | 180 | width, height, y_begin, y_end, | |
| 16 | 180 | channels); | |
| 17 | } | ||
| 18 | |||
| 19 | KLEIDICV_LOCALLY_STREAMING KLEIDICV_TARGET_FN_ATTRS kleidicv_error_t | ||
| 20 | 180 | sobel_3x3_vertical_stripe_s16_u8(const uint8_t *src, size_t src_stride, | |
| 21 | int16_t *dst, size_t dst_stride, size_t width, | ||
| 22 | size_t height, size_t y_begin, size_t y_end, | ||
| 23 | size_t channels) { | ||
| 24 | 360 | return sobel_3x3_vertical_stripe_s16_u8_sc(src, src_stride, dst, dst_stride, | |
| 25 | 180 | width, height, y_begin, y_end, | |
| 26 | 180 | channels); | |
| 27 | } | ||
| 28 | |||
| 29 | } // namespace kleidicv::sme | ||
| 30 |