| 29 | } |
| 30 | |
| 31 | bool OpTrait::cuda_tile::impl::verifyLoadStoreMask(Type resultType, |
| 32 | Type maskType) { |
| 33 | if (!isa<TileType>(resultType) || !isa<TileType>(maskType)) |
| 34 | return false; |
| 35 | |
| 36 | return cast<TileType>(resultType).getShape() == |
| 37 | cast<TileType>(maskType).getShape(); |
| 38 | } |
| 39 | |
| 40 | bool OpTrait::cuda_tile::impl::verifyLoadPadding(Type resultType, |
| 41 | Type paddingType) { |
nothing calls this directly
no outgoing calls
no test coverage detected