Skip to content
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
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Must inherit from `ChallengeBase` and follow Black formatting (line length 100).
#### `__init__`
```python
super().__init__(
name="Challenge Display Name",
name="Challenge Display Name", # Used to generate URLs — use URL-friendly characters only (no parentheses, special symbols, etc.)
atol=1e-05, # Absolute tolerance (float32 default)
rtol=1e-05, # Relative tolerance (float32 default)
num_gpus=1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class Challenge(ChallengeBase):
def __init__(self):
super().__init__(
name="Sparse Matrix-Dense Matrix Multiplication (SpMM)",
name="Sparse Matrix-Dense Matrix Multiplication",
atol=1e-03,
rtol=1e-03,
num_gpus=1,
Expand Down