diff --git a/src/benchmarks/micro/Categories.cs b/src/benchmarks/micro/Categories.cs index 2320189a49d..dbd80029446 100644 --- a/src/benchmarks/micro/Categories.cs +++ b/src/benchmarks/micro/Categories.cs @@ -50,5 +50,6 @@ public static class Categories public const string NoMono = "NoMono"; public const string NoAOT = "NoAOT"; public const string Regex = "Regex"; + public const string Sve = "Sve"; } } diff --git a/src/benchmarks/micro/sve/AddReduction.cs b/src/benchmarks/micro/sve/AddReduction.cs index a9e41d23452..cbc74cb770c 100644 --- a/src/benchmarks/micro/sve/AddReduction.cs +++ b/src/benchmarks/micro/sve/AddReduction.cs @@ -11,7 +11,7 @@ namespace SveBenchmarks { - [BenchmarkCategory(Categories.Runtime)] + [BenchmarkCategory(Categories.Sve)] [OperatingSystemsArchitectureFilter(allowed: true, System.Runtime.InteropServices.Architecture.Arm64)] [Config(typeof(Config))] public class AddReduction diff --git a/src/benchmarks/micro/sve/Logarithm.cs b/src/benchmarks/micro/sve/Logarithm.cs index 55a38a3d048..3400c2a6b58 100644 --- a/src/benchmarks/micro/sve/Logarithm.cs +++ b/src/benchmarks/micro/sve/Logarithm.cs @@ -11,7 +11,7 @@ namespace SveBenchmarks { - [BenchmarkCategory(Categories.Runtime)] + [BenchmarkCategory(Categories.Sve)] [OperatingSystemsArchitectureFilter(allowed: true, System.Runtime.InteropServices.Architecture.Arm64)] [Config(typeof(Config))] public class Logarithm diff --git a/src/benchmarks/micro/sve/MultiplyAdd.cs b/src/benchmarks/micro/sve/MultiplyAdd.cs index ceb8ffcc7d3..407ebf187cc 100644 --- a/src/benchmarks/micro/sve/MultiplyAdd.cs +++ b/src/benchmarks/micro/sve/MultiplyAdd.cs @@ -11,7 +11,7 @@ namespace SveBenchmarks { - [BenchmarkCategory(Categories.Runtime)] + [BenchmarkCategory(Categories.Sve)] [OperatingSystemsArchitectureFilter(allowed: true, System.Runtime.InteropServices.Architecture.Arm64)] [Config(typeof(Config))] public class MultiplyAdd diff --git a/src/benchmarks/micro/sve/Partition.cs b/src/benchmarks/micro/sve/Partition.cs index 162a9499717..4fa1222dfeb 100644 --- a/src/benchmarks/micro/sve/Partition.cs +++ b/src/benchmarks/micro/sve/Partition.cs @@ -10,7 +10,7 @@ namespace SveBenchmarks { - [BenchmarkCategory(Categories.Runtime)] + [BenchmarkCategory(Categories.Sve)] [OperatingSystemsArchitectureFilter(allowed: true, System.Runtime.InteropServices.Architecture.Arm64)] [Config(typeof(Config))] public class Partition diff --git a/src/benchmarks/micro/sve/SquareRoot.cs b/src/benchmarks/micro/sve/SquareRoot.cs index b17614e2461..f889944d9a4 100644 --- a/src/benchmarks/micro/sve/SquareRoot.cs +++ b/src/benchmarks/micro/sve/SquareRoot.cs @@ -11,7 +11,7 @@ namespace SveBenchmarks { - [BenchmarkCategory(Categories.Runtime)] + [BenchmarkCategory(Categories.Sve)] [OperatingSystemsArchitectureFilter(allowed: true, System.Runtime.InteropServices.Architecture.Arm64)] [Config(typeof(Config))] public class SquareRoot diff --git a/src/benchmarks/micro/sve/StrCmp.cs b/src/benchmarks/micro/sve/StrCmp.cs index 95f46760cc0..997f65b809c 100644 --- a/src/benchmarks/micro/sve/StrCmp.cs +++ b/src/benchmarks/micro/sve/StrCmp.cs @@ -12,7 +12,7 @@ namespace SveBenchmarks { - [BenchmarkCategory(Categories.Runtime)] + [BenchmarkCategory(Categories.Sve)] [OperatingSystemsArchitectureFilter(allowed: true, System.Runtime.InteropServices.Architecture.Arm64)] [Config(typeof(Config))] public class StrCmp diff --git a/src/benchmarks/micro/sve/StrIndexOf.cs b/src/benchmarks/micro/sve/StrIndexOf.cs index 04e9e71a967..293b3336df3 100644 --- a/src/benchmarks/micro/sve/StrIndexOf.cs +++ b/src/benchmarks/micro/sve/StrIndexOf.cs @@ -11,7 +11,7 @@ namespace SveBenchmarks { - [BenchmarkCategory(Categories.Runtime)] + [BenchmarkCategory(Categories.Sve)] [OperatingSystemsArchitectureFilter(allowed: true, System.Runtime.InteropServices.Architecture.Arm64)] [Config(typeof(Config))] public class StrIndexOf diff --git a/src/benchmarks/micro/sve/StrLen.cs b/src/benchmarks/micro/sve/StrLen.cs index c60d1344606..5bbde0991e0 100644 --- a/src/benchmarks/micro/sve/StrLen.cs +++ b/src/benchmarks/micro/sve/StrLen.cs @@ -10,7 +10,7 @@ namespace SveBenchmarks { - [BenchmarkCategory(Categories.Runtime)] + [BenchmarkCategory(Categories.Sve)] [OperatingSystemsArchitectureFilter(allowed: true, System.Runtime.InteropServices.Architecture.Arm64)] [Config(typeof(Config))] public class StrLen