Skip to content

Commit f51ba9e

Browse files
Fix/spmm name (#200)
* Document that challenge name is used for URL generation Add note in CLAUDE.md that the `name` parameter in `__init__` is used to generate URLs, so it should use URL-friendly characters only (no parentheses, special symbols, etc.). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * Fix name --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b59a50f commit f51ba9e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Must inherit from `ChallengeBase` and follow Black formatting (line length 100).
4141
#### `__init__`
4242
```python
4343
super().__init__(
44-
name="Challenge Display Name",
44+
name="Challenge Display Name", # Used to generate URLs — use URL-friendly characters only (no parentheses, special symbols, etc.)
4545
atol=1e-05, # Absolute tolerance (float32 default)
4646
rtol=1e-05, # Relative tolerance (float32 default)
4747
num_gpus=1,

challenges/medium/75_sparse_matrix_dense_matrix_multiplication/challenge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
class Challenge(ChallengeBase):
99
def __init__(self):
1010
super().__init__(
11-
name="Sparse Matrix-Dense Matrix Multiplication (SpMM)",
11+
name="Sparse Matrix-Dense Matrix Multiplication",
1212
atol=1e-03,
1313
rtol=1e-03,
1414
num_gpus=1,

0 commit comments

Comments
 (0)