Skip to content

Commit 010e49f

Browse files
authored
Merge pull request #6 from Point72/tkp/initbm
Move benchmark location
2 parents 7624a1f + 676b2a2 commit 010e49f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

csp_benchmarks/hetzner/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class ServerConfig:
2222
name: str = "csp-benchmark-runner"
2323
server_type: str = "cpx21" # 3 vCPU, 4GB RAM (AMD)
2424
image: str = "ubuntu-24.04"
25-
location: str = "fsn1" # Falkenstein, Germany
25+
location: str = "nbg1" # Nuremberg, Germany (supports AMD cpx series)
2626
ssh_key_name: str | None = None
2727

2828

csp_benchmarks/tests/test_hetzner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def test_default_config(self):
2020
assert config.name == "csp-benchmark-runner"
2121
assert config.server_type == "cpx21"
2222
assert config.image == "ubuntu-24.04"
23-
assert config.location == "fsn1"
23+
assert config.location == "nbg1"
2424
assert config.ssh_key_name is None
2525

2626
def test_custom_config(self):

0 commit comments

Comments
 (0)