[libc-commits] [libc] 6fb57f7 - [libc] Add basic utility support for timing functions on the GPU
Joseph Huber via libc-commits
libc-commits at lists.llvm.org
Fri Jun 23 13:51:34 PDT 2023
Author: Joseph Huber
Date: 2023-06-23T15:51:28-05:00
New Revision: 6fb57f7349330aeda074e197c715b6f670a56ea2
URL: https://github.com/llvm/llvm-project/commit/6fb57f7349330aeda074e197c715b6f670a56ea2
DIFF: https://github.com/llvm/llvm-project/commit/6fb57f7349330aeda074e197c715b6f670a56ea2.diff
LOG: [libc] Add basic utility support for timing functions on the GPU
This patch adds the utilities for the clocks on the GPU. This is done
prior to exporting it via some other interface and is mainly just done
so they are availible if we wish to do internal testing.
Reviewed By: lntue
Differential Revision: https://reviews.llvm.org/D153388
Added:
Modified:
libc/src/__support/GPU/amdgpu/utils.h
libc/src/__support/GPU/generic/utils.h
libc/src/__support/GPU/nvptx/utils.h
Removed:
################################################################################
diff --git a/libc/src/__support/GPU/amdgpu/utils.h b/libc/src/__support/GPU/amdgpu/utils.h
index 665f45837932e..f8835dafc3c84 100644
--- a/libc/src/__support/GPU/amdgpu/utils.h
+++ b/libc/src/__support/GPU/amdgpu/utils.h
@@ -10,6 +10,7 @@
#define LLVM_LIBC_SRC_SUPPORT_GPU_AMDGPU_IO_H
#include "src/__support/common.h"
+#include "src/__support/macros/config.h"
#include <stdint.h>
@@ -144,6 +145,30 @@ LIBC_INLINE uint32_t get_lane_size() { return LANE_SIZE; }
__builtin_amdgcn_wave_barrier();
}
+/// Returns the current value of the GPU's processor clock.
+/// NOTE: The RDNA3 and RDNA2 architectures use a 20-bit cycle cycle counter.
+LIBC_INLINE uint64_t processor_clock() {
+ if constexpr (LIBC_HAS_BUILTIN(__builtin_amdgcn_s_memtime))
+ return __builtin_amdgcn_s_memtime();
+ else if constexpr (LIBC_HAS_BUILTIN(__builtin_readcyclecounter))
+ return __builtin_readcyclecounter();
+ else
+ return 0;
+}
+
+/// Returns a fixed-frequency timestamp. The actual frequency is dependent on
+/// the card and can only be queried via the driver.
+LIBC_INLINE uint64_t fixed_frequrency_clock() {
+ if constexpr (LIBC_HAS_BUILTIN(__builtin_amdgcn_s_sendmsg_rtnl))
+ return __builtin_amdgcn_s_sendmsg_rtnl(0x83);
+ else if constexpr (LIBC_HAS_BUILTIN(__builtin_amdgcn_s_memrealtime))
+ return __builtin_amdgcn_s_memrealtime();
+ else if constexpr (LIBC_HAS_BUILTIN(__builtin_amdgcn_s_memtime))
+ return __builtin_amdgcn_s_memtime();
+ else
+ return 0;
+}
+
} // namespace gpu
} // namespace __llvm_libc
diff --git a/libc/src/__support/GPU/generic/utils.h b/libc/src/__support/GPU/generic/utils.h
index 546e83e033afa..93cda535a93c8 100644
--- a/libc/src/__support/GPU/generic/utils.h
+++ b/libc/src/__support/GPU/generic/utils.h
@@ -67,6 +67,10 @@ LIBC_INLINE void sync_threads() {}
LIBC_INLINE void sync_lane(uint64_t) {}
+LIBC_INLINE uint64_t processor_clock() { return 0; }
+
+LIBC_INLINE uint64_t fixed_frequrency_clock() { return 0; }
+
} // namespace gpu
} // namespace __llvm_libc
diff --git a/libc/src/__support/GPU/nvptx/utils.h b/libc/src/__support/GPU/nvptx/utils.h
index 560f2c0733a04..2bc3527f47e17 100644
--- a/libc/src/__support/GPU/nvptx/utils.h
+++ b/libc/src/__support/GPU/nvptx/utils.h
@@ -134,6 +134,20 @@ LIBC_INLINE uint32_t get_lane_size() { return LANE_SIZE; }
__nvvm_bar_warp_sync(mask);
}
+/// Returns the current value of the GPU's processor clock.
+LIBC_INLINE uint64_t processor_clock() {
+ uint64_t timestamp;
+ LIBC_INLINE_ASM("mov.u64 %0, %%clock64;" : "=l"(timestamp));
+ return timestamp;
+}
+
+/// Returns a global fixed-frequency timer at nanosecond frequency.
+LIBC_INLINE uint64_t fixed_frequrency_clock() {
+ uint64_t nsecs;
+ LIBC_INLINE_ASM("mov.u64 %0, %%globaltimer;" : "=l"(nsecs));
+ return nsecs;
+}
+
} // namespace gpu
} // namespace __llvm_libc
More information about the libc-commits
mailing list