kokkos / stdBLAS

Reference Implementation for stdBLAS
Other
118 stars 22 forks source link

transposed: Implement R8/9 return type rules #233

Closed mhoemmen closed 2 years ago

mhoemmen commented 2 years ago

transposed for many layouts doesn't need to fall back to layout_transpose. It can just flip the extents and layout (e.g., row major to column major, or vice versa). R8 and R9 of P1673 specify this precisely; we just need to implement it.

mhoemmen commented 2 years ago

PR #234 (expanded well beyond its original scope) will fix this.

mhoemmen commented 2 years ago

Fixed by PR #238.