Skip to content
Merged
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: 1 addition & 1 deletion sycl/include/sycl/sycl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
#include <sycl/ext/intel/experimental/task_sequence_properties.hpp>
#include <sycl/ext/intel/experimental/usm_properties.hpp>
#include <sycl/ext/intel/usm_pointers.hpp>
#include <sycl/ext/khr/free_function_commands.hpp>
#include <sycl/ext/oneapi/bfloat16.hpp>
#include <sycl/ext/oneapi/bindless_images.hpp>
#include <sycl/ext/oneapi/device_global/device_global.hpp>
Expand Down Expand Up @@ -123,4 +122,5 @@
#include <sycl/ext/oneapi/virtual_mem/physical_mem.hpp>
#include <sycl/ext/oneapi/virtual_mem/virtual_mem.hpp>
#include <sycl/ext/oneapi/weak_object.hpp>
#include <sycl/khr/free_function_commands.hpp>
#include <sycl/khr/group_interface.hpp>
2 changes: 1 addition & 1 deletion sycl/test-e2e/FreeFunctionCommands/launch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#define __DPCPP_ENABLE_UNFINISHED_KHR_EXTENSIONS

#include <sycl/detail/core.hpp>
#include <sycl/ext/khr/free_function_commands.hpp>
#include <sycl/khr/free_function_commands.hpp>
#include <sycl/usm.hpp>

#include <array>
Expand Down
2 changes: 1 addition & 1 deletion sycl/test-e2e/FreeFunctionCommands/launch_grouped.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#define __DPCPP_ENABLE_UNFINISHED_KHR_EXTENSIONS

#include <sycl/detail/core.hpp>
#include <sycl/ext/khr/free_function_commands.hpp>
#include <sycl/khr/free_function_commands.hpp>
#include <sycl/usm.hpp>

#include "helpers.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#define __DPCPP_ENABLE_UNFINISHED_KHR_EXTENSIONS

#include <sycl/detail/core.hpp>
#include <sycl/ext/khr/free_function_commands.hpp>
#include <sycl/khr/free_function_commands.hpp>
#include <sycl/reduction.hpp>
#include <sycl/usm.hpp>

Expand Down
2 changes: 1 addition & 1 deletion sycl/test-e2e/FreeFunctionCommands/launch_reduce.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#define __DPCPP_ENABLE_UNFINISHED_KHR_EXTENSIONS

#include <sycl/detail/core.hpp>
#include <sycl/ext/khr/free_function_commands.hpp>
#include <sycl/khr/free_function_commands.hpp>
#include <sycl/reduction.hpp>
#include <sycl/usm.hpp>

Expand Down
2 changes: 1 addition & 1 deletion sycl/test-e2e/FreeFunctionCommands/launch_task.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#define __DPCPP_ENABLE_UNFINISHED_KHR_EXTENSIONS

#include <sycl/detail/core.hpp>
#include <sycl/ext/khr/free_function_commands.hpp>
#include <sycl/khr/free_function_commands.hpp>
#include <sycl/usm.hpp>

#include <array>
Expand Down
2 changes: 1 addition & 1 deletion sycl/test-e2e/FreeFunctionCommands/mem_advise.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#define __DPCPP_ENABLE_UNFINISHED_KHR_EXTENSIONS

#include <sycl/detail/core.hpp>
#include <sycl/ext/khr/free_function_commands.hpp>
#include <sycl/khr/free_function_commands.hpp>
#include <sycl/usm.hpp>

int main() {
Expand Down
2 changes: 1 addition & 1 deletion sycl/test-e2e/FreeFunctionCommands/memory_operations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#define __DPCPP_ENABLE_UNFINISHED_KHR_EXTENSIONS

#include <sycl/detail/core.hpp>
#include <sycl/ext/khr/free_function_commands.hpp>
#include <sycl/khr/free_function_commands.hpp>
#include <sycl/usm.hpp>

#include "helpers.hpp"
Expand Down
2 changes: 1 addition & 1 deletion sycl/test-e2e/FreeFunctionCommands/prefetch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#define __DPCPP_ENABLE_UNFINISHED_KHR_EXTENSIONS

#include <sycl/detail/core.hpp>
#include <sycl/ext/khr/free_function_commands.hpp>
#include <sycl/khr/free_function_commands.hpp>
#include <sycl/usm.hpp>

int main() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <gtest/gtest.h>

#define __DPCPP_ENABLE_UNFINISHED_KHR_EXTENSIONS
#include <sycl/ext/khr/free_function_commands.hpp>
#include <sycl/khr/free_function_commands.hpp>

thread_local size_t NumOfEnqueueEventsWaitWithBarrier = 0;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "helpers/MockKernelInfo.hpp"

#define __DPCPP_ENABLE_UNFINISHED_KHR_EXTENSIONS
#include <sycl/ext/khr/free_function_commands.hpp>
#include <sycl/khr/free_function_commands.hpp>

class TestFunctor {
public:
Expand Down
Loading