KleidiCV Coverage Report


Directory: ./
File: kleidicv/src/filters/gaussian_blur_fixed_sve2.cpp
Date: 2026-01-20 20:58:59
Exec Total Coverage
Lines: 4 4 100.0%
Functions: 1 1 100.0%
Branches: 0 0 -%

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 "gaussian_blur_fixed_sc.h"
6
7 namespace kleidicv::sve2 {
8
9 KLEIDICV_TARGET_FN_ATTRS
10 347 kleidicv_error_t gaussian_blur_fixed_stripe_u8(
11 const uint8_t *src, size_t src_stride, uint8_t *dst, size_t dst_stride,
12 size_t width, size_t height, size_t y_begin, size_t y_end, size_t channels,
13 size_t kernel_width, size_t kernel_height, float sigma_x, float sigma_y,
14 FixedBorderType border_type) {
15 347 return gaussian_blur_fixed_stripe_u8_sc(
16 347 src, src_stride, dst, dst_stride, width, height, y_begin, y_end, channels,
17 347 kernel_width, kernel_height, sigma_x, sigma_y, border_type);
18 }
19
20 } // namespace kleidicv::sve2
21