Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions adoc/headers/group.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ template <int Dimensions = 1> class group {
static constexpr int dimensions = Dimensions;
static constexpr memory_scope fence_scope = memory_scope::work_group;

group() = delete;

/* -- common interface members -- */

id<Dimensions> get_group_id() const;
Expand Down
2 changes: 2 additions & 0 deletions adoc/headers/subgroup.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ class sub_group {
static constexpr int dimensions = 1;
static constexpr memory_scope fence_scope = memory_scope::sub_group;

sub_group() = delete;

/* -- common interface members -- */

id<1> get_group_id() const;
Expand Down