chore(ci): fix test filtering for gpu multi-bit parameters set

This commit is contained in:
David Testé
2024-07-16 13:15:06 +02:00
committed by David Testé
parent cef055b7f3
commit ebf1fd9e84

View File

@@ -100,6 +100,9 @@ def filter_integer_tests(input_args):
backend_filter = ""
if input_args.backend == "gpu":
backend_filter = "gpu::"
if multi_bit_filter:
# For now, GPU only has specific parameters set for multi-bit
multi_bit_filter = "_gpu_multi_bit"
filter_expression = [f"test(/^integer::{backend_filter}.*/)"]