Files
cutlass/test/examples
Nandor Licker 3f3db08a0a Add support for empty dataclass arguments (#3152)
A dataclass with no fields exposed a bug in `extract_dataclass_members`:

```
@dataclass
class Dummy:
  pass
```

The type/return path was inconsistent. This PR fixes the function to
support empty dataclasses, which are useful in unions.
2026-04-17 08:47:47 +08:00
..