| 858 | const int TensorAddressingOperandsCeiling = 3; |
| 859 | |
| 860 | const char* TensorAddressingOperandsString(int op) |
| 861 | { |
| 862 | switch (op) { |
| 863 | case (int)TensorAddressingOperandsShift::TensorView: return "TensorView"; |
| 864 | case (int)TensorAddressingOperandsShift::DecodeFunc: return "DecodeFunc"; |
| 865 | |
| 866 | default: return "Bad"; |
| 867 | } |
| 868 | } |
| 869 | |
| 870 | const char* ScopeString(int mem) |
| 871 | { |
nothing calls this directly
no outgoing calls
no test coverage detected