summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libc/src/__support/GPU/nvptx/utils.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/libc/src/__support/GPU/nvptx/utils.h b/libc/src/__support/GPU/nvptx/utils.h
index 9f20edf16c62..763675735a2b 100644
--- a/libc/src/__support/GPU/nvptx/utils.h
+++ b/libc/src/__support/GPU/nvptx/utils.h
@@ -130,11 +130,7 @@ LIBC_INLINE uint32_t get_lane_size() { return LANE_SIZE; }
/// Waits for all threads in the warp to reconverge for independent scheduling.
[[clang::convergent]] LIBC_INLINE void sync_lane(uint64_t mask) {
-#if __CUDA_ARCH__ >= 700
__nvvm_bar_warp_sync(mask);
-#else
- (void)mask;
-#endif
}
} // namespace gpu