| 827 | const int MemoryAccessCeiling = 6; |
| 828 | |
| 829 | const char* MemoryAccessString(int mem) |
| 830 | { |
| 831 | switch (mem) { |
| 832 | case (int)MemoryAccessShift::Volatile: return "Volatile"; |
| 833 | case (int)MemoryAccessShift::Aligned: return "Aligned"; |
| 834 | case (int)MemoryAccessShift::Nontemporal: return "Nontemporal"; |
| 835 | case (int)MemoryAccessShift::MakePointerAvailableKHR: return "MakePointerAvailableKHR"; |
| 836 | case (int)MemoryAccessShift::MakePointerVisibleKHR: return "MakePointerVisibleKHR"; |
| 837 | case (int)MemoryAccessShift::NonPrivatePointerKHR: return "NonPrivatePointerKHR"; |
| 838 | |
| 839 | default: return "Bad"; |
| 840 | } |
| 841 | } |
| 842 | |
| 843 | const int CooperativeMatrixOperandsCeiling = 6; |
| 844 |
nothing calls this directly
no outgoing calls
no test coverage detected