mirror of
https://github.com/NVIDIA/cutlass.git
synced 2026-07-14 02:57:19 +00:00
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.