//===-------------- Generic implementation of GPU utils ---------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_LIBC_SRC___SUPPORT_GPU_GENERIC_UTILS_H #define LLVM_LIBC_SRC___SUPPORT_GPU_GENERIC_UTILS_H #include "src/__support/common.h" #include namespace LIBC_NAMESPACE { namespace gpu { template using Private = T; template using Constant = T; template using Shared = T; template using Global = T; LIBC_INLINE uint32_t get_num_blocks_x() { return 1; } LIBC_INLINE uint32_t get_num_blocks_y() { return 1; } LIBC_INLINE uint32_t get_num_blocks_z() { return 1; } LIBC_INLINE uint64_t get_num_blocks() { return 1; } LIBC_INLINE uint32_t get_block_id_x() { return 0; } LIBC_INLINE uint32_t get_block_id_y() { return 0; } LIBC_INLINE uint32_t get_block_id_z() { return 0; } LIBC_INLINE uint64_t get_block_id() { return 0; } LIBC_INLINE uint32_t get_num_threads_x() { return 1; } LIBC_INLINE uint32_t get_num_threads_y() { return 1; } LIBC_INLINE uint32_t get_num_threads_z() { return 1; } LIBC_INLINE uint64_t get_num_threads() { return 1; } LIBC_INLINE uint32_t get_thread_id_x() { return 0; } LIBC_INLINE uint32_t get_thread_id_y() { return 0; } LIBC_INLINE uint32_t get_thread_id_z() { return 0; } LIBC_INLINE uint64_t get_thread_id() { return 0; } LIBC_INLINE uint32_t get_lane_size() { return 1; } LIBC_INLINE uint32_t get_lane_id() { return 0; } LIBC_INLINE uint64_t get_lane_mask() { return 1; } LIBC_INLINE uint32_t broadcast_value(uint64_t, uint32_t x) { return x; } LIBC_INLINE uint64_t ballot(uint64_t, bool x) { return x; } LIBC_INLINE void sync_threads() {} LIBC_INLINE void sync_lane(uint64_t) {} LIBC_INLINE uint32_t shuffle(uint64_t, uint32_t, uint32_t x) { return x; } LIBC_INLINE uint64_t processor_clock() { return 0; } LIBC_INLINE uint64_t fixed_frequency_clock() { return 0; } [[noreturn]] LIBC_INLINE void end_program() { __builtin_unreachable(); } LIBC_INLINE uint32_t get_cluster_id() { return 0; } } // namespace gpu } // namespace LIBC_NAMESPACE #endif // LLVM_LIBC_SRC___SUPPORT_GPU_GENERIC_UTILS_H