Skip to content

Commit e5d9fd7

Browse files
committed
Add SVE to function test runner
1 parent 5c673ff commit e5d9fd7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ jobs:
5858
run: |
5959
python ./Test/astc_test_functional.py --encoder none
6060
python ./Test/astc_test_functional.py --encoder neon
61-
python ./Test/astc_test_functional.py --encoder sve128
61+
python ./Test/astc_test_functional.py --encoder sve_128
6262
python ./Test/astc_test_image.py --encoder none --test-set Small
6363
python ./Test/astc_test_image.py --encoder neon --test-set Small
64-
python ./Test/astc_test_image.py --encoder sve128 --test-set Small
64+
python ./Test/astc_test_image.py --encoder sve_128 --test-set Small
6565
6666
- name: Run unit tests
6767
run: ctest

Test/astc_test_functional.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
# SPDX-License-Identifier: Apache-2.0
33
# -----------------------------------------------------------------------------
4-
# Copyright 2020-2023 Arm Limited
4+
# Copyright 2020-2025 Arm Limited
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
77
# use this file except in compliance with the License. You may obtain a copy
@@ -2183,7 +2183,7 @@ def main():
21832183

21842184
parser = argparse.ArgumentParser()
21852185

2186-
coders = ["none", "neon", "sse2", "sse4.1", "avx2"]
2186+
coders = ["none", "neon", "sve_128", "sve_256", "sse2", "sse4.1", "avx2"]
21872187
parser.add_argument("--encoder", dest="encoder", default="avx2",
21882188
choices=coders, help="test encoder variant")
21892189
args = parser.parse_known_args()

0 commit comments

Comments
 (0)