You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for explicit type conversion of matrices in codegen. Matrix type conversion is a special case as spirv mlir conversion ops operate on vectors, so we have to convert the vectors the matrix is composed of, then reconstruct a new matrix with the converted vectors.
We only have to support mat to dmat and dmat to mat, so using FConvert on the composing vectors.
The text was updated successfully, but these errors were encountered:
Add support for explicit type conversion of matrices in codegen. Matrix type conversion is a special case as spirv mlir conversion ops operate on vectors, so we have to convert the vectors the matrix is composed of, then reconstruct a new matrix with the converted vectors.
We only have to support
mat
todmat
anddmat
tomat
, so usingFConvert
on the composing vectors.The text was updated successfully, but these errors were encountered: