Files
composable_kernel/include/ck/utility/thread_group.hpp
Chao Liu 4a96c2e4ee refactor
2022-04-21 14:22:24 +00:00

19 lines
422 B
C++

#pragma once
#include "get_id.hpp"
namespace ck {
template <index_t ThreadPerBlock>
struct ThisThreadBlock
{
static constexpr index_t kNumThread_ = ThreadPerBlock;
__device__ static constexpr index_t GetNumOfThread() { return kNumThread_; }
__device__ static constexpr bool IsBelong() { return true; }
__device__ static index_t GetThreadId() { return get_thread_local_1d_id(); }
};
} // namespace ck