Skip to content

Commit a824f5e

Browse files
committed
Merge branch 'main' of github.com:SpareCores/sc-inspector
2 parents f064b92 + 0b33b1c commit a824f5e

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

inspector/inspector.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,12 @@
3838
EXCLUDE_INSTANCES: list[tuple[str, str]] = [
3939
("aws", "f2.48xlarge"),
4040
("aws", "p4de.24xlarge"),
41+
("aws", "p5.4xlarge"),
4142
("aws", "p5.48xlarge"),
4243
("aws", "p5e.48xlarge"),
4344
("aws", "p5en.48xlarge"),
45+
("aws", "p6-b200.48xlarge"),
46+
("aws", "p6-b300.48xlarge"),
4447
("aws", "trn2.48xlarge"),
4548
("aws", "u7i-12tb.224xlarge"),
4649
("aws", "u7i-8tb.112xlarge"),

inspector/lib.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
re.compile(r"creating .* error"), # Azure errors
4848
re.compile(r"creating failed"), # Azure errors
4949
re.compile(r"error waiting for.*to create"), # GCP error
50+
re.compile(r"Unable to create server"), # Upcloud error
5051
}
5152
# provision machines with storage (GiB)
5253
VOLUME_SIZE = 128

inspector/repo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def add_token_auth(url: str, token: str) -> str:
3636
parsed = urlparse(url)
3737
# works no matter if the original url had a user/pass or not
3838
domain = parsed.netloc.split("@")[-1]
39-
domain = f"{token}@{domain}"
39+
domain = f"user:{token}@{domain}"
4040
unparsed = (parsed[0], domain, parsed[2], parsed[3], parsed[4], parsed[5])
4141
return urlunparse(unparsed)
4242

inspector/tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@
195195
llm = DockerTask(
196196
parallel=False,
197197
# might be slow when testing large models
198-
timeout=timedelta(hours=1),
198+
timeout=timedelta(hours=1.5),
199199
minimum_memory=1,
200200
priority=11,
201201
image="ghcr.io/sparecores/benchmark-llm:main",

0 commit comments

Comments
 (0)