KleidiCV Coverage Report


Directory: ./
File: kleidicv/src/filters/scharr_sme.cpp
Date: 2025-09-25 14:13:34
Exec Total Coverage
Lines: 4 4 100.0%
Functions: 1 1 100.0%
Branches: 0 0 -%

Line Branch Exec Source
1 // SPDX-FileCopyrightText: 2024 - 2025 Arm Limited and/or its affiliates <open-source-office@arm.com>
2 //
3 // SPDX-License-Identifier: Apache-2.0
4
5 #include "kleidicv/filters/scharr.h"
6 #include "scharr_sc.h"
7
8 namespace kleidicv::sme {
9
10 KLEIDICV_LOCALLY_STREAMING KLEIDICV_TARGET_FN_ATTRS kleidicv_error_t
11 73 kleidicv_scharr_interleaved_stripe_s16_u8(const uint8_t *src, size_t src_stride,
12 size_t src_width, size_t src_height,
13 size_t src_channels, int16_t *dst,
14 size_t dst_stride, size_t y_begin,
15 size_t y_end) {
16 73 return kleidicv_scharr_interleaved_stripe_s16_u8_sc(
17 73 src, src_stride, src_width, src_height, src_channels, dst, dst_stride,
18 73 y_begin, y_end);
19 }
20
21 } // namespace kleidicv::sme
22