summaryrefslogtreecommitdiffstats
path: root/tests/cooperative-matrix/map-element-tuple.slang
Commit message (Collapse)AuthorAge
* Implement MapElement for CoopMat (#7159)Jay Kwak2025-05-29
With this PR, MapElement works for the following signatures: - CoopMat<...>::MapElement(functype(...)); - CoopMat<...>::MapElement(capturing-lambda); - CoopMat<...>::MapElement(not-capturing-lambda); - Tuple<CoopMat<...>,...>::MapElement(functype(...)); - Tuple<CoopMat<...>,...>::MapElement(capturing-lambda); - Tuple<CoopMat<...>,...>::MapElement(not-capturing-lambda);