| 417 | } |
| 418 | |
| 419 | DEVICE uint32_t block_rank_in_cluster() { |
| 420 | uint32_t rank; |
| 421 | asm volatile("mov.u32 %0, %cluster_ctarank;\n" : "=r"(rank) :); |
| 422 | return rank; |
| 423 | } |
| 424 | |
| 425 | // Set the destination block-ID in cluster for a given SMEM Address |
| 426 | DEVICE uint32_t set_block_rank(uint32_t smemAddr, uint32_t rank) { |
no outgoing calls
no test coverage detected