DPC++ Runtime
Runtime libraries for oneAPI DPC++
forward_progress.hpp
Go to the documentation of this file.
1 //==------- forward_progress.hpp - sycl_ext_oneapi_forward_progress -------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #pragma once
10 
11 namespace sycl {
12 inline namespace _V1 {
13 namespace ext {
14 namespace oneapi {
15 namespace experimental {
16 
18 
19 enum class execution_scope {
20  work_item,
21  sub_group,
22  work_group,
23  root_group,
24 };
25 
26 } // namespace experimental
27 } // namespace oneapi
28 } // namespace ext
29 } // namespace _V1
30 } // namespace sycl
Definition: access.hpp:18