Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/benchmarks/micro/Categories.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
}
2 changes: 1 addition & 1 deletion src/benchmarks/micro/sve/AddReduction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace SveBenchmarks
{
[BenchmarkCategory(Categories.Runtime)]
[BenchmarkCategory(Categories.Runtime, Categories.Sve)]
[OperatingSystemsArchitectureFilter(allowed: true, System.Runtime.InteropServices.Architecture.Arm64)]
[Config(typeof(Config))]
public class AddReduction
Expand Down
2 changes: 1 addition & 1 deletion src/benchmarks/micro/sve/Logarithm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace SveBenchmarks
{
[BenchmarkCategory(Categories.Runtime)]
[BenchmarkCategory(Categories.Runtime, Categories.Sve)]
[OperatingSystemsArchitectureFilter(allowed: true, System.Runtime.InteropServices.Architecture.Arm64)]
[Config(typeof(Config))]
public class Logarithm
Expand Down
2 changes: 1 addition & 1 deletion src/benchmarks/micro/sve/MultiplyAdd.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace SveBenchmarks
{
[BenchmarkCategory(Categories.Runtime)]
[BenchmarkCategory(Categories.Runtime, Categories.Sve)]
[OperatingSystemsArchitectureFilter(allowed: true, System.Runtime.InteropServices.Architecture.Arm64)]
[Config(typeof(Config))]
public class MultiplyAdd
Expand Down
2 changes: 1 addition & 1 deletion src/benchmarks/micro/sve/Partition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace SveBenchmarks
{
[BenchmarkCategory(Categories.Runtime)]
[BenchmarkCategory(Categories.Runtime, Categories.Sve)]
[OperatingSystemsArchitectureFilter(allowed: true, System.Runtime.InteropServices.Architecture.Arm64)]
[Config(typeof(Config))]
public class Partition
Expand Down
2 changes: 1 addition & 1 deletion src/benchmarks/micro/sve/SquareRoot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace SveBenchmarks
{
[BenchmarkCategory(Categories.Runtime)]
[BenchmarkCategory(Categories.Runtime, Categories.Sve)]
[OperatingSystemsArchitectureFilter(allowed: true, System.Runtime.InteropServices.Architecture.Arm64)]
[Config(typeof(Config))]
public class SquareRoot
Expand Down
2 changes: 1 addition & 1 deletion src/benchmarks/micro/sve/StrCmp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace SveBenchmarks
{
[BenchmarkCategory(Categories.Runtime)]
[BenchmarkCategory(Categories.Runtime, Categories.Sve)]
[OperatingSystemsArchitectureFilter(allowed: true, System.Runtime.InteropServices.Architecture.Arm64)]
[Config(typeof(Config))]
public class StrCmp
Expand Down
2 changes: 1 addition & 1 deletion src/benchmarks/micro/sve/StrIndexOf.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace SveBenchmarks
{
[BenchmarkCategory(Categories.Runtime)]
[BenchmarkCategory(Categories.Runtime, Categories.Sve)]
[OperatingSystemsArchitectureFilter(allowed: true, System.Runtime.InteropServices.Architecture.Arm64)]
[Config(typeof(Config))]
public class StrIndexOf
Expand Down
2 changes: 1 addition & 1 deletion src/benchmarks/micro/sve/StrLen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace SveBenchmarks
{
[BenchmarkCategory(Categories.Runtime)]
[BenchmarkCategory(Categories.Runtime, Categories.Sve)]
[OperatingSystemsArchitectureFilter(allowed: true, System.Runtime.InteropServices.Architecture.Arm64)]
[Config(typeof(Config))]
public class StrLen
Expand Down
Loading