MCPcopy Create free account
hub / github.com/NVIDIA/cuda-tile / verifyLoadStoreMask

Method verifyLoadStoreMask

lib/Dialect/CudaTile/IR/Traits.cpp:31–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29}
30
31bool 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
40bool OpTrait::cuda_tile::impl::verifyLoadPadding(Type resultType,
41 Type paddingType) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected