| 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 "kleidicv/dispatch.h" | ||
| 6 | #include "kleidicv/kleidicv.h" | ||
| 7 | #include "kleidicv/resize/resize.h" | ||
| 8 | |||
| 9 |
6/6✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✓ Branch 3 taken 3 times.
✓ Branch 4 taken 2 times.
✓ Branch 5 taken 1 times.
|
10 | KLEIDICV_MULTIVERSION_C_API( |
| 10 | kleidicv_resize_to_quarter_u8, &kleidicv::neon::resize_to_quarter_u8, | ||
| 11 | KLEIDICV_SVE2_IMPL_IF(&kleidicv::sve2::resize_to_quarter_u8), | ||
| 12 | &kleidicv::sme::resize_to_quarter_u8, | ||
| 13 | KLEIDICV_SME2_IMPL_IF(&kleidicv::sme2::resize_to_quarter_u8)); | ||
| 14 |