| 3021 | } |
| 3022 | |
| 3023 | bool sameTensorBaseTypeARM(const TType &right) const { |
| 3024 | return (typeParameters == nullptr || right.typeParameters == nullptr || |
| 3025 | (tensorRankARM == right.tensorRankARM && getBasicType() == right.getBasicType())); |
| 3026 | } |
| 3027 | |
| 3028 | bool sameCoopVecBaseType(const TType &right) const { |
| 3029 | bool rv = false; |
no test coverage detected