Skip to content

add Graviton 4, Neoverse-V2 #373

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 9, 2025
Merged
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
5 changes: 3 additions & 2 deletions internal/report/cpu_defs.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@ var cpuDefinitions = []CPUDefinition{
{MicroArchitecture: "Turin (Zen 5c)", Family: "26", Model: "17", Stepping: "", Architecture: "x86_64", MemoryChannelCount: 12, LogicalThreadCount: 2, CacheWayCount: 0}, // Turin (Zen 5c)

// ARM CPUs
{MicroArchitecture: "Neoverse N1", Family: "", Model: "1", Stepping: "r3p1", Architecture: "arm64", MemoryChannelCount: 8, LogicalThreadCount: 1, CacheWayCount: 0}, // AWS Graviton 2
{MicroArchitecture: "Neoverse V1", Family: "", Model: "1", Stepping: "r1p1", Architecture: "arm64", MemoryChannelCount: 8, LogicalThreadCount: 1, CacheWayCount: 0}, // AWS Graviton 3
{MicroArchitecture: "Neoverse-N1", Family: "", Model: "1", Stepping: "r3p1", Architecture: "aarch64", MemoryChannelCount: 8, LogicalThreadCount: 1, CacheWayCount: 0}, // AWS Graviton 2
{MicroArchitecture: "Neoverse-V1", Family: "", Model: "1", Stepping: "r1p1", Architecture: "aarch64", MemoryChannelCount: 8, LogicalThreadCount: 1, CacheWayCount: 0}, // AWS Graviton 3
{MicroArchitecture: "Neoverse-V2", Family: "", Model: "1", Stepping: "r0p1", Architecture: "aarch64", MemoryChannelCount: 8, LogicalThreadCount: 1, CacheWayCount: 0}, // AWS Graviton 4
}

// getCPUExtended retrieves the CPU structure that matches the provided args
Expand Down
2 changes: 1 addition & 1 deletion internal/report/table_defs.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ type XlsxTableRenderer func(TableValues, *excelize.File, string, *int)
type TableDefinition struct {
Name string
ScriptNames []string
Architectures []string // architectures, i.e., x86_64, arm64. If empty, it will be present for all architectures.
Architectures []string // architectures, i.e., x86_64, aarch64. If empty, it will be present for all architectures.
Vendors []string // vendors, e.g., GenuineIntel, AuthenticAMD. If empty, it will be present for all vendors.
Families []string // families, e.g., 6, 7. If empty, it will be present for all families.
Models []string // models, e.g., 62, 63. If empty, it will be present for all models.
Expand Down
2 changes: 1 addition & 1 deletion internal/script/script_defs.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
type ScriptDefinition struct {
Name string // just a name
ScriptTemplate string // the bash script that will be run
Architectures []string // architectures, i.e., x86_64, arm64. If empty, it will run on all architectures.
Architectures []string // architectures, i.e., x86_64, aarch64. If empty, it will run on all architectures.
Vendors []string // vendors, i.e., GenuineIntel, AuthenticAMD. If empty, it will run on all vendors.
Families []string // families, e.g., 6, 7. If empty, it will run on all families.
Models []string // models, e.g., 62, 63. If empty, it will run on all models.
Expand Down