Skip to content

Commit 0d0ca84

Browse files
committed
Final
1 parent 75bd4ab commit 0d0ca84

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

problems/amd_distributed/gemm-rs/reference.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from utils import make_match_reference
21
from task import input_t, output_t
32
import torch
43

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
from typing import TypedDict, TypeVar, Tuple, Dict
1+
from typing import TypedDict, TypeVar, Tuple, Optional
22
import torch
33

4-
input_t = TypeVar("input_t", bound=Tuple[torch.Tensor, Dict[str, torch.Tensor], Dict])
5-
output_t = TypeVar("output_t", bound=Tuple[torch.Tensor, Dict])
4+
input_t = TypeVar("input_t", bound=Tuple[torch.Tensor, torch.Tensor, Optional[torch.Tensor]])
5+
output_t = TypeVar("output_t", bound=torch.Tensor)
66

77

88
class TestSpec(TypedDict):
@@ -11,4 +11,4 @@ class TestSpec(TypedDict):
1111
n: int
1212
k: int
1313
has_bias: bool
14-
seed: int
14+
seed: int

problems/amd_distributed/gemm-rs/task.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ templates:
6060
Python: "submission.py"
6161

6262
ranking_by: "geom"
63+
ranked_timeout: 360 # just in case
6364

6465
tests:
6566
- {"world_size": 8, "m": 64, "n": 2880, "k": 2880, "has_bias": True, "seed": 2035}

0 commit comments

Comments
 (0)